aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-07-22 15:05:35 -0700
committerGraydon Hoare <[email protected]>2010-07-22 15:05:35 -0700
commit0f220ecae921f961f0c40395218de86cc2b33849 (patch)
treee575036b7ab1d6b0031268aa854f52f55261d7c4 /src/test
parentRe-introduce bits of vec-lib test that blocked on now-fixed issue #108. (diff)
downloadrust-0f220ecae921f961f0c40395218de86cc2b33849.tar.xz
rust-0f220ecae921f961f0c40395218de86cc2b33849.zip
Beat up on the preempt test a bit more, as it keeps hanging under valgrind.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/preempt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/preempt.rs b/src/test/run-pass/preempt.rs
index 00fc29ca..ee37bcf4 100644
--- a/src/test/run-pass/preempt.rs
+++ b/src/test/run-pass/preempt.rs
@@ -18,7 +18,7 @@ io fn main() {
log "main waiting for alive signal";
i <- alive;
log "main got alive signal";
- while (i < 1000) {
+ while (i < 50) {
log "main iterated";
i += 1;
}