Skip to content

Commit 37ce2b3

Browse files
committed
reduce number of threads in simple_test_parallel test function
Signed-off-by: Simon Davies <[email protected]>
1 parent 596d116 commit 37ce2b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hyperlight_host/tests/sandbox_host_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ fn simple_test() {
499499
#[test]
500500
#[cfg(target_os = "linux")]
501501
fn simple_test_parallel() {
502-
let handles: Vec<_> = (0..100)
502+
let handles: Vec<_> = (0..50)
503503
.map(|_| {
504504
std::thread::spawn(|| {
505505
simple_test_helper().unwrap();

0 commit comments

Comments
 (0)