mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
Added unit test for motion_sense lid angle calculations. Added unit test for math_util arc_cos() function. BUG=none Original-BUG=chrome-os-partner:25640 BRANCH=rambi TEST=make buildall Original-Change-Id: I35debf6fc0e2d9996debc2ede175acaa060df627 Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/186720 Reviewed-by: Vic Yang <victoryang@chromium.org> (cherry picked from commit 55c3e8ee14693d6d667b5d21f0dcbb14d185ccbe) Change-Id: I017315128f318424cd3000affae785c69afd29d6 Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/187434 Reviewed-by: Randall Spangler <rspangler@chromium.org>
61 lines
1.3 KiB
C
61 lines
1.3 KiB
C
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
* Test motion sense code.
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
#include "math_util.h"
|
|
#include "motion_sense.h"
|
|
#include "test_util.h"
|
|
|
|
/*****************************************************************************/
|
|
/* Mock functions */
|
|
|
|
/* Need to define accelerometer init and read functions just to compile. */
|
|
int accel_init(enum accel_id id)
|
|
{
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
int accel_read(enum accel_id id, int *x_acc, int *y_acc, int *z_acc)
|
|
{
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/* Test utilities */
|
|
|
|
/* Macro to compare two floats and check if they are equal within diff. */
|
|
#define IS_FLOAT_EQUAL(a, b, diff) ((a) >= ((b) - diff) && (a) <= ((b) + diff))
|
|
|
|
#define ACOS_TOLERANCE_DEG 0.5f
|
|
#define RAD_TO_DEG (180.0f / 3.1415926f)
|
|
|
|
static int test_acos(void)
|
|
{
|
|
float a, b;
|
|
float test;
|
|
|
|
/* Test a handful of values. */
|
|
for (test = -1.0; test <= 1.0; test += 0.01) {
|
|
a = arc_cos(test);
|
|
b = acos(test) * RAD_TO_DEG;
|
|
TEST_ASSERT(IS_FLOAT_EQUAL(a, b, ACOS_TOLERANCE_DEG));
|
|
}
|
|
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
|
|
void run_test(void)
|
|
{
|
|
test_reset();
|
|
|
|
RUN_TEST(test_acos);
|
|
|
|
test_print_result();
|
|
}
|