tests/ucxtest.c

changeset 785
bb18daa62d5f
parent 782
74d777455e96
child 787
d0f02310aa47
     1.1 --- a/tests/ucxtest.c	Sat Dec 30 15:21:16 2023 +0100
     1.2 +++ b/tests/ucxtest.c	Sat Dec 30 18:48:25 2023 +0100
     1.3 @@ -35,6 +35,7 @@
     1.4  CxTestSuite *cx_test_suite_string(void);
     1.5  CxTestSuite *cx_test_suite_printf(void);
     1.6  CxTestSuite *cx_test_suite_mempool(void);
     1.7 +CxTestSuite *cx_test_suite_hash_map(void);
     1.8  
     1.9  #define run_tests(suite) cx_test_run_stdout(suite); success += (suite)->success; failure += (suite)->failure
    1.10  #define execute_test_suites(...) unsigned success = 0, failure = 0; CxTestSuite* test_suites[] = {__VA_ARGS__}; \
    1.11 @@ -51,7 +52,8 @@
    1.12              cx_test_suite_allocator(),
    1.13              cx_test_suite_string(),
    1.14              cx_test_suite_printf(),
    1.15 -            cx_test_suite_mempool()
    1.16 +            cx_test_suite_mempool(),
    1.17 +            cx_test_suite_hash_map()
    1.18      );
    1.19      printf("=== OVERALL RESULT ===\n");
    1.20      printf("  Total:   %u\n  Success: %u\n  Failure: %u\n",

mercurial