Skip to content

Commit 546fc96

Browse files
committed
---
yaml --- r: 64083 b: refs/heads/snap-stage3 c: a02e37c h: refs/heads/master i: 64081: 2249e45 64079: e06296a v: v3
1 parent 3d71f35 commit 546fc96

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 6d6b1a8bfaade7fdc94e12ade4b0392d739e385d
4+
refs/heads/snap-stage3: a02e37c397211c09467f374a60597efa1a57ea07
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/etc/local_stage0.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fi
4343

4444
cp ${PREFIX}/bin/rustc ${TARG_DIR}/stage0/bin/
4545
cp ${PREFIX}/lib/rustc/${TARG_DIR}/${LIBDIR}/* ${TARG_DIR}/stage0/${LIBDIR}/
46-
cp ${PREFIX}/lib/libextra*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/
4746
cp ${PREFIX}/lib/librust*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/
47+
cp ${PREFIX}/lib/libcore*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/
4848
cp ${PREFIX}/lib/libstd*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/
4949
cp ${PREFIX}/lib/libsyntax*${LIB_SUF} ${TARG_DIR}/stage0/${LIBDIR}/

branches/snap-stage3/src/librustc/front/test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ fn mk_test_module(cx: &TestCtxt) -> @ast::item {
309309
let mainfn = (quote_item!(
310310
pub fn main() {
311311
#[main];
312-
extra::test::test_main_static(::std::os::args(), tests);
312+
extra::test::test_main_static(::std::os::args(), TESTS);
313313
}
314314
)).get();
315315

@@ -366,7 +366,7 @@ fn mk_tests(cx: &TestCtxt) -> @ast::item {
366366
let test_descs = mk_test_descs(cx);
367367

368368
(quote_item!(
369-
pub static tests : &'static [self::extra::test::TestDescAndFn] =
369+
pub static TESTS : &'static [self::extra::test::TestDescAndFn] =
370370
$test_descs
371371
;
372372
)).get()

branches/snap-stage3/src/test/run-pass/test-ignore-cfg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn shouldnotignore() {
2626
#[test]
2727
fn checktests() {
2828
// Pull the tests out of the secreturn test module
29-
let tests = __test::tests;
29+
let tests = __test::TESTS;
3030

3131
assert!(
3232
tests.iter().any_(|t| t.desc.name.to_str() == ~"shouldignore" && t.desc.ignore));

0 commit comments

Comments
 (0)