added semicolons to UCX_TEST_DECLARE calls

Wed, 10 Oct 2012 09:34:13 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 10 Oct 2012 09:34:13 +0200
changeset 59
c80c910fe191
parent 58
733f22fca61a
child 60
abae4669fba7

added semicolons to UCX_TEST_DECLARE calls

test/dlist_tests.h file | annotate | diff | comparison | revisions
test/list_tests.h file | annotate | diff | comparison | revisions
test/logging_tests.h file | annotate | diff | comparison | revisions
test/map_tests.h file | annotate | diff | comparison | revisions
test/memstream_tests.h file | annotate | diff | comparison | revisions
test/mpool_tests.h file | annotate | diff | comparison | revisions
test/string_tests.h file | annotate | diff | comparison | revisions
     1.1 --- a/test/dlist_tests.h	Wed Oct 10 09:32:06 2012 +0200
     1.2 +++ b/test/dlist_tests.h	Wed Oct 10 09:34:13 2012 +0200
     1.3 @@ -22,17 +22,17 @@
     1.4   *   ucx_dlist_free
     1.5   */
     1.6  
     1.7 -UCX_TEST_DECLARE(test_ucx_dlist_append)
     1.8 -UCX_TEST_DECLARE(test_ucx_dlist_prepend)
     1.9 -UCX_TEST_DECLARE(test_ucx_dlist_equals)
    1.10 -UCX_TEST_DECLARE(test_ucx_dlist_concat)
    1.11 -UCX_TEST_DECLARE(test_ucx_dlist_size)
    1.12 -UCX_TEST_DECLARE(test_ucx_dlist_first)
    1.13 -UCX_TEST_DECLARE(test_ucx_dlist_last)
    1.14 -UCX_TEST_DECLARE(test_ucx_dlist_get)
    1.15 -UCX_TEST_DECLARE(test_ucx_dlist_remove)
    1.16 -UCX_TEST_DECLARE(test_ucx_dlist_clone)
    1.17 -UCX_TEST_DECLARE(test_ucx_dlist_sort)
    1.18 +UCX_TEST_DECLARE(test_ucx_dlist_append);
    1.19 +UCX_TEST_DECLARE(test_ucx_dlist_prepend);
    1.20 +UCX_TEST_DECLARE(test_ucx_dlist_equals);
    1.21 +UCX_TEST_DECLARE(test_ucx_dlist_concat);
    1.22 +UCX_TEST_DECLARE(test_ucx_dlist_size);
    1.23 +UCX_TEST_DECLARE(test_ucx_dlist_first);
    1.24 +UCX_TEST_DECLARE(test_ucx_dlist_last);
    1.25 +UCX_TEST_DECLARE(test_ucx_dlist_get);
    1.26 +UCX_TEST_DECLARE(test_ucx_dlist_remove);
    1.27 +UCX_TEST_DECLARE(test_ucx_dlist_clone);
    1.28 +UCX_TEST_DECLARE(test_ucx_dlist_sort);
    1.29  
    1.30  #ifdef	__cplusplus
    1.31  }
     2.1 --- a/test/list_tests.h	Wed Oct 10 09:32:06 2012 +0200
     2.2 +++ b/test/list_tests.h	Wed Oct 10 09:34:13 2012 +0200
     2.3 @@ -22,16 +22,16 @@
     2.4   *   ucx_list_free
     2.5   */
     2.6  
     2.7 -UCX_TEST_DECLARE(test_ucx_list_append)
     2.8 -UCX_TEST_DECLARE(test_ucx_list_prepend)
     2.9 -UCX_TEST_DECLARE(test_ucx_list_equals)
    2.10 -UCX_TEST_DECLARE(test_ucx_list_concat)
    2.11 -UCX_TEST_DECLARE(test_ucx_list_size)
    2.12 -UCX_TEST_DECLARE(test_ucx_list_last)
    2.13 -UCX_TEST_DECLARE(test_ucx_list_get)
    2.14 -UCX_TEST_DECLARE(test_ucx_list_remove)
    2.15 -UCX_TEST_DECLARE(test_ucx_list_clone)
    2.16 -UCX_TEST_DECLARE(test_ucx_list_sort)
    2.17 +UCX_TEST_DECLARE(test_ucx_list_append);
    2.18 +UCX_TEST_DECLARE(test_ucx_list_prepend);
    2.19 +UCX_TEST_DECLARE(test_ucx_list_equals);
    2.20 +UCX_TEST_DECLARE(test_ucx_list_concat);
    2.21 +UCX_TEST_DECLARE(test_ucx_list_size);
    2.22 +UCX_TEST_DECLARE(test_ucx_list_last);
    2.23 +UCX_TEST_DECLARE(test_ucx_list_get);
    2.24 +UCX_TEST_DECLARE(test_ucx_list_remove);
    2.25 +UCX_TEST_DECLARE(test_ucx_list_clone);
    2.26 +UCX_TEST_DECLARE(test_ucx_list_sort);
    2.27  
    2.28  #ifdef	__cplusplus
    2.29  }
     3.1 --- a/test/logging_tests.h	Wed Oct 10 09:32:06 2012 +0200
     3.2 +++ b/test/logging_tests.h	Wed Oct 10 09:34:13 2012 +0200
     3.3 @@ -12,7 +12,7 @@
     3.4  extern "C" {
     3.5  #endif
     3.6  
     3.7 -UCX_TEST_DECLARE(test_ucx_logger_log)
     3.8 +UCX_TEST_DECLARE(test_ucx_logger_log);
     3.9  
    3.10  #ifdef	__cplusplus
    3.11  }
     4.1 --- a/test/map_tests.h	Wed Oct 10 09:32:06 2012 +0200
     4.2 +++ b/test/map_tests.h	Wed Oct 10 09:34:13 2012 +0200
     4.3 @@ -12,17 +12,17 @@
     4.4  extern "C" {
     4.5  #endif
     4.6  
     4.7 -UCX_TEST_DECLARE(test_ucx_map_new)
     4.8 -UCX_TEST_DECLARE(test_ucx_key)
     4.9 -UCX_TEST_DECLARE(test_ucx_map_put)
    4.10 -UCX_TEST_DECLARE(test_ucx_map_get)
    4.11 -UCX_TEST_DECLARE(test_ucx_map_remove)
    4.12 -UCX_TEST_DECLARE(test_ucx_map_iterator)
    4.13 -UCX_TEST_DECLARE(test_ucx_map_iterator_chain)
    4.14 -UCX_TEST_DECLARE(test_ucx_map_store_load)
    4.15 -UCX_TEST_DECLARE(test_ucx_map_store_load_with_mempool)
    4.16 -UCX_TEST_DECLARE(test_ucx_map_clone)
    4.17 -UCX_TEST_DECLARE(test_ucx_map_rehash)
    4.18 +UCX_TEST_DECLARE(test_ucx_map_new);
    4.19 +UCX_TEST_DECLARE(test_ucx_key);
    4.20 +UCX_TEST_DECLARE(test_ucx_map_put);
    4.21 +UCX_TEST_DECLARE(test_ucx_map_get);
    4.22 +UCX_TEST_DECLARE(test_ucx_map_remove);
    4.23 +UCX_TEST_DECLARE(test_ucx_map_iterator);
    4.24 +UCX_TEST_DECLARE(test_ucx_map_iterator_chain);
    4.25 +UCX_TEST_DECLARE(test_ucx_map_store_load);
    4.26 +UCX_TEST_DECLARE(test_ucx_map_store_load_with_mempool);
    4.27 +UCX_TEST_DECLARE(test_ucx_map_clone);
    4.28 +UCX_TEST_DECLARE(test_ucx_map_rehash);
    4.29  
    4.30  
    4.31  #ifdef	__cplusplus
     5.1 --- a/test/memstream_tests.h	Wed Oct 10 09:32:06 2012 +0200
     5.2 +++ b/test/memstream_tests.h	Wed Oct 10 09:34:13 2012 +0200
     5.3 @@ -14,11 +14,11 @@
     5.4  
     5.5  /* assume open and close to be correct */
     5.6  
     5.7 -UCX_TEST_DECLARE(test_ucx_memseektell)
     5.8 -UCX_TEST_DECLARE(test_ucx_memputc)
     5.9 -UCX_TEST_DECLARE(test_ucx_memgetc)
    5.10 -UCX_TEST_DECLARE(test_ucx_memwrite)
    5.11 -UCX_TEST_DECLARE(test_ucx_memread)
    5.12 +UCX_TEST_DECLARE(test_ucx_memseektell);
    5.13 +UCX_TEST_DECLARE(test_ucx_memputc);
    5.14 +UCX_TEST_DECLARE(test_ucx_memgetc);
    5.15 +UCX_TEST_DECLARE(test_ucx_memwrite);
    5.16 +UCX_TEST_DECLARE(test_ucx_memread);
    5.17  
    5.18  #ifdef	__cplusplus
    5.19  }
     6.1 --- a/test/mpool_tests.h	Wed Oct 10 09:32:06 2012 +0200
     6.2 +++ b/test/mpool_tests.h	Wed Oct 10 09:34:13 2012 +0200
     6.3 @@ -12,13 +12,13 @@
     6.4  extern "C" {
     6.5  #endif
     6.6  
     6.7 -UCX_TEST_DECLARE(test_ucx_mempool_new)
     6.8 -UCX_TEST_DECLARE(test_ucx_mempool_malloc)
     6.9 -UCX_TEST_DECLARE(test_ucx_mempool_malloc_with_chcap)
    6.10 -UCX_TEST_DECLARE(test_ucx_mempool_calloc)
    6.11 -UCX_TEST_DECLARE(test_ucx_mempool_set_destr)
    6.12 -UCX_TEST_DECLARE(test_ucx_mempool_reg_destr)
    6.13 -UCX_TEST_DECLARE(test_ucx_mempool_realloc)
    6.14 +UCX_TEST_DECLARE(test_ucx_mempool_new);
    6.15 +UCX_TEST_DECLARE(test_ucx_mempool_malloc);
    6.16 +UCX_TEST_DECLARE(test_ucx_mempool_malloc_with_chcap);
    6.17 +UCX_TEST_DECLARE(test_ucx_mempool_calloc);
    6.18 +UCX_TEST_DECLARE(test_ucx_mempool_set_destr);
    6.19 +UCX_TEST_DECLARE(test_ucx_mempool_reg_destr);
    6.20 +UCX_TEST_DECLARE(test_ucx_mempool_realloc);
    6.21  
    6.22  #ifdef	__cplusplus
    6.23  }
     7.1 --- a/test/string_tests.h	Wed Oct 10 09:32:06 2012 +0200
     7.2 +++ b/test/string_tests.h	Wed Oct 10 09:34:13 2012 +0200
     7.3 @@ -12,9 +12,9 @@
     7.4  extern "C" {
     7.5  #endif
     7.6  
     7.7 -UCX_TEST_DECLARE(test_sstr)
     7.8 -UCX_TEST_DECLARE(test_sstr_len_cat)
     7.9 -UCX_TEST_DECLARE(test_sstrsplit)
    7.10 +UCX_TEST_DECLARE(test_sstr);
    7.11 +UCX_TEST_DECLARE(test_sstr_len_cat);
    7.12 +UCX_TEST_DECLARE(test_sstrsplit);
    7.13  
    7.14  #ifdef	__cplusplus
    7.15  }

mercurial