1
Fork 0

Remove treat-err-as-bug delay_span_bug test from run-make-fulldeps

This commit is contained in:
Santiago Pastorino 2021-02-07 01:50:17 -03:00
parent 1d35960fe1
commit 6d9efd17e5
No known key found for this signature in database
GPG key ID: 8131A24E0C79EFAF
2 changed files with 0 additions and 11 deletions

View file

@ -1,7 +0,0 @@
-include ../tools.mk
all:
$(RUSTC) err.rs -Z treat-err-as-bug 2>&1 \
| $(CGREP) "panicked at 'aborting due to \`-Z treat-err-as-bug=1\`'"
$(RUSTC) delay_span_bug.rs -Z treat-err-as-bug 2>&1 \
| $(CGREP) "panicked at 'aborting due to \`-Z treat-err-as-bug=1\`'"

View file

@ -1,4 +0,0 @@
#![feature(rustc_attrs)]
#[rustc_error(delay_span_bug_from_inside_query)]
fn main() {}