File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 6d6b1a8bfaade7fdc94e12ade4b0392d739e385d
4
+ refs/heads/snap-stage3: a02e37c397211c09467f374a60597efa1a57ea07
5
5
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change 43
43
44
44
cp ${PREFIX} /bin/rustc ${TARG_DIR} /stage0/bin/
45
45
cp ${PREFIX} /lib/rustc/${TARG_DIR} /${LIBDIR} /* ${TARG_DIR} /stage0/${LIBDIR} /
46
- cp ${PREFIX} /lib/libextra* ${LIB_SUF} ${TARG_DIR} /stage0/${LIBDIR} /
47
46
cp ${PREFIX} /lib/librust* ${LIB_SUF} ${TARG_DIR} /stage0/${LIBDIR} /
47
+ cp ${PREFIX} /lib/libcore* ${LIB_SUF} ${TARG_DIR} /stage0/${LIBDIR} /
48
48
cp ${PREFIX} /lib/libstd* ${LIB_SUF} ${TARG_DIR} /stage0/${LIBDIR} /
49
49
cp ${PREFIX} /lib/libsyntax* ${LIB_SUF} ${TARG_DIR} /stage0/${LIBDIR} /
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ fn mk_test_module(cx: &TestCtxt) -> @ast::item {
309
309
let mainfn = ( quote_item ! (
310
310
pub fn main( ) {
311
311
#[ main] ;
312
- extra:: test:: test_main_static( :: std:: os:: args( ) , tests ) ;
312
+ extra:: test:: test_main_static( :: std:: os:: args( ) , TESTS ) ;
313
313
}
314
314
) ) . get ( ) ;
315
315
@@ -366,7 +366,7 @@ fn mk_tests(cx: &TestCtxt) -> @ast::item {
366
366
let test_descs = mk_test_descs ( cx) ;
367
367
368
368
( quote_item ! (
369
- pub static tests : & ' static [ self :: extra:: test:: TestDescAndFn ] =
369
+ pub static TESTS : & ' static [ self :: extra:: test:: TestDescAndFn ] =
370
370
$test_descs
371
371
;
372
372
) ) . get ( )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ fn shouldnotignore() {
26
26
#[ test]
27
27
fn checktests ( ) {
28
28
// Pull the tests out of the secreturn test module
29
- let tests = __test:: tests ;
29
+ let tests = __test:: TESTS ;
30
30
31
31
assert ! (
32
32
tests. iter( ) . any_( |t| t. desc. name. to_str( ) == ~"shouldignore" && t.desc.ignore));
You can’t perform that action at this time.
0 commit comments