disable gcc for now

This commit is contained in:
Jana Dönszelmann 2025-10-27 11:46:02 +01:00
parent f7e453e2fa
commit 3cf74cb2a4
No known key found for this signature in database
10 changed files with 10 additions and 0 deletions

View file

@ -2,6 +2,7 @@
//@ check-run-results
//@ aux-build: codegen2.rs
//@ compile-flags: -O
//@ ignore-backends: gcc
// Tests whether calling EIIs works with the declaration in another crate.
#![feature(eii)]

View file

@ -1,5 +1,6 @@
//@ run-pass
//@ check-run-results
//@ ignore-backends: gcc
// Tests whether calling EIIs works with the declaration in the same crate.
#![feature(eii)]

View file

@ -2,6 +2,7 @@
//@ aux-build: decl_with_default.rs
//@ run-pass
//@ check-run-results
//@ ignore-backends: gcc
// Tests EIIs with default implementations.
// When there's no explicit declaration, the default should be called from the declaring crate.
#![feature(eii)]

View file

@ -3,6 +3,7 @@
//@ aux-build: impl1.rs
//@ run-pass
//@ check-run-results
//@ ignore-backends: gcc
// Tests EIIs with default implementations.
// When an explicit implementation is given in one dependency, and the declaration is in another,
// the explicit implementation is preferred.

View file

@ -1,5 +1,6 @@
//@ run-pass
//@ check-run-results
//@ ignore-backends: gcc
// Tests EIIs with default implementations.
// In the same crate, when there's no explicit declaration, the default should be called.
#![feature(eii)]

View file

@ -1,5 +1,6 @@
//@ run-pass
//@ check-run-results
//@ ignore-backends: gcc
// Tests EIIs with default implementations.
// In the same crate, the explicit implementation should get priority.
#![feature(eii)]

View file

@ -1,6 +1,7 @@
//@ no-prefer-dynamic
//@ aux-build: impl1.rs
//@ aux-build: impl2.rs
//@ ignore-backends: gcc
// tests that EIIs error properly, even if the conflicting implementations live in another crate.
#![feature(eii)]

View file

@ -2,6 +2,7 @@
//@ aux-build: impl1.rs
//@ aux-build: impl2.rs
//@ aux-build: impl3.rs
//@ ignore-backends: gcc
// Tests the error message when there are multiple implementations of an EII in many crates.
#![feature(eii)]

View file

@ -3,6 +3,7 @@
//@ aux-build: impl2.rs
//@ aux-build: impl3.rs
//@ aux-build: impl4.rs
//@ ignore-backends: gcc
// Tests the error message when there are multiple implementations of an EII in many crates.
#![feature(eii)]

View file

@ -1,6 +1,7 @@
//@ run-pass
//@ check-run-results
//@ aux-build: codegen1.rs
//@ ignore-backends: gcc
// Tests whether re-exports work.
#![feature(eii)]