diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-08-03 07:57:41 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-08-03 07:57:41 +0000 |
commit | 68e6426c23a255130396d17e1bac2dea16643ba8 (patch) | |
tree | 87419326b76a9ee2aadbc1ae30eea45c5eed13e7 /src/or/test.c | |
parent | 652d4e024857a8872795fe2d4ce6d7071059728c (diff) | |
download | tor-68e6426c23a255130396d17e1bac2dea16643ba8.tar.gz tor-68e6426c23a255130396d17e1bac2dea16643ba8.zip |
r13927@Kushana: nickm | 2007-08-03 00:56:54 -0700
ratchet down the time spent on threading tests
svn:r11043
Diffstat (limited to 'src/or/test.c')
-rw-r--r-- | src/or/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/test.c b/src/or/test.c index 286b91e3b7..e678d0f7b6 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -1613,7 +1613,7 @@ _thread_test_func(void* _s) tor_snprintf(buf, sizeof(buf), "%lu", tor_get_thread_id()); cp = tor_strdup(buf); - for (i=0; i<100000; ++i) { + for (i=0; i<10000; ++i) { tor_mutex_acquire(_thread_test_mutex); strmap_set(_thread_test_strmap, "last to run", cp); ++*count; |