From 5db238f3e3df54b11cf376d57d2cd89257b594f8 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Fri, 28 Oct 2022 11:13:46 -0400 Subject: thread: Bump max detectable CPU from 16 to 128 Lets take advantage of those beefy machines ;). Closes #40703 Signed-off-by: David Goulet --- src/test/test_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test') 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: ; -- cgit v1.2.3-54-g00ecf