# HG changeset patch # User Mike Becker # Date 1349854453 -7200 # Node ID c80c910fe1918d01d270aa62dc2941dbdb1b5cec # Parent 733f22fca61a7878ae9cb9025af57591220a2c52 added semicolons to UCX_TEST_DECLARE calls diff -r 733f22fca61a -r c80c910fe191 test/dlist_tests.h --- a/test/dlist_tests.h Wed Oct 10 09:32:06 2012 +0200 +++ b/test/dlist_tests.h Wed Oct 10 09:34:13 2012 +0200 @@ -22,17 +22,17 @@ * ucx_dlist_free */ -UCX_TEST_DECLARE(test_ucx_dlist_append) -UCX_TEST_DECLARE(test_ucx_dlist_prepend) -UCX_TEST_DECLARE(test_ucx_dlist_equals) -UCX_TEST_DECLARE(test_ucx_dlist_concat) -UCX_TEST_DECLARE(test_ucx_dlist_size) -UCX_TEST_DECLARE(test_ucx_dlist_first) -UCX_TEST_DECLARE(test_ucx_dlist_last) -UCX_TEST_DECLARE(test_ucx_dlist_get) -UCX_TEST_DECLARE(test_ucx_dlist_remove) -UCX_TEST_DECLARE(test_ucx_dlist_clone) -UCX_TEST_DECLARE(test_ucx_dlist_sort) +UCX_TEST_DECLARE(test_ucx_dlist_append); +UCX_TEST_DECLARE(test_ucx_dlist_prepend); +UCX_TEST_DECLARE(test_ucx_dlist_equals); +UCX_TEST_DECLARE(test_ucx_dlist_concat); +UCX_TEST_DECLARE(test_ucx_dlist_size); +UCX_TEST_DECLARE(test_ucx_dlist_first); +UCX_TEST_DECLARE(test_ucx_dlist_last); +UCX_TEST_DECLARE(test_ucx_dlist_get); +UCX_TEST_DECLARE(test_ucx_dlist_remove); +UCX_TEST_DECLARE(test_ucx_dlist_clone); +UCX_TEST_DECLARE(test_ucx_dlist_sort); #ifdef __cplusplus } diff -r 733f22fca61a -r c80c910fe191 test/list_tests.h --- a/test/list_tests.h Wed Oct 10 09:32:06 2012 +0200 +++ b/test/list_tests.h Wed Oct 10 09:34:13 2012 +0200 @@ -22,16 +22,16 @@ * ucx_list_free */ -UCX_TEST_DECLARE(test_ucx_list_append) -UCX_TEST_DECLARE(test_ucx_list_prepend) -UCX_TEST_DECLARE(test_ucx_list_equals) -UCX_TEST_DECLARE(test_ucx_list_concat) -UCX_TEST_DECLARE(test_ucx_list_size) -UCX_TEST_DECLARE(test_ucx_list_last) -UCX_TEST_DECLARE(test_ucx_list_get) -UCX_TEST_DECLARE(test_ucx_list_remove) -UCX_TEST_DECLARE(test_ucx_list_clone) -UCX_TEST_DECLARE(test_ucx_list_sort) +UCX_TEST_DECLARE(test_ucx_list_append); +UCX_TEST_DECLARE(test_ucx_list_prepend); +UCX_TEST_DECLARE(test_ucx_list_equals); +UCX_TEST_DECLARE(test_ucx_list_concat); +UCX_TEST_DECLARE(test_ucx_list_size); +UCX_TEST_DECLARE(test_ucx_list_last); +UCX_TEST_DECLARE(test_ucx_list_get); +UCX_TEST_DECLARE(test_ucx_list_remove); +UCX_TEST_DECLARE(test_ucx_list_clone); +UCX_TEST_DECLARE(test_ucx_list_sort); #ifdef __cplusplus } diff -r 733f22fca61a -r c80c910fe191 test/logging_tests.h --- a/test/logging_tests.h Wed Oct 10 09:32:06 2012 +0200 +++ b/test/logging_tests.h Wed Oct 10 09:34:13 2012 +0200 @@ -12,7 +12,7 @@ extern "C" { #endif -UCX_TEST_DECLARE(test_ucx_logger_log) +UCX_TEST_DECLARE(test_ucx_logger_log); #ifdef __cplusplus } diff -r 733f22fca61a -r c80c910fe191 test/map_tests.h --- a/test/map_tests.h Wed Oct 10 09:32:06 2012 +0200 +++ b/test/map_tests.h Wed Oct 10 09:34:13 2012 +0200 @@ -12,17 +12,17 @@ extern "C" { #endif -UCX_TEST_DECLARE(test_ucx_map_new) -UCX_TEST_DECLARE(test_ucx_key) -UCX_TEST_DECLARE(test_ucx_map_put) -UCX_TEST_DECLARE(test_ucx_map_get) -UCX_TEST_DECLARE(test_ucx_map_remove) -UCX_TEST_DECLARE(test_ucx_map_iterator) -UCX_TEST_DECLARE(test_ucx_map_iterator_chain) -UCX_TEST_DECLARE(test_ucx_map_store_load) -UCX_TEST_DECLARE(test_ucx_map_store_load_with_mempool) -UCX_TEST_DECLARE(test_ucx_map_clone) -UCX_TEST_DECLARE(test_ucx_map_rehash) +UCX_TEST_DECLARE(test_ucx_map_new); +UCX_TEST_DECLARE(test_ucx_key); +UCX_TEST_DECLARE(test_ucx_map_put); +UCX_TEST_DECLARE(test_ucx_map_get); +UCX_TEST_DECLARE(test_ucx_map_remove); +UCX_TEST_DECLARE(test_ucx_map_iterator); +UCX_TEST_DECLARE(test_ucx_map_iterator_chain); +UCX_TEST_DECLARE(test_ucx_map_store_load); +UCX_TEST_DECLARE(test_ucx_map_store_load_with_mempool); +UCX_TEST_DECLARE(test_ucx_map_clone); +UCX_TEST_DECLARE(test_ucx_map_rehash); #ifdef __cplusplus diff -r 733f22fca61a -r c80c910fe191 test/memstream_tests.h --- a/test/memstream_tests.h Wed Oct 10 09:32:06 2012 +0200 +++ b/test/memstream_tests.h Wed Oct 10 09:34:13 2012 +0200 @@ -14,11 +14,11 @@ /* assume open and close to be correct */ -UCX_TEST_DECLARE(test_ucx_memseektell) -UCX_TEST_DECLARE(test_ucx_memputc) -UCX_TEST_DECLARE(test_ucx_memgetc) -UCX_TEST_DECLARE(test_ucx_memwrite) -UCX_TEST_DECLARE(test_ucx_memread) +UCX_TEST_DECLARE(test_ucx_memseektell); +UCX_TEST_DECLARE(test_ucx_memputc); +UCX_TEST_DECLARE(test_ucx_memgetc); +UCX_TEST_DECLARE(test_ucx_memwrite); +UCX_TEST_DECLARE(test_ucx_memread); #ifdef __cplusplus } diff -r 733f22fca61a -r c80c910fe191 test/mpool_tests.h --- a/test/mpool_tests.h Wed Oct 10 09:32:06 2012 +0200 +++ b/test/mpool_tests.h Wed Oct 10 09:34:13 2012 +0200 @@ -12,13 +12,13 @@ extern "C" { #endif -UCX_TEST_DECLARE(test_ucx_mempool_new) -UCX_TEST_DECLARE(test_ucx_mempool_malloc) -UCX_TEST_DECLARE(test_ucx_mempool_malloc_with_chcap) -UCX_TEST_DECLARE(test_ucx_mempool_calloc) -UCX_TEST_DECLARE(test_ucx_mempool_set_destr) -UCX_TEST_DECLARE(test_ucx_mempool_reg_destr) -UCX_TEST_DECLARE(test_ucx_mempool_realloc) +UCX_TEST_DECLARE(test_ucx_mempool_new); +UCX_TEST_DECLARE(test_ucx_mempool_malloc); +UCX_TEST_DECLARE(test_ucx_mempool_malloc_with_chcap); +UCX_TEST_DECLARE(test_ucx_mempool_calloc); +UCX_TEST_DECLARE(test_ucx_mempool_set_destr); +UCX_TEST_DECLARE(test_ucx_mempool_reg_destr); +UCX_TEST_DECLARE(test_ucx_mempool_realloc); #ifdef __cplusplus } diff -r 733f22fca61a -r c80c910fe191 test/string_tests.h --- a/test/string_tests.h Wed Oct 10 09:32:06 2012 +0200 +++ b/test/string_tests.h Wed Oct 10 09:34:13 2012 +0200 @@ -12,9 +12,9 @@ extern "C" { #endif -UCX_TEST_DECLARE(test_sstr) -UCX_TEST_DECLARE(test_sstr_len_cat) -UCX_TEST_DECLARE(test_sstrsplit) +UCX_TEST_DECLARE(test_sstr); +UCX_TEST_DECLARE(test_sstr_len_cat); +UCX_TEST_DECLARE(test_sstrsplit); #ifdef __cplusplus }