Skip to content

Commit 8385f3c

Browse files
committed
Stop skipping libcore's f16::test_total_cmp
1 parent f876b18 commit 8385f3c

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

build_system/src/test.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -738,14 +738,7 @@ fn test_libcore(env: &Env, args: &TestArg) -> Result<(), String> {
738738
let path = get_sysroot_dir().join("sysroot_src/library/coretests");
739739
let _ = remove_dir_all(path.join("target"));
740740
// TODO(antoyo): run in release mode when we fix the failures.
741-
// TODO(antoyo): remove the --skip f16::test_total_cmp when this issue is fixed:
742-
// https://github.com/rust-lang/rust/issues/141503
743-
run_cargo_command(
744-
&[&"test", &"--", &"--skip", &"f16::test_total_cmp"],
745-
Some(&path),
746-
env,
747-
args,
748-
)?;
741+
run_cargo_command(&[&"test"], Some(&path), env, args)?;
749742
Ok(())
750743
}
751744

0 commit comments

Comments
 (0)