diff options
author | George Kadianakis <desnacked@riseup.net> | 2021-04-21 16:52:58 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2021-04-21 16:52:58 +0300 |
commit | c2997d7ee7535a93fb8ab22f8435750509e6f6a3 (patch) | |
tree | ca48871ef578aebd4b2d2d7275bf1c3a3676e50f | |
parent | 62002e828483843914271ce00fc6e5ed100b8124 (diff) | |
parent | 5e6905ed99b7e7fb4cd329d9d1f49d9bb56104ab (diff) | |
download | tor-c2997d7ee7535a93fb8ab22f8435750509e6f6a3.tar.gz tor-c2997d7ee7535a93fb8ab22f8435750509e6f6a3.zip |
Merge remote-tracking branch 'tor-gitlab/mr/363' into release-0.3.5
-rw-r--r-- | src/test/test_connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_connection.c b/src/test/test_connection.c index 6f716f5758..7234d01627 100644 --- a/src/test/test_connection.c +++ b/src/test/test_connection.c @@ -885,9 +885,9 @@ test_failed_orconn_tracker(void *arg) #define CONNECTION_TESTCASE(name, fork, setup) \ { #name, test_conn_##name, fork, &setup, NULL } -/* where arg is an expression (constant, variable, compound expression) */ +/* where arg is a string. */ #define CONNECTION_TESTCASE_ARG(name, fork, setup, arg) \ - { #name "_" #arg, test_conn_##name, fork, &setup, (void *)arg } + { #name "_" arg, test_conn_##name, fork, &setup, (void *)arg } struct testcase_t connection_tests[] = { CONNECTION_TESTCASE(get_basic, TT_FORK, test_conn_get_basic_st), |