Skip to content

Commit cc5fb41

Browse files
committed
disable gcc for now
1 parent e5323df commit cc5fb41

File tree

10 files changed

+30
-0
lines changed

10 files changed

+30
-0
lines changed

tests/ui/eii/codegen_cross_crate.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
//@ check-run-results
33
//@ aux-build: codegen2.rs
44
//@ compile-flags: -O
5+
//@ ignore-backends: gcc
6+
// For antoyo or guillaume:
7+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
58
#![feature(eii)]
69

710
extern crate codegen2 as codegen;

tests/ui/eii/codegen_single_crate.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
//@ run-pass
22
//@ check-run-results
3+
//@ ignore-backends: gcc
4+
// For antoyo or guillaume:
5+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
36
#![feature(eii)]
47

58
#[eii]

tests/ui/eii/default/call_default.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
//@ aux-build: decl_with_default.rs
33
//@ run-pass
44
//@ check-run-results
5+
//@ ignore-backends: gcc
6+
// For antoyo or guillaume:
7+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
58
#![feature(eii)]
69

710
extern crate decl_with_default;

tests/ui/eii/default/call_impl.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
//@ aux-build: impl1.rs
44
//@ run-pass
55
//@ check-run-results
6+
//@ ignore-backends: gcc
7+
// For antoyo or guillaume:
8+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
69
#![feature(eii)]
710

811
extern crate decl_with_default;

tests/ui/eii/default/local_crate.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
//@ run-pass
22
//@ check-run-results
3+
//@ ignore-backends: gcc
4+
// For antoyo or guillaume:
5+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
36
#![feature(eii)]
47

58
#[eii(eii1)]

tests/ui/eii/default/local_crate_explicit.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
//@ run-pass
22
//@ check-run-results
3+
//@ ignore-backends: gcc
4+
// For antoyo or guillaume:
5+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
36
#![feature(eii)]
47

58
#[eii(eii1)]

tests/ui/eii/duplicate/duplicate1.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
//@ no-prefer-dynamic
22
//@ aux-build: impl1.rs
33
//@ aux-build: impl2.rs
4+
//@ ignore-backends: gcc
5+
// For antoyo or guillaume:
6+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
47
#![feature(eii)]
58

69
// has a span but in the other crate

tests/ui/eii/duplicate/duplicate2.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
//@ aux-build: impl1.rs
33
//@ aux-build: impl2.rs
44
//@ aux-build: impl3.rs
5+
//@ ignore-backends: gcc
6+
// For antoyo or guillaume:
7+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
58
#![feature(eii)]
69

710
// has a span but in the other crate

tests/ui/eii/duplicate/duplicate3.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
//@ aux-build: impl2.rs
44
//@ aux-build: impl3.rs
55
//@ aux-build: impl4.rs
6+
//@ ignore-backends: gcc
7+
// For antoyo or guillaume:
8+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
69
#![feature(eii)]
710

811
// has a span but in the other crate

tests/ui/eii/privacy1.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
//@ run-pass
22
//@ check-run-results
33
//@ aux-build: codegen1.rs
4+
//@ ignore-backends: gcc
5+
// For antoyo or guillaume:
6+
// Doesn't work on gcc when debug assertions are on, because of a cast from `__int8_t*` to `void*`
47
#![feature(eii)]
58

69
extern crate codegen1 as codegen;

0 commit comments

Comments
 (0)