Skip to content

Commit 4b7d074

Browse files
committed
Auto merge of rust-lang#128787 - Oneirical:infohazardous-deprogram, r=jieyouxu
Coalesce `dep-info`, `dep-info-spaces` and `dep-info-doesnt-run-much` `run-make` tests into `dep-info` rmake.rs Part of rust-lang#121876 and the associated [Google Summer of Code project](https://blog.rust-lang.org/2024/05/01/gsoc-2024-selected-projects.html). This is one of the most ancient tests in the `run-make` directory and its Makefile does some unexpected things, like creating and deleting a `done` directory over and over, sleeping at certain times (this is the [commit](rust-lang@0d9fd8e) that added the `sleep`). I tried to preserve the intent of the test, which is smoke-testing that `dep-info` works. try-job: x86_64-msvc try-job: i686-mingw try-job: aarch64-gnu try-job: aarch64-apple try-job: test-various try-job: armhf-gnu try-job: dist-various-1
2 parents 2c93fab + 7c4d561 commit 4b7d074

File tree

11 files changed

+37
-66
lines changed

11 files changed

+37
-66
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
run-make/branch-protection-check-IBT/Makefile
22
run-make/cat-and-grep-sanity-check/Makefile
3-
run-make/dep-info-doesnt-run-much/Makefile
4-
run-make/dep-info-spaces/Makefile
5-
run-make/dep-info/Makefile
63
run-make/emit-to-stdout/Makefile
74
run-make/extern-fn-reachable/Makefile
85
run-make/incr-add-rust-src-component/Makefile

tests/run-make/dep-info-doesnt-run-much/Makefile

-4
This file was deleted.

tests/run-make/dep-info-spaces/Makefile

-19
This file was deleted.

tests/run-make/dep-info-spaces/Makefile.foo

-7
This file was deleted.

tests/run-make/dep-info-spaces/bar.rs

-1
This file was deleted.

tests/run-make/dep-info/Makefile

-25
This file was deleted.

tests/run-make/dep-info/Makefile.foo

-7
This file was deleted.
File renamed without changes.
File renamed without changes.

tests/run-make/dep-info/rmake.rs

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// This is a simple smoke test for rustc's `--emit dep-info` feature. It prints out
2+
// information about dependencies in a Makefile-compatible format, as a `.d` file.
3+
// Note that this test does not check that the `.d` file is Makefile-compatible.
4+
5+
// This test first checks that emitting dep-info disables static analysis, preventing
6+
// compilation of `erroneous.rs` from causing a compilation failure.
7+
// Then, it checks that compilation using the flag is successful in general, even with
8+
// empty source files or source files that contain a whitespace character.
9+
10+
// Finally, it removes one dependency and checks that compilation is still successful.
11+
// See https://github.com/rust-lang/rust/pull/10698
12+
13+
use run_make_support::{rfs, rustc};
14+
15+
fn main() {
16+
// We're only emitting dep info, so we shouldn't be running static analysis to
17+
// figure out that this program is erroneous.
18+
rustc().input("erroneous.rs").emit("dep-info").run();
19+
20+
rustc().input("lib.rs").emit("dep-info,link").crate_type("lib").run();
21+
rfs::remove_file("foo.rs");
22+
rfs::create_file("foo.rs");
23+
// Compilation should succeed even if `foo.rs` is empty.
24+
rustc().input("lib.rs").emit("dep-info,link").crate_type("lib").run();
25+
26+
// Again, with a space in the filename this time around.
27+
rustc().input("lib_foofoo.rs").emit("dep-info,link").crate_type("lib").run();
28+
rfs::remove_file("foo foo.rs");
29+
rfs::create_file("foo foo.rs");
30+
// Compilation should succeed even if `foo foo.rs` is empty.
31+
rustc().input("lib_foofoo.rs").emit("dep-info,link").crate_type("lib").run();
32+
33+
// When a source file is deleted, compilation should still succeed if the library
34+
// also loses this source file dependency.
35+
rfs::remove_file("bar.rs");
36+
rustc().input("lib2.rs").emit("dep-info,link").crate_type("lib").run();
37+
}

0 commit comments

Comments
 (0)