compiletest: Run all android tests serially

This is an attempt to isolate test failures on the bots. It may also
eliminate problems with the emulators breaking by reducing the chance
of OOM.
This commit is contained in:
Brian Anderson 2014-02-13 21:17:02 -08:00
parent 89b1686bd7
commit a06ce0c91f

View File

@ -219,12 +219,14 @@ pub fn run_tests(config: &config) {
mode_debug_info => { mode_debug_info => {
println!("arm-linux-androideabi debug-info \ println!("arm-linux-androideabi debug-info \
test uses tcp 5039 port. please reserve it"); test uses tcp 5039 port. please reserve it");
//arm-linux-androideabi debug-info test uses remote debugger
//so, we test 1 task at once
os::setenv("RUST_TEST_TASKS","1");
} }
_ =>{} _ =>{}
} }
//arm-linux-androideabi debug-info test uses remote debugger
//so, we test 1 task at once.
// also trying to isolate problems with adb_run_wrapper.sh ilooping
os::setenv("RUST_TEST_TASKS","1");
} }
let opts = test_opts(config); let opts = test_opts(config);