diff options
author | Alexander Færøy <ahf@torproject.org> | 2018-11-26 02:18:04 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-12-17 16:39:28 -0500 |
commit | 9b6a10a26f25e0da07e62bd5617b519b0952b40a (patch) | |
tree | b81e247aadd393f97980797473b6eba38ad8b6d2 /src/test/test_slow.c | |
parent | e3ceaebba25127a1d4a3da16e9128ab52491c080 (diff) | |
download | tor-9b6a10a26f25e0da07e62bd5617b519b0952b40a.tar.gz tor-9b6a10a26f25e0da07e62bd5617b519b0952b40a.zip |
Add slow test for process_t for main loop interaction.
This patch adds test cases for process_t which uses Tor's main loop.
This allows us to test that the callbacks are actually invoked by the
main loop when we expect them.
See: https://bugs.torproject.org/28179
Diffstat (limited to 'src/test/test_slow.c')
-rw-r--r-- | src/test/test_slow.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test_slow.c b/src/test/test_slow.c index 0b665363ab..0c66eff930 100644 --- a/src/test/test_slow.c +++ b/src/test/test_slow.c @@ -20,6 +20,7 @@ struct testgroup_t testgroups[] = { { "slow/crypto/", slow_crypto_tests }, + { "slow/process/", slow_process_tests }, { "slow/util/", slow_util_tests }, END_OF_GROUPS }; |