Skip to content

Commit

Permalink
Rollup merge of #129071 - Zalathar:sysroot-unstable, r=jieyouxu
Browse files Browse the repository at this point in the history
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`
  • Loading branch information
matthiaskrgr committed Aug 14, 2024
2 parents 9f46639 + 342b374 commit cd37a32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/tools/tidy/src/allowed_run_make_makefiles.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 0 additions & 2 deletions tests/run-make/sysroot-crates-are-unstable/Makefile

This file was deleted.

5 changes: 5 additions & 0 deletions tests/run-make/sysroot-crates-are-unstable/rmake.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
use run_make_support::python_command;

fn main() {
python_command().arg("test.py").run();
}

0 comments on commit cd37a32

Please sign in to comment.