about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAntoni Boucher <bouanto@zoho.com>2025-03-27 14:33:38 -0400
committerAntoni Boucher <bouanto@zoho.com>2025-04-17 08:49:33 -0400
commitf9822772e8781ed30a89aa4494e47c42b4397133 (patch)
treeec53c8c14815221c69e3a7d83d93b6a0a2fe1068
parent9a453d46f42c40b91d004064a4cc12f7c28c7fc7 (diff)
downloadrust-f9822772e8781ed30a89aa4494e47c42b4397133.tar.gz
rust-f9822772e8781ed30a89aa4494e47c42b4397133.zip
Fix libcore tests
-rw-r--r--build_system/src/test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_system/src/test.rs b/build_system/src/test.rs
index 297cd7d7131..df4ac85233b 100644
--- a/build_system/src/test.rs
+++ b/build_system/src/test.rs
@@ -678,7 +678,7 @@ fn test_projects(env: &Env, args: &TestArg) -> Result<(), String> {
 fn test_libcore(env: &Env, args: &TestArg) -> Result<(), String> {
     // FIXME: create a function "display_if_not_quiet" or something along the line.
     println!("[TEST] libcore");
-    let path = get_sysroot_dir().join("sysroot_src/library/core/tests");
+    let path = get_sysroot_dir().join("sysroot_src/library/coretests");
     let _ = remove_dir_all(path.join("target"));
     run_cargo_command(&[&"test"], Some(&path), env, args)?;
     Ok(())