summaryrefslogtreecommitdiff
path: root/test/crc.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/crc.c')
-rw-r--r--test/crc.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/crc.c b/test/crc.c
index 3f24c1a7e4..3521bce4a9 100644
--- a/test/crc.c
+++ b/test/crc.c
@@ -8,7 +8,6 @@
#include "common.h"
#include "console.h"
#include "crc.h"
-#include "crc8.h"
#include "test_util.h"
#include "util.h"
@@ -64,18 +63,6 @@ static int test_kat0(void)
return EC_SUCCESS;
}
-static int test_cros_crc8(void)
-{
- uint8_t buffer[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 8 };
-
- int crc = cros_crc8(buffer, 10);
-
- /* Verifies polynomial values of 0x07 representing x^8 + x^2 + x + 1 */
- TEST_EQ(crc, 170, "%d");
-
- return EC_SUCCESS;
-}
-
void run_test(int argc, char **argv)
{
test_reset();
@@ -83,7 +70,6 @@ void run_test(int argc, char **argv)
RUN_TEST(test_static_version);
RUN_TEST(test_8);
RUN_TEST(test_kat0);
- RUN_TEST(test_cros_crc8);
test_print_result();
}