about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/tools/tidy/src/allowed_run_make_makefiles.txt3
-rw-r--r--tests/run-make/alloc-no-oom-handling/rmake.rs3
-rw-r--r--tests/run-make/alloc-no-rc/rmake.rs3
-rw-r--r--tests/run-make/alloc-no-sync/rmake.rs3
4 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/tidy/src/allowed_run_make_makefiles.txt b/src/tools/tidy/src/allowed_run_make_makefiles.txt
index e87950b36d9..d96fc3f41f7 100644
--- a/src/tools/tidy/src/allowed_run_make_makefiles.txt
+++ b/src/tools/tidy/src/allowed_run_make_makefiles.txt
@@ -1,6 +1,3 @@
-run-make/alloc-no-oom-handling/Makefile
-run-make/alloc-no-rc/Makefile
-run-make/alloc-no-sync/Makefile
 run-make/allocator-shim-circular-deps/Makefile
 run-make/allow-non-lint-warnings-cmdline/Makefile
 run-make/allow-warnings-cmdline-stability/Makefile
diff --git a/tests/run-make/alloc-no-oom-handling/rmake.rs b/tests/run-make/alloc-no-oom-handling/rmake.rs
index 102a7700302..fec3c653294 100644
--- a/tests/run-make/alloc-no-oom-handling/rmake.rs
+++ b/tests/run-make/alloc-no-oom-handling/rmake.rs
@@ -1,4 +1,5 @@
-// This test checks that alloc can still compile correctly when the unstable no_global_oom_handling feature is turned on.
+// This test checks that alloc can still compile correctly
+// when the unstable no_global_oom_handling feature is turned on.
 // See https://github.com/rust-lang/rust/pull/84266
 
 use run_make_support::rustc;
diff --git a/tests/run-make/alloc-no-rc/rmake.rs b/tests/run-make/alloc-no-rc/rmake.rs
index b4a0950d3e4..c5744a3f5ee 100644
--- a/tests/run-make/alloc-no-rc/rmake.rs
+++ b/tests/run-make/alloc-no-rc/rmake.rs
@@ -1,4 +1,5 @@
-// This test checks that alloc can still compile correctly when the unstable no_rc feature is turned on.
+// This test checks that alloc can still compile correctly
+// when the unstable no_rc feature is turned on.
 // See https://github.com/rust-lang/rust/pull/84266
 
 use run_make_support::rustc;
diff --git a/tests/run-make/alloc-no-sync/rmake.rs b/tests/run-make/alloc-no-sync/rmake.rs
index 32196ba9294..6410eca80ab 100644
--- a/tests/run-make/alloc-no-sync/rmake.rs
+++ b/tests/run-make/alloc-no-sync/rmake.rs
@@ -1,4 +1,5 @@
-// This test checks that alloc can still compile correctly when the unstable no_sync feature is turned on.
+// This test checks that alloc can still compile correctly
+// when the unstable no_sync feature is turned on.
 // See https://github.com/rust-lang/rust/pull/84266
 
 use run_make_support::rustc;