@@ -286,7 +286,7 @@ fn build_sysroot(env: &Env, args: &TestArg) -> Result<(), String> {
286286 Ok ( ( ) )
287287}
288288
289- // FIXME(GuillaumeGomez): when rewriting in Rust, refactor with the code in tests/lang_tests_common.rs if possible .
289+ // FIXME(GuillaumeGomez): This still duplicates tests/lang_tests_common.rs; keep them in sync until the Rust rewrite .
290290fn maybe_run_command_in_vm (
291291 command : & [ & dyn AsRef < OsStr > ] ,
292292 env : & Env ,
@@ -708,16 +708,16 @@ fn test_projects(env: &Env, args: &TestArg) -> Result<(), String> {
708708 "https://github.com/BurntSushi/memchr" ,
709709 "https://github.com/dtolnay/itoa" ,
710710 "https://github.com/rust-lang/cfg-if" ,
711- //"https://github.com/rust-lang-nursery/lazy-static.rs", // FIXME: re-enable when the
711+ //"https://github.com/rust-lang-nursery/lazy-static.rs", // FIXME: This stays disabled until the
712712 //failing test is fixed upstream.
713713 //"https://github.com/marshallpierce/rust-base64", // FIXME: one test is OOM-killed.
714- // FIXME: ignore the base64 test that is OOM-killed .
714+ // FIXME: The OOM-killed base64 test still needs to be ignored .
715715 //"https://github.com/time-rs/time", // FIXME: one test fails (https://github.com/time-rs/time/issues/719).
716716 "https://github.com/rust-lang/log" ,
717717 "https://github.com/bitflags/bitflags" ,
718718 //"https://github.com/serde-rs/serde", // FIXME: one test fails.
719- //"https://github.com/rayon-rs/rayon", // FIXME: very slow, only run on master?
720- //"https://github.com/rust-lang/cargo", // FIXME: very slow, only run on master?
719+ //"https://github.com/rayon-rs/rayon", // FIXME: This is too slow for regular CI runs; keep it for master-only runs if re-enabled.
720+ //"https://github.com/rust-lang/cargo", // FIXME: This is too slow for regular CI runs; keep it for master-only runs if re-enabled.
721721 ] ;
722722
723723 let mut env = env. clone ( ) ;
@@ -759,7 +759,7 @@ fn test_libcore(env: &Env, args: &TestArg) -> Result<(), String> {
759759 println ! ( "[TEST] libcore" ) ;
760760 let path = get_sysroot_dir ( ) . join ( "sysroot_src/library/coretests" ) ;
761761 let _ = remove_dir_all ( path. join ( "target" ) ) ;
762- // FIXME(antoyo): run in release mode when we fix the failures .
762+ // FIXME(antoyo): test_libcore still fails in release mode.
763763 run_cargo_command ( & [ & "test" ] , Some ( & path) , env, args) ?;
764764 Ok ( ( ) )
765765}
0 commit comments