Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore proc macro stage 1 tests #49366

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should remove the FIXME - this uses the full compiler API, not proc_macro.

// 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