mirror of
https://github.com/rust-lang/rust.git
synced 2026-08-02 04:45:09 -04:00
Long ago, UI tests were divided into "compile" and "run" tests. Later, the compile tests were further subdivided into "check" and "build" tests, to speed up tests that don't need a full build. The same split was never applied to incremental test revisions, so the only way to perform a check build in incremental tests is (confusingly) to use a `cfail` revision and then specify `//@ check-fail` or `//@ check-pass`. This PR makes room for dedicated check-fail and check-pass revisions by renaming the existing `cfail` and `cpass` revisions to `bfail` and `bpass`, since they currently perform a full build.
8 lines
206 B
Rust
8 lines
206 B
Rust
//@ revisions: bfail1 bfail2
|
|
//@ failure-status: 101
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#[rustc_delayed_bug_from_inside_query]
|
|
fn main() {} //~ ERROR delayed bug triggered by #[rustc_delayed_bug_from_inside_query]
|