File tree 1 file changed +2
-14
lines changed
1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change 4
4
5
5
# Only run the stage 1 tests on merges, not on PR CI jobs.
6
6
if [[ -z " ${PR_CI_JOB} " ]]; then
7
- # When running gcc backend tests, we need to install `libgccjit` and to not run llvm codegen
8
- # tests as it will fail them.
9
- if [[ " ${ENABLE_GCC_CODEGEN} " == " 1" ]]; then
10
- ../x.py --stage 1 test --skip src/tools/tidy --skip tests/codegen
11
- else
12
- ../x.py --stage 1 test --skip src/tools/tidy
13
- fi
7
+ ../x.py --stage 1 test --skip src/tools/tidy
14
8
15
9
# Run the `mir-opt` tests again but this time for a 32-bit target.
16
10
# This enforces that tests using `// EMIT_MIR_FOR_EACH_BIT_WIDTH` have
@@ -29,14 +23,8 @@ if [[ -z "${PR_CI_JOB}" ]]; then
29
23
--rustc-args " --cfg feature=\" optimize_for_size\" "
30
24
fi
31
25
32
- # When running gcc backend tests, we need to install `libgccjit` and to not run llvm codegen
33
- # tests as it will fail them.
34
26
# NOTE: intentionally uses all of `x.py`, `x`, and `x.ps1` to make sure they all work on Linux.
35
- if [[ " ${ENABLE_GCC_CODEGEN} " == " 1" ]]; then
36
- ../x.py --stage 2 test --skip src/tools/tidy --skip tests/codegen
37
- else
38
- ../x.py --stage 2 test --skip src/tools/tidy
39
- fi
27
+ ../x.py --stage 2 test --skip src/tools/tidy
40
28
41
29
# Run the `mir-opt` tests again but this time for a 32-bit target.
42
30
# This enforces that tests using `// EMIT_MIR_FOR_EACH_BIT_WIDTH` have
You can’t perform that action at this time.
0 commit comments