diff options
author | Ola Bini <ola@olabini.se> | 2015-09-15 17:09:18 +0200 |
---|---|---|
committer | Ola Bini <ola@olabini.se> | 2015-09-15 17:09:18 +0200 |
commit | 94e5db3dca3abfc93a57287516177f14d395ae3f (patch) | |
tree | 5196bb43edf39b9c55b1213c7640b59db7218ea3 /src/test/test.c | |
parent | a444b11323799536b4cd7902e29f711b0806293a (diff) | |
download | tor-94e5db3dca3abfc93a57287516177f14d395ae3f.tar.gz tor-94e5db3dca3abfc93a57287516177f14d395ae3f.zip |
Add tests for tortls.c
Diffstat (limited to 'src/test/test.c')
-rw-r--r-- | src/test/test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test.c b/src/test/test.c index e10e260266..3509c12788 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1157,6 +1157,7 @@ extern struct testcase_t scheduler_tests[]; extern struct testcase_t socks_tests[]; extern struct testcase_t status_tests[]; extern struct testcase_t thread_tests[]; +extern struct testcase_t tortls_tests[]; extern struct testcase_t util_tests[]; extern struct testcase_t dns_tests[]; @@ -1202,10 +1203,10 @@ struct testgroup_t testgroups[] = { { "scheduler/", scheduler_tests }, { "socks/", socks_tests }, { "status/" , status_tests }, + { "tortls/", tortls_tests }, { "util/", util_tests }, { "util/logging/", logging_tests }, { "util/thread/", thread_tests }, { "dns/", dns_tests }, END_OF_GROUPS }; - |