Skip to content

Commit

Permalink
Ignore proc macro stage 1 tests
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Phlosioneer committed Mar 25, 2018
1 parent 77e2bcb commit 559b57b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/run-pass-fulldeps/compiler-calls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

// ignore-cross-compile

// FIXME: The proc-macro tests should work for stage1 when #49219 is merged.
// See also #49352.
// ignore-stage1

#![feature(rustc_private, path)]
#![feature(core)]

Expand Down
4 changes: 4 additions & 0 deletions src/test/run-pass-fulldeps/proc-macro/span-api-tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

// ignore-pretty

// FIXME: The proc-macro tests should work for stage1 when #49219 is merged.
// See also #49352.
// ignore-stage1

#![feature(proc_macro)]

#[macro_use]
Expand Down
4 changes: 4 additions & 0 deletions src/test/ui-fulldeps/proc-macro/load-panic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
// aux-build:derive-panic.rs
// compile-flags:--error-format human

// FIXME: The proc-macro tests should work for stage1 when #49219 is merged.
// See also #49352.
// ignore-stage1

#[macro_use]
extern crate derive_panic;

Expand Down

0 comments on commit 559b57b

Please sign in to comment.