This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,16 @@ set -ex
66if [[ -z " ${PR_CI_JOB} " ]]; then
77 # When running gcc backend tests, we need to install `libgccjit` and to not run llvm codegen
88 # tests as it will fail them.
9- # The tests are run a second time with the size optimizations enabled.
109 if [[ " ${ENABLE_GCC_CODEGEN} " == " 1" ]]; then
1110 ../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\" "
1411 else
1512 ../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\" "
1813 fi
1914
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+
2019 # Run the `mir-opt` tests again but this time for a 32-bit target.
2120 # This enforces that tests using `// EMIT_MIR_FOR_EACH_BIT_WIDTH` have
2221 # 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