@@ -285,7 +285,7 @@ fn build_sysroot(env: &Env, args: &TestArg) -> Result<(), String> {
285285 Ok ( ( ) )
286286}
287287
288- // TODO (GuillaumeGomez): when rewriting in Rust, refactor with the code in tests/lang_tests_common.rs if possible.
288+ // FIXME (GuillaumeGomez): when rewriting in Rust, refactor with the code in tests/lang_tests_common.rs if possible.
289289fn maybe_run_command_in_vm (
290290 command : & [ & dyn AsRef < OsStr > ] ,
291291 env : & Env ,
@@ -648,16 +648,16 @@ fn test_projects(env: &Env, args: &TestArg) -> Result<(), String> {
648648 "https://github.com/BurntSushi/memchr" ,
649649 "https://github.com/dtolnay/itoa" ,
650650 "https://github.com/rust-lang/cfg-if" ,
651- //"https://github.com/rust-lang-nursery/lazy-static.rs", // TODO : re-enable when the
651+ //"https://github.com/rust-lang-nursery/lazy-static.rs", // FIXME : re-enable when the
652652 //failing test is fixed upstream.
653653 //"https://github.com/marshallpierce/rust-base64", // FIXME: one test is OOM-killed.
654- // TODO : ignore the base64 test that is OOM-killed.
654+ // FIXME : ignore the base64 test that is OOM-killed.
655655 //"https://github.com/time-rs/time", // FIXME: one test fails (https://github.com/time-rs/time/issues/719).
656656 "https://github.com/rust-lang/log" ,
657657 "https://github.com/bitflags/bitflags" ,
658658 //"https://github.com/serde-rs/serde", // FIXME: one test fails.
659- //"https://github.com/rayon-rs/rayon", // TODO : very slow, only run on master?
660- //"https://github.com/rust-lang/cargo", // TODO : very slow, only run on master?
659+ //"https://github.com/rayon-rs/rayon", // FIXME : very slow, only run on master?
660+ //"https://github.com/rust-lang/cargo", // FIXME : very slow, only run on master?
661661 ] ;
662662
663663 let mut env = env. clone ( ) ;
@@ -699,7 +699,7 @@ fn test_libcore(env: &Env, args: &TestArg) -> Result<(), String> {
699699 println ! ( "[TEST] libcore" ) ;
700700 let path = get_sysroot_dir ( ) . join ( "sysroot_src/library/coretests" ) ;
701701 let _ = remove_dir_all ( path. join ( "target" ) ) ;
702- // TODO (antoyo): run in release mode when we fix the failures.
702+ // FIXME (antoyo): run in release mode when we fix the failures.
703703 run_cargo_command ( & [ & "test" ] , Some ( & path) , env, args) ?;
704704 Ok ( ( ) )
705705}
0 commit comments