Skip to content

Commit e9ff47f

Browse files
committed
rewrite error-found-staticlib-instead-crate to rmake
1 parent f8e5660 commit e9ff47f

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

src/tools/tidy/src/allowed_run_make_makefiles.txt

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ run-make/emit-shared-files/Makefile
3838
run-make/emit-stack-sizes/Makefile
3939
run-make/emit-to-stdout/Makefile
4040
run-make/env-dep-info/Makefile
41-
run-make/error-found-staticlib-instead-crate/Makefile
4241
run-make/error-writing-dependencies/Makefile
4342
run-make/export-executable-symbols/Makefile
4443
run-make/extern-diff-internal-name/Makefile

tests/run-make/error-found-staticlib-instead-crate/Makefile

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// When rustc is looking for a crate but is given a staticlib instead,
2+
// the error message should be helpful and indicate precisely the cause
3+
// of the compilation failure.
4+
// See https://github.com/rust-lang/rust/pull/21978
5+
6+
use run_make_support::rustc;
7+
8+
fn main() {
9+
rustc().input("foo.rs").crate_type("staticlib").run();
10+
rustc().input("bar.rs").run_fail().assert_stderr_contains("found staticlib");
11+
}

0 commit comments

Comments
 (0)