File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 15
15
16
16
# The names of crates that must be tested
17
17
TEST_TARGET_CRATES = std extra
18
- TEST_HOST_CRATES = syntax rustc rustdoc rust rustpkg
18
+ TEST_HOST_CRATES = syntax rustc rustdoc rust rustpkg rusti
19
19
TEST_CRATES = $(TEST_TARGET_CRATES ) $(TEST_HOST_CRATES )
20
20
21
21
# Markdown files under doc/ that should have their code extracted and run
@@ -157,6 +157,7 @@ check-test: cleantestlibs cleantmptestlogs all check-stage2-rfail
157
157
158
158
check-lite : cleantestlibs cleantmptestlogs \
159
159
check-stage2-std check-stage2-extra check-stage2-rpass \
160
+ check-stage2-rustpkg check-stage2-rusti \
160
161
check-stage2-rfail check-stage2-cfail
161
162
$(Q )$(CFG_PYTHON ) $(S ) src/etc/check-summary.py tmp/* .log
162
163
Original file line number Diff line number Diff line change @@ -530,7 +530,8 @@ mod tests {
530
530
531
531
// FIXME: #7220 rusti on 32bit mac doesn't work.
532
532
// FIXME: #7641 rusti on 32bit linux cross compile doesn't work
533
- #[ cfg( not( target_word_size="32 ") ) ]
533
+ // FIXME: #7115 re-enable once LLVM has been upgraded
534
+ #[ cfg( thiswillneverbeacfgflag) ]
534
535
fn run_program( prog: & str) {
535
536
let mut r = repl( ) ;
536
537
for prog. split_iter( '\n' ) . advance |cmd| {
@@ -539,7 +540,6 @@ mod tests {
539
540
r = result. expect( fmt ! ( "the command '%s' failed" , cmd) ) ;
540
541
}
541
542
}
542
- #[ cfg( target_word_size="32 ") ]
543
543
fn run_program( _: & str) { }
544
544
545
545
#[ test]
You can’t perform that action at this time.
0 commit comments