Skip to content

Commit e7252f6

Browse files
committed
Auto merge of #49585 - GuillaumeGomez:rename-to-compile-pass, r=Mark-Simulacrum
Rename must-compile-successfully into compile-pass Fixes #49568. r? @Mark-Simulacrum
2 parents 7291829 + 812656d commit e7252f6

File tree

124 files changed

+137
-137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+137
-137
lines changed

src/test/COMPILER_TESTS.md

Lines changed: 2 additions & 2 deletions

src/test/compile-fail/closure-expected-type/expect-fn-supply-fn-multiple.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// must-compile-successfully
11+
// compile-pass
1212

1313
#![allow(warnings)]
1414

src/test/compile-fail/closure-expected-type/expect-infer-var-supply-ty-with-bound-region.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// must-compile-successfully
11+
// compile-pass
1212

1313
fn with_closure<F, A>(_: F)
1414
where F: FnOnce(A, &u32)

src/test/compile-fail/closure-expected-type/expect-infer-var-supply-ty-with-free-region.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// must-compile-successfully
11+
// compile-pass
1212

1313
fn with_closure<F, A>(_: F)
1414
where F: FnOnce(A, &u32)

src/test/compile-fail/issue-47309.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// See https://github.com/rust-lang/rust/issues/47309
1414

1515
// compile-flags:-Clink-dead-code
16-
// must-compile-successfully
16+
// compile-pass
1717

1818
#![crate_type="rlib"]
1919

src/test/compile-fail/rmeta-lib-pass.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// compile-flags: --emit=metadata
1212
// aux-build:rmeta_rlib.rs
1313
// no-prefer-dynamic
14-
// must-compile-successfully
14+
// compile-pass
1515

1616
// Check that building a metadata crate works with a dependent, rlib crate.
1717
// This is a cfail test since there is no executable to run.

src/test/compile-fail/rmeta-pass.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// compile-flags: --emit=metadata
1212
// aux-build:rmeta_meta.rs
1313
// no-prefer-dynamic
14-
// must-compile-successfully
14+
// compile-pass
1515

1616
// Check that building a metadata crate works with a dependent, metadata-only
1717
// crate.

src/test/compile-fail/rmeta-priv-warn.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// compile-flags: --emit=metadata
1212
// no-prefer-dynamic
13-
// must-compile-successfully
13+
// compile-pass
1414

1515
#[deny(warnings)]
1616

src/test/incremental-fulldeps/incremental_proc_macro.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// aux-build:incremental_proc_macro_aux.rs
1212
// ignore-stage1
1313
// revisions: cfail1 cfail2
14-
// must-compile-successfully
14+
// compile-pass
1515

1616
// This test makes sure that we still find the proc-macro registrar function
1717
// when we compile proc-macros incrementally (see #47292).

src/test/incremental/add_private_fn_at_krate_root_cc/struct_point.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// revisions:cfail1 cfail2
1616
// compile-flags: -Z query-dep-graph
1717
// aux-build:point.rs
18-
// must-compile-successfully
18+
// compile-pass
1919

2020
#![feature(rustc_attrs)]
2121
#![feature(stmt_expr_attributes)]

0 commit comments

Comments
 (0)