about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-08-10 16:33:36 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-08-10 16:33:36 +0000
commitab1da46e45cde2fee4b61290072759372ac5c780 (patch)
tree1db403f6df735d47f4c2e7eba1f47161ee8cc5b1
parentaa918f02e4404f7cd19c809f28c83d9416a00b6c (diff)
downloadrust-ab1da46e45cde2fee4b61290072759372ac5c780.tar.gz
rust-ab1da46e45cde2fee4b61290072759372ac5c780.zip
Fix source path for portable-simd
To avoid overriding the source for coretests every time.
-rw-r--r--build_system/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_system/tests.rs b/build_system/tests.rs
index 5e6990c8a27..22a791bfc7d 100644
--- a/build_system/tests.rs
+++ b/build_system/tests.rs
@@ -129,7 +129,7 @@ pub(crate) static REGEX_REPO: GitRepo = GitRepo::github(
 
 pub(crate) static REGEX: CargoProject = CargoProject::new(&REGEX_REPO.source_dir(), "regex_target");
 
-pub(crate) static PORTABLE_SIMD_SRC: RelPath = RelPath::BUILD.join("coretests");
+pub(crate) static PORTABLE_SIMD_SRC: RelPath = RelPath::BUILD.join("portable-simd");
 
 pub(crate) static PORTABLE_SIMD: CargoProject =
     CargoProject::new(&PORTABLE_SIMD_SRC, "portable-simd_target");