[tor-commits] [tor/master] Fix the bench_{aes, dmap} test functions to work with TT

nickm at torproject.org nickm at torproject.org
Fri Nov 11 16:48:00 UTC 2011


commit 38123ffa23355d4607987a9fd0dc7b0595e787a7
Author: Sebastian Hahn <sebastian at torproject.org>
Date:   Wed Nov 9 10:54:00 2011 +0100

    Fix the bench_{aes,dmap} test functions to work with TT
    
    TT expects them to be named test_bench_{aes,dmap}. Also change the
    DISABLED macro to reflect that.
---
 changes/test_bench |    5 +++++
 src/test/test.c    |    6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/changes/test_bench b/changes/test_bench
new file mode 100644
index 0000000..8ae895b
--- /dev/null
+++ b/changes/test_bench
@@ -0,0 +1,5 @@
+  o Minor bugfixes:
+    - Rename the bench_{aes,dmap} functions to test_*, so that tinytest can
+      pick them up when the tests aren't disabled. Bugfix on 0.2.2.4-alpha
+      which introduced tinytest.
+
diff --git a/src/test/test.c b/src/test/test.c
index aca7f10..185bf5a 100644
--- a/src/test/test.c
+++ b/src/test/test.c
@@ -1267,7 +1267,7 @@ test_policies(void)
 
 /** Run AES performance benchmarks. */
 static void
-bench_aes(void)
+test_bench_aes(void)
 {
   int len, i;
   char *b1, *b2;
@@ -1299,7 +1299,7 @@ bench_aes(void)
 
 /** Run digestmap_t performance benchmarks. */
 static void
-bench_dmap(void)
+test_bench_dmap(void)
 {
   smartlist_t *sl = smartlist_create();
   smartlist_t *sl2 = smartlist_create();
@@ -1899,7 +1899,7 @@ const struct testcase_setup_t legacy_setup = {
   { #group "_" #name, legacy_test_helper, 0, &legacy_setup,             \
       test_ ## group ## _ ## name }
 #define DISABLED(name)                                                  \
-  { #name, legacy_test_helper, TT_SKIP, &legacy_setup, name }
+  { #name, legacy_test_helper, TT_SKIP, &legacy_setup, test_ ## name }
 #define FORK(name)                                                      \
   { #name, legacy_test_helper, TT_FORK, &legacy_setup, test_ ## name }
 





More information about the tor-commits mailing list