File tree 6 files changed +6
-6
lines changed
ci/docker/host-x86_64/x86_64-gnu-llvm-12
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ TESTS_IN_MINGW_2 := \
80
80
src/test/ui
81
81
82
82
ci-mingw-subset-1 :
83
- $(Q )$(CFG_SRC_DIR ) /x.sh test --stage 2 $(TESTS_IN_MINGW_2:%=--exclude % )
83
+ $(Q )$(CFG_SRC_DIR ) /x test --stage 2 $(TESTS_IN_MINGW_2:%=--exclude % )
84
84
ci-mingw-subset-2 :
85
85
$(Q )$(BOOTSTRAP ) test --stage 2 $(TESTS_IN_MINGW_2 )
86
86
Original file line number Diff line number Diff line change @@ -44,15 +44,15 @@ ENV RUST_CONFIGURE_ARGS \
44
44
--enable-llvm-link-shared \
45
45
--set rust.thin-lto-import-instr-limit=10
46
46
47
- # NOTE: intentionally uses all of `x.py`, `x.sh `, and `x.ps1` to make sure they all work on Linux.
47
+ # NOTE: intentionally uses all of `x.py`, `x`, and `x.ps1` to make sure they all work on Linux.
48
48
ENV SCRIPT ../x.py --stage 2 test --exclude src/tools/tidy && \
49
49
# Run the `mir-opt` tests again but this time for a 32-bit target.
50
50
# This enforces that tests using `// EMIT_MIR_FOR_EACH_BIT_WIDTH` have
51
51
# both 32-bit and 64-bit outputs updated by the PR author, before
52
52
# the PR is approved and tested for merging.
53
53
# It will also detect tests lacking `// EMIT_MIR_FOR_EACH_BIT_WIDTH`,
54
54
# despite having different output on 32-bit vs 64-bit targets.
55
- ../x.sh --stage 2 test src/test/mir-opt \
55
+ ../x --stage 2 test src/test/mir-opt \
56
56
--host='' --target=i686-unknown-linux-gnu && \
57
57
# Run the UI test suite again, but in `--pass=check` mode
58
58
#
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ mod os_impl {
98
98
pub fn check ( path : & Path , bad : & mut bool ) {
99
99
use std:: ffi:: OsStr ;
100
100
101
- const ALLOWED : & [ & str ] = & [ "configure" ] ;
101
+ const ALLOWED : & [ & str ] = & [ "configure" , "x" ] ;
102
102
103
103
crate :: walk_no_read (
104
104
path,
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
# !/usr/bin/env pwsh
2
2
3
- # See x.sh for why these scripts exist.
3
+ # See ./x for why these scripts exist.
4
4
5
5
$xpy = Join-Path $PSScriptRoot x.py
6
6
# Start-Process for some reason splits arguments on spaces. (Isn't powershell supposed to be simpler than bash?)
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
# Some systems don't have `python3` in their PATH. This isn't supported by x.py directly;
3
- # they should use `x.sh ` or `x.ps1` instead.
3
+ # they should use `x` or `x.ps1` instead.
4
4
5
5
# This file is only a "symlink" to bootstrap.py, all logic should go there.
6
6
You can’t perform that action at this time.
0 commit comments