tests: mark import UI tests as check-pass

This commit is contained in:
SynapLink
2026-05-04 19:38:47 +02:00
parent cb40c25f6a
commit f9ddd9fdbb
9 changed files with 9 additions and 9 deletions
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
// Test that `extern crate self;` is accepted
// syntactically as an item for use in a macro.
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
extern crate self as foo;
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
//@ edition:2018
macro_rules! define_iso { () => {
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
//@ compile-flags:--cfg my_feature --check-cfg=cfg(my_feature)
#![no_std]
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
//@ aux-build:two_macros.rs
extern crate two_macros;
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
//@ aux-build:two_macros.rs
extern crate two_macros as core;
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
macro_rules! define_exported { () => {
#[macro_export]
+1 -1
View File
@@ -1,5 +1,5 @@
//@ edition:2015
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
#[macro_export(local_inner_macros)]
macro_rules! dollar_crate_exported {
+1 -1
View File
@@ -1,4 +1,4 @@
//@ build-pass (FIXME(62277): could be check-pass?)
//@ check-pass
//@ compile-flags:--extern extern_prelude --extern Vec
//@ aux-build:extern-prelude.rs
//@ aux-build:extern-prelude-vec.rs