]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r13927@Kushana: nickm | 2007-08-03 00:56:54 -0700
authorNick Mathewson <nickm@torproject.org>
Fri, 3 Aug 2007 07:57:41 +0000 (07:57 +0000)
committerNick Mathewson <nickm@torproject.org>
Fri, 3 Aug 2007 07:57:41 +0000 (07:57 +0000)
 ratchet down the time spent on threading tests

svn:r11043

src/or/test.c

index 286b91e3b7217de5eb069f37976502c0fa23fcf3..e678d0f7b63f5b753bdb63b8cc9090c4a8df7803 100644 (file)
@@ -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;