diff --git a/src/test/run-pass/spawn-stack-too-big.rs b/src/test/run-pass/spawn-stack-too-big.rs index e1c4a480d1cc1..093950a50a465 100644 --- a/src/test/run-pass/spawn-stack-too-big.rs +++ b/src/test/run-pass/spawn-stack-too-big.rs @@ -38,7 +38,7 @@ fn test() {} fn test() { let (tx, rx) = channel(); spawn(proc() { - TaskBuilder::new().stack_size(1024 * 1024 * 1024 * 64).spawn(proc() { + TaskBuilder::new().stack_size(128 * 1024 * 1024 * 1024).spawn(proc() { }); tx.send(()); });