diff options
author | George Kadianakis <desnacked@riseup.net> | 2018-11-27 01:56:23 +0200 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-01-02 15:25:55 +0200 |
commit | 2ccf3268375cd46e8c948e94ba58e0d2f03fe722 (patch) | |
tree | a6a820abe9af9a65f7648c2fae8a36ff0d81d607 /src/test/test.c | |
parent | 8ad497bb578b13c66489843905764a60545e6388 (diff) | |
download | tor-2ccf3268375cd46e8c948e94ba58e0d2f03fe722.tar.gz tor-2ccf3268375cd46e8c948e94ba58e0d2f03fe722.zip |
Implement and test probability distributions used by WTF-PAD.
This project introduces the prob_distr.c subsystem which implements all the
probability distributions that WTF-PAD needs. It also adds unittests for all of
them.
Code and tests courtesy of Riastradh.
Co-authored-by: Taylor R Campbell <campbell+tor@mumble.net>
Co-authored-by: Mike Perry <mikeperry-git@torproject.org>
Diffstat (limited to 'src/test/test.c')
-rw-r--r-- | src/test/test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test.c b/src/test/test.c index a0a138b03d..902565dfbe 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -901,6 +901,7 @@ struct testgroup_t testgroups[] = { { "parsecommon/", parsecommon_tests }, { "periodic-event/" , periodic_event_tests }, { "policy/" , policy_tests }, + { "prob_distr/", prob_distr_tests }, { "procmon/", procmon_tests }, { "process/", process_tests }, { "proto/http/", proto_http_tests }, |