Skip to content

Commit 559b57b

Browse files
committed
Ignore proc macro stage 1 tests
A few tests related to proc-macros fail when performing stage-1 testing. This PR adds // ignore-stage1 to them, along with a FIXME. Original issue: rust-lang#49352 This should (hopefully) be fixed when rust-lang#49219 is merged.
1 parent 77e2bcb commit 559b57b

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

src/test/run-pass-fulldeps/compiler-calls.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
// ignore-cross-compile
1414

15+
// FIXME: The proc-macro tests should work for stage1 when #49219 is merged.
16+
// See also #49352.
17+
// ignore-stage1
18+
1519
#![feature(rustc_private, path)]
1620
#![feature(core)]
1721

src/test/run-pass-fulldeps/proc-macro/span-api-tests.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313

1414
// ignore-pretty
1515

16+
// FIXME: The proc-macro tests should work for stage1 when #49219 is merged.
17+
// See also #49352.
18+
// ignore-stage1
19+
1620
#![feature(proc_macro)]
1721

1822
#[macro_use]

src/test/ui-fulldeps/proc-macro/load-panic.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
// aux-build:derive-panic.rs
1212
// compile-flags:--error-format human
1313

14+
// FIXME: The proc-macro tests should work for stage1 when #49219 is merged.
15+
// See also #49352.
16+
// ignore-stage1
17+
1418
#[macro_use]
1519
extern crate derive_panic;
1620

0 commit comments

Comments
 (0)