Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/bootstrap/src/core/build_steps/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ impl Step for IntrinsicTest {
const IS_HOST: bool = true;

fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
run.path("library/stdarch/crates/intrinsic-test")
run.alias("intrinsic-test")
}

fn is_default_step(_builder: &Builder<'_>) -> bool {
Expand Down Expand Up @@ -1107,7 +1107,7 @@ impl Step for IntrinsicTest {
for skip in &skip_file {
cmd.arg("--skip").arg(skip);
}
cmd.arg("--sample-percentage").arg("10");
cmd.arg("--sample-percentage").arg("100");
cmd.arg("--cc-arg-style").arg("gcc");
cmd.env("CC", builder.cc(host));
cmd.env("CFLAGS", cflags);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,4 @@ expression: test
- Suite(test::tests/run-make-cargo)
[Test] test::IntrinsicTest
targets: [x86_64-unknown-linux-gnu]
- Set({test::library/stdarch/crates/intrinsic-test})
- Set({test::intrinsic-test})
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,3 @@ expression: test library
[Test] test::StdarchVerify
targets: [x86_64-unknown-linux-gnu]
- Set({test::library/stdarch/crates/stdarch-verify})
[Test] test::IntrinsicTest
targets: [x86_64-unknown-linux-gnu]
- Set({test::library/stdarch/crates/intrinsic-test})
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,4 @@ expression: test --skip=coverage
- Suite(test::tests/run-make-cargo)
[Test] test::IntrinsicTest
targets: [x86_64-unknown-linux-gnu]
- Set({test::library/stdarch/crates/intrinsic-test})
- Set({test::intrinsic-test})
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,4 @@ expression: test --skip=coverage-map
- Suite(test::tests/run-make-cargo)
[Test] test::IntrinsicTest
targets: [x86_64-unknown-linux-gnu]
- Set({test::library/stdarch/crates/intrinsic-test})
- Set({test::intrinsic-test})
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,4 @@ expression: test --skip=coverage-run
- Suite(test::tests/run-make-cargo)
[Test] test::IntrinsicTest
targets: [x86_64-unknown-linux-gnu]
- Set({test::library/stdarch/crates/intrinsic-test})
- Set({test::intrinsic-test})
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,4 @@ expression: test --skip=tests
- Set({test::src/tools/test-float-parse})
[Test] test::IntrinsicTest
targets: [x86_64-unknown-linux-gnu]
- Set({test::library/stdarch/crates/intrinsic-test})
- Set({test::intrinsic-test})
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,4 @@ expression: test --skip=tests/coverage
- Suite(test::tests/run-make-cargo)
[Test] test::IntrinsicTest
targets: [x86_64-unknown-linux-gnu]
- Set({test::library/stdarch/crates/intrinsic-test})
- Set({test::intrinsic-test})
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,6 @@ expression: test --skip=tests --skip=coverage-map --skip=coverage-run --skip=lib
[Test] test::TestFloatParse
targets: [x86_64-unknown-linux-gnu]
- Set({test::src/tools/test-float-parse})
[Test] test::IntrinsicTest
targets: [x86_64-unknown-linux-gnu]
- Set({test::intrinsic-test})
3 changes: 1 addition & 2 deletions src/ci/docker/host-aarch64/aarch64-gnu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ ENV RUST_CONFIGURE_ARGS="--build=aarch64-unknown-linux-gnu \
--enable-profiler \
--enable-compiler-docs"
ENV SCRIPT="python3 ../x.py --stage 2 test && \
python3 ../x.py --stage 2 test src/tools/cargo && \
python3 ../x.py --stage 2 test library/stdarch/crates/intrinsic-test"
python3 ../x.py --stage 2 test src/tools/cargo"
2 changes: 1 addition & 1 deletion src/ci/docker/scripts/stage_2_test_set1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fi
# Skip intrinsic-test on LLVM 21 to avoid CI failures.
if [ "$LLVM_VERSION" = "21" ]; then
echo "LLVM_VERSION is 21; skipping intrinsic-test"
SKIP_INTRINSICS="--skip library/stdarch/crates/intrinsic-test"
SKIP_INTRINSICS="--skip intrinsic-test"
fi

../x.py --stage 2 test \
Expand Down
2 changes: 1 addition & 1 deletion src/ci/docker/scripts/stage_2_test_set2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fi
# Skip intrinsic-test on LLVM 21 to avoid CI failures.
if [ "$LLVM_VERSION" = "21" ]; then
echo "LLVM_VERSION is 21; skipping intrinsic-test"
SKIP_INTRINSICS="--skip library/stdarch/crates/intrinsic-test"
SKIP_INTRINSICS="--skip intrinsic-test"
fi

../x.py --stage 2 test \
Expand Down
Loading