Skip to content

Commit aeac6f1

Browse files
olsonjefferybrson
authored andcommitted
---
yaml --- r: 49851 b: refs/heads/auto c: 3aa92a9 h: refs/heads/master i: 49849: 8392baf 49847: cb5cc4b v: v3
1 parent 2356caf commit aeac6f1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 5ff66f04050569321dc2b722ade6f972322edd58
17+
refs/heads/auto: 3aa92a91c90ac2b46a705f6cae6e9803aa956a74
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167

branches/auto/src/libcore/os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ pub fn env() -> ~[(~str,~str)] {
222222
log(debug,
223223
fmt!("splitting: len: %u",
224224
vs.len()));
225-
assert vs.len() == 2;
225+
fail_unless!(vs.len() == 2);
226226
pairs.push((copy vs[0], copy vs[1]));
227227
}
228228
pairs

branches/auto/src/libcore/ptr.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,11 +463,11 @@ pub mod ptr_tests {
463463
log(debug,
464464
fmt!("test_ptr_array_each e: %s, a: %s",
465465
expected, actual));
466-
assert actual == expected;
466+
fail_unless!(actual == expected);
467467
ctr += 1;
468468
iteration_count += 1;
469469
});
470-
assert iteration_count == 3u;
470+
fail_unless!(iteration_count == 3u);
471471
}
472472
}
473473
#[test]
@@ -495,11 +495,11 @@ pub mod ptr_tests {
495495
log(debug,
496496
fmt!("test_ptr_array_each e: %s, a: %s",
497497
expected, actual));
498-
assert actual == expected;
498+
fail_unless!(actual == expected);
499499
ctr += 1;
500500
iteration_count += 1;
501501
});
502-
assert iteration_count == 3;
502+
fail_unless!(iteration_count == 3);
503503
}
504504
}
505505
#[test]

0 commit comments

Comments
 (0)