Skip to content

Commit 4eb42f4

Browse files
committed
---
yaml --- r: 42230 b: refs/heads/master c: 04f93be h: refs/heads/master v: v3
1 parent 161054c commit 4eb42f4

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: f6c84129b40f25dd7846bfe169bf4c3a022d66e5
2+
refs/heads/master: 04f93be158937e5cc327b9be3d3910f9a4222637
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650

trunk/src/README.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ rt/sync - Concurrency utils
1717
rt/util - Small utility classes for the runtime.
1818
rt/vg - Valgrind headers
1919
rt/msvc - MSVC support
20-
rt/linenoise - a readline-like line editing library
2120

2221
test/ Testsuite
2322
test/compile-fail - Tests that should fail to compile

trunk/src/libsyntax/util/testing.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ use core::cmp;
1313

1414
pub pure fn check_equal_ptr<T : cmp::Eq> (given : &T, expected: &T) {
1515
if !((given == expected) && (expected == given )) {
16-
fail (fmt!("given %?, expected %?",given,expected));
16+
die!(fmt!("given %?, expected %?",given,expected));
1717
}
1818
}
1919

2020
pub pure fn check_equal<T : cmp::Eq> (given : T, expected: T) {
2121
if !((given == expected) && (expected == given )) {
22-
fail (fmt!("given %?, expected %?",given,expected));
22+
die!(fmt!("given %?, expected %?",given,expected));
2323
}
2424
}

0 commit comments

Comments
 (0)