about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAntoni Boucher <bouanto@zoho.com>2025-06-28 15:41:58 -0400
committerAntoni Boucher <bouanto@zoho.com>2025-06-28 15:41:58 -0400
commit8385f3c4b0b888f4d4fb41ce10b892ca19e4ddce (patch)
tree8298b6c959c4a197c7c6df9d7ce07146cae1cd6e
parentf876b18783906cdd5a4910ead475351c33c947ab (diff)
downloadrust-8385f3c4b0b888f4d4fb41ce10b892ca19e4ddce.tar.gz
rust-8385f3c4b0b888f4d4fb41ce10b892ca19e4ddce.zip
Stop skipping libcore's f16::test_total_cmp
-rw-r--r--build_system/src/test.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/build_system/src/test.rs b/build_system/src/test.rs
index bcaab0fb526..f1f31f83ca2 100644
--- a/build_system/src/test.rs
+++ b/build_system/src/test.rs
@@ -738,14 +738,7 @@ fn test_libcore(env: &Env, args: &TestArg) -> Result<(), String> {
     let path = get_sysroot_dir().join("sysroot_src/library/coretests");
     let _ = remove_dir_all(path.join("target"));
     // TODO(antoyo): run in release mode when we fix the failures.
-    // TODO(antoyo): remove the --skip f16::test_total_cmp when this issue is fixed:
-    // https://github.com/rust-lang/rust/issues/141503
-    run_cargo_command(
-        &[&"test", &"--", &"--skip", &"f16::test_total_cmp"],
-        Some(&path),
-        env,
-        args,
-    )?;
+    run_cargo_command(&[&"test"], Some(&path), env, args)?;
     Ok(())
 }