Rollup merge of #129071 - Zalathar:sysroot-unstable, r=jieyouxu
Port `run-make/sysroot-crates-are-unstable` to rmake I already have a more elaborate draft at #126231 that tries to port the underlying Python script to rmake, but there's no need for the removal of Makefiles to be held up on complex tasks like that, so this PR simply takes the trivial Makefile and converts it into a trivial rmake recipe. Part of #121876. r? ``@jieyouxu``
This commit is contained in:
commit
7472d1bbaf
3 changed files with 5 additions and 3 deletions
|
@ -20,6 +20,5 @@ run-make/reproducible-build/Makefile
|
|||
run-make/rlib-format-packed-bundled-libs/Makefile
|
||||
run-make/split-debuginfo/Makefile
|
||||
run-make/symbol-mangling-hashed/Makefile
|
||||
run-make/sysroot-crates-are-unstable/Makefile
|
||||
run-make/translation/Makefile
|
||||
run-make/x86_64-fortanix-unknown-sgx-lvi/Makefile
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
all:
|
||||
'$(PYTHON)' test.py
|
5
tests/run-make/sysroot-crates-are-unstable/rmake.rs
Normal file
5
tests/run-make/sysroot-crates-are-unstable/rmake.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
use run_make_support::python_command;
|
||||
|
||||
fn main() {
|
||||
python_command().arg("test.py").run();
|
||||
}
|
Loading…
Add table
Reference in a new issue