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/include.am | |
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/include.am')
-rw-r--r-- | src/test/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/include.am b/src/test/include.am index 482897c7a5..9df2fd481d 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -66,6 +66,7 @@ noinst_PROGRAMS+= \ src/test/test-slow \ src/test/test-memwipe \ src/test/test-child \ + src/test/test-process \ src/test/test_workqueue \ src/test/test-switch-id \ src/test/test-timers @@ -202,6 +203,7 @@ if UNITTESTS_ENABLED src_test_test_slow_SOURCES += \ src/test/test_slow.c \ src/test/test_crypto_slow.c \ + src/test/test_process_slow.c \ src/test/test_util_slow.c \ src/test/testing_common.c \ src/test/testing_rsakeys.c \ |