Skip to content

Commit 67ebcd0

Browse files
committed
Ignores tests for the parallel frontend
1 parent 19759e1 commit 67ebcd0

File tree

66 files changed

+66
-65
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+66
-65
lines changed

tests/ui/async-await/mutually-recursive-async-impl-trait-type.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//@ edition:2018
22
// Test that impl trait does not allow creating recursive types that are
33
// otherwise forbidden when using `async` and `await`.
4-
4+
//@ ignore-parallel-frontend query cycle
55
async fn rec_1() { //~ ERROR recursion in an async fn
66
rec_2().await;
77
}

tests/ui/const-generics/issues/issue-100313.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ dont-require-annotations: NOTE
2-
2+
//@ ignore-parallel-frontend different alloc ids
33
#![allow(incomplete_features)]
44
#![feature(adt_const_params, unsized_const_params)]
55

tests/ui/const-generics/min_const_generics/invalid-patterns.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//@ stderr-per-bitwidth
22
//@ dont-require-annotations: NOTE
3-
3+
//@ ignore-parallel-frontend different alloc ids
44
use std::mem::transmute;
55

66
fn get_flag<const FlagSet: bool, const ShortName: char>() -> Option<char> {

tests/ui/const-ptr/forbidden_slices.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Strip out raw byte dumps to make comparison platform-independent:
22
//@ normalize-stderr: "(the raw bytes of the constant) \(size: [0-9]*, align: [0-9]*\)" -> "$1 (size: $$SIZE, align: $$ALIGN)"
33
//@ normalize-stderr: "([0-9a-f][0-9a-f] |╾─*A(LLOC)?[0-9]+(\+[a-z0-9]+)?(<imm>)?─*╼ )+ *│.*" -> "HEX_DUMP"
4-
4+
//@ ignore-parallel-frontend different alloc ids
55
#![feature(
66
slice_from_ptr_range,
77
const_slice_from_ptr_range,

tests/ui/const-ptr/out_of_bounds_read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
fn main() {
22
use std::ptr;
3-
3+
//@ ignore-parallel-frontend different alloc ids
44
const DATA: [u32; 1] = [42];
55

66
const PAST_END_PTR: *const u32 = unsafe { DATA.as_ptr().add(1) };

tests/ui/consts/chained-constants-stackoverflow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ run-pass
2-
2+
//@ ignore-parallel-frontend queries overflow the depth limit
33
// https://github.com/rust-lang/rust/issues/34997
44

55
pub const CST_1: u32 = 0;

tests/ui/consts/const-compare-bytes-ub.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ check-fail
2-
2+
//@ ignore-parallel-frontend different alloc ids
33
#![feature(core_intrinsics, const_cmp)]
44
use std::intrinsics::compare_bytes;
55
use std::mem::MaybeUninit;

tests/ui/consts/const-err-enum-discriminant.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ stderr-per-bitwidth
2-
2+
//@ ignore-parallel-frontend different alloc ids
33
#[derive(Copy, Clone)]
44
union Foo {
55
a: isize,

tests/ui/consts/const-eval/c-variadic-fail.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ build-fail
2-
2+
//@ ignore-parallel-frontend different alloc ids
33
#![feature(c_variadic)]
44
#![feature(const_c_variadic)]
55
#![feature(const_trait_impl)]

tests/ui/consts/const-eval/const-pointer-values-in-various-types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//@ only-x86_64
22
//@ stderr-per-bitwidth
33
//@ dont-require-annotations: NOTE
4-
4+
//@ ignore-parallel-frontend different alloc ids
55
#[repr(C)]
66
union Nonsense {
77
u: usize,

0 commit comments

Comments
 (0)