rewrite and rename issue-18943 to rmake
This commit is contained in:
parent
2c7afc114d
commit
d9162fd97f
@ -52,7 +52,6 @@ run-make/issue-107094/Makefile
|
||||
run-make/issue-109934-lto-debuginfo/Makefile
|
||||
run-make/issue-14698/Makefile
|
||||
run-make/issue-15460/Makefile
|
||||
run-make/issue-18943/Makefile
|
||||
run-make/issue-22131/Makefile
|
||||
run-make/issue-25581/Makefile
|
||||
run-make/issue-26006/Makefile
|
||||
|
@ -1,7 +0,0 @@
|
||||
include ../tools.mk
|
||||
|
||||
# Regression test for ICE #18943 when compiling as lib
|
||||
|
||||
all:
|
||||
$(RUSTC) foo.rs --crate-type lib
|
||||
$(call REMOVE_RLIBS,foo) && exit 0 || exit 1
|
13
tests/run-make/lib-trait-for-trait-no-ice/rmake.rs
Normal file
13
tests/run-make/lib-trait-for-trait-no-ice/rmake.rs
Normal file
@ -0,0 +1,13 @@
|
||||
// Inside a library, implementing a trait for another trait
|
||||
// with a lifetime used to cause an internal compiler error (ICE).
|
||||
// This test checks that this bug does not make a resurgence -
|
||||
// first by ensuring successful compilation, then verifying that
|
||||
// the lib crate-type flag was actually followed.
|
||||
// See https://github.com/rust-lang/rust/issues/18943
|
||||
|
||||
use run_make_support::{count_rlibs, rustc};
|
||||
|
||||
fn main() {
|
||||
rustc().input("foo.rs").crate_type("lib").run();
|
||||
assert_eq!(count_rlibs("foo"), 1);
|
||||
}
|
@ -25,4 +25,3 @@ fn main() {
|
||||
rustc_foo.run();
|
||||
rustc_foo_panic.run();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user