File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,16 @@ set -ex
6
6
if [[ -z " ${PR_CI_JOB} " ]]; then
7
7
# When running gcc backend tests, we need to install `libgccjit` and to not run llvm codegen
8
8
# tests as it will fail them.
9
- # The tests are run a second time with the size optimizations enabled.
10
9
if [[ " ${ENABLE_GCC_CODEGEN} " == " 1" ]]; then
11
10
../x.py --stage 1 test --skip src/tools/tidy --skip tests/codegen
12
- ../x.py --stage 1 test library/std library/alloc library/core \
13
- --rustc-args " --cfg feature=\" optimize_for_size\" "
14
11
else
15
12
../x.py --stage 1 test --skip src/tools/tidy
16
- ../x.py --stage 1 test library/std library/alloc library/core \
17
- --rustc-args " --cfg feature=\" optimize_for_size\" "
18
13
fi
19
14
15
+ # The tests are run a second time with the size optimizations enabled.
16
+ ../x.py --stage 1 test library/std library/alloc library/core \
17
+ --rustc-args " --cfg feature=\" optimize_for_size\" "
18
+
20
19
# Run the `mir-opt` tests again but this time for a 32-bit target.
21
20
# This enforces that tests using `// EMIT_MIR_FOR_EACH_BIT_WIDTH` have
22
21
# both 32-bit and 64-bit outputs updated by the PR author, before
You can’t perform that action at this time.
0 commit comments