aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_util.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2022-10-28 11:13:46 -0400
committerDavid Goulet <dgoulet@torproject.org>2022-10-28 11:28:43 -0400
commit5db238f3e3df54b11cf376d57d2cd89257b594f8 (patch)
treed4a03c4c5a3828d862cff30a3f33b178526f81a5 /src/test/test_util.c
parentf09b913e18ef2a8d092b2c21840acc5f2d64c337 (diff)
downloadtor-5db238f3e3df54b11cf376d57d2cd89257b594f8.tar.gz
tor-5db238f3e3df54b11cf376d57d2cd89257b594f8.zip
thread: Bump max detectable CPU from 16 to 128
Lets take advantage of those beefy machines ;). Closes #40703 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r--src/test/test_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index aa38d0fc5d..1dae2c617e 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -4987,7 +4987,7 @@ test_util_num_cpus(void *arg)
tt_skip();
tt_int_op(num, OP_GE, 1);
- tt_int_op(num, OP_LE, 16);
+ tt_int_op(num, OP_LE, 128);
done:
;