diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-12-03 19:17:45 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-12-03 19:17:45 -0800 |
| commit | 0cd79ee18aa38339147516413679f6fdaf01ca1a (patch) | |
| tree | 693121d0aae0c16a89749ff5e3ca65e01abe3147 | |
| parent | 693ec73b9b6308833587dbb872297b267391f6f6 (diff) | |
| download | rust-0cd79ee18aa38339147516413679f6fdaf01ca1a.tar.gz rust-0cd79ee18aa38339147516413679f6fdaf01ca1a.zip | |
Don't infinitely recurse in a process test
Note entirely sure how this is passing at all today, but regardless this fixes the problems seen in #10790
| -rw-r--r-- | src/test/run-pass/issue-10626.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-10626.rs b/src/test/run-pass/issue-10626.rs index 02c1e47ddc1..f6c0b73387d 100644 --- a/src/test/run-pass/issue-10626.rs +++ b/src/test/run-pass/issue-10626.rs @@ -25,6 +25,7 @@ fn main () { for _ in range(0, 1000) { println!("hello?"); } + return; } let config = process::ProcessConfig { |
