diff --git a/src/tools/tidy/src/allowed_run_make_makefiles.txt b/src/tools/tidy/src/allowed_run_make_makefiles.txt index e87950b36d9df..d96fc3f41f724 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 102a770030270..fec3c6532940e 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 b4a0950d3e48c..c5744a3f5eef5 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 32196ba929447..6410eca80abff 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;