File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: 0983ebe5310d4eb6d289f636f7ed0536c08bbc0e
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/dist-snap: e835c6b042b88720d5fd0d606d25e0ea4fa27b1a
9
+ refs/heads/dist-snap: 4fea236a85b61b52fc3e16348886ff32f5b8210b
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
12
12
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change @@ -745,7 +745,7 @@ fn get_concurrency() -> uint {
745
745
let opt_n: Option < uint > = FromStr :: from_str ( s) ;
746
746
match opt_n {
747
747
Some ( n) if n > 0 => n,
748
- _ => fail ! ( "RUST_TEST_TASKS is `%s`, should be a non-negative integer." , s)
748
+ _ => fail ! ( "RUST_TEST_TASKS is `%s`, should be a positive integer." , s)
749
749
}
750
750
}
751
751
None => {
Original file line number Diff line number Diff line change 11
11
// This checks that RUST_TEST_TASKS not being 1, 2, ... is detected
12
12
// properly.
13
13
14
- // error-pattern:should be a non-negative integer
14
+ // error-pattern:should be a positive integer
15
15
// compile-flags: --test
16
16
// exec-env:RUST_TEST_TASKS=foo
17
17
You can’t perform that action at this time.
0 commit comments