diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-01-08 00:38:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-08 00:38:36 +0100 |
| commit | bf20ade5bf4b60714f5a5c5f263679fe145ed03d (patch) | |
| tree | 2a1b13b5f2cb47590d370d7fbff999bb737194cf | |
| parent | 26768609fb115a9acbfedc50d25335bcd9b118e2 (diff) | |
| parent | 5be2a85351fcf2a71831938022f5afc96c76f284 (diff) | |
| download | rust-bf20ade5bf4b60714f5a5c5f263679fe145ed03d.tar.gz rust-bf20ade5bf4b60714f5a5c5f263679fe145ed03d.zip | |
Rollup merge of #119711 - Nilstrieb:makewtf, r=WaffleLapkin
Delete unused makefile in tests/ui ??????????
| -rw-r--r-- | src/tools/tidy/src/ui_tests.rs | 1 | ||||
| -rw-r--r-- | tests/ui/unused-crate-deps/test.mk | 7 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/tools/tidy/src/ui_tests.rs b/src/tools/tidy/src/ui_tests.rs index b4745d4883c..99c5dce347a 100644 --- a/src/tools/tidy/src/ui_tests.rs +++ b/src/tools/tidy/src/ui_tests.rs @@ -33,7 +33,6 @@ const EXTENSION_EXCEPTION_PATHS: &[&str] = &[ "tests/ui/macros/macro-expanded-include/file.txt", // testing including data with the include macros "tests/ui/macros/not-utf8.bin", // testing including data with the include macros "tests/ui/macros/syntax-extension-source-utils-files/includeme.fragment", // more include - "tests/ui/unused-crate-deps/test.mk", // why would you use make "tests/ui/proc-macro/auxiliary/included-file.txt", // more include "tests/ui/invalid/foo.natvis.xml", // sample debugger visualizer ]; diff --git a/tests/ui/unused-crate-deps/test.mk b/tests/ui/unused-crate-deps/test.mk deleted file mode 100644 index 0b98b4e44fb..00000000000 --- a/tests/ui/unused-crate-deps/test.mk +++ /dev/null @@ -1,7 +0,0 @@ -# Everyone uses make for building Rust - -foo: bar.rlib - $(RUSTC) --crate-type bin --extern bar=bar.rlib - -%.rlib: %.rs - $(RUSTC) --crate-type lib $< |
