Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7c4d561

Browse files
committedAug 15, 2024
coalesce dep-info-spaces and dep-info-doesnt-run-much into dep-info
1 parent 9bad7ba commit 7c4d561

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)
Failed to load comments.