diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-05-28 13:00:28 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-06-13 16:39:59 +0000 |
| commit | b9129c0d6bb1e2adffb368f5062d4198bce6a7c7 (patch) | |
| tree | 99f0860947387481a037739014e1790877248bc9 | |
| parent | fc23a8a7e0fe32ef18214ced7ee79e111a40df69 (diff) | |
| download | rust-b9129c0d6bb1e2adffb368f5062d4198bce6a7c7.tar.gz rust-b9129c0d6bb1e2adffb368f5062d4198bce6a7c7.zip | |
Rename a couple of build dirs for consistency
| -rw-r--r-- | build_system/tests.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build_system/tests.rs b/build_system/tests.rs index ec97be2b2d9..5502e2a23c6 100644 --- a/build_system/tests.rs +++ b/build_system/tests.rs @@ -125,11 +125,11 @@ pub(crate) static PORTABLE_SIMD_REPO: GitRepo = GitRepo::github( ); pub(crate) static PORTABLE_SIMD: CargoProject = - CargoProject::new(&PORTABLE_SIMD_REPO.source_dir(), "portable_simd_target"); + CargoProject::new(&PORTABLE_SIMD_REPO.source_dir(), "portable-simd_target"); -static LIBCORE_TESTS_SRC: RelPath = RelPath::BUILD.join("coretests_src"); +static LIBCORE_TESTS_SRC: RelPath = RelPath::BUILD.join("coretests"); -static LIBCORE_TESTS: CargoProject = CargoProject::new(&LIBCORE_TESTS_SRC, "core_tests"); +static LIBCORE_TESTS: CargoProject = CargoProject::new(&LIBCORE_TESTS_SRC, "coretests_target"); const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[ TestCase::custom("test.rust-random/rand", &|runner| { |
