aboutsummaryrefslogtreecommitdiff
path: root/test/common_plat/validation/api/hash/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/common_plat/validation/api/hash/hash.c')
-rw-r--r--test/common_plat/validation/api/hash/hash.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/test/common_plat/validation/api/hash/hash.c b/test/common_plat/validation/api/hash/hash.c
deleted file mode 100644
index b353fcecd..000000000
--- a/test/common_plat/validation/api/hash/hash.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/* Copyright (c) 2015, Linaro Limited
- * All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-#include <odp_api.h>
-#include <odp_cunit_common.h>
-#include "hash.h"
-
-void hash_test_crc32c(void)
-{
- uint32_t test_value = 0x12345678;
- uint32_t ret = odp_hash_crc32c(&test_value, 4, 0);
-
- CU_ASSERT(ret == 0xfa745634);
-
- test_value = 0x87654321;
- ret = odp_hash_crc32c(&test_value, 4, 0);
-
- CU_ASSERT(ret == 0xaca37da7);
-
- uint32_t test_values[] = {0x12345678, 0x87654321};
-
- ret = odp_hash_crc32c(test_values, 8, 0);
-
- CU_ASSERT(ret == 0xe6e910b0);
-}
-
-odp_testinfo_t hash_suite[] = {
- ODP_TEST_INFO(hash_test_crc32c),
- ODP_TEST_INFO_NULL,
-};
-
-odp_suiteinfo_t hash_suites[] = {
- {"Hash", NULL, NULL, hash_suite},
- ODP_SUITE_INFO_NULL
-};
-
-int hash_main(int argc, char *argv[])
-{
- int ret;
-
- /* parse common options: */
- if (odp_cunit_parse_options(argc, argv))
- return -1;
-
- ret = odp_cunit_register(hash_suites);
-
- if (ret == 0)
- ret = odp_cunit_run();
-
- return ret;
-}