Skip to content

Commit 0d5cc8e

Browse files
committed
tests: ignore-debug -> ignore-std-debug-assertions
1 parent 3870022 commit 0d5cc8e

13 files changed

+16
-13
lines changed

tests/codegen/binary-heap-peek-mut-pop-no-panic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ compile-flags: -O
2-
//@ ignore-debug
2+
//@ ignore-std-debug-assertions
33
#![crate_type = "lib"]
44

55
use std::collections::binary_heap::PeekMut;

tests/codegen/mem-replace-big-type.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
// known to be `1` after inlining).
55

66
//@ compile-flags: -C no-prepopulate-passes -Zinline-mir=no
7-
//@ ignore-debug: precondition checks in ptr::read make them a bad candidate for MIR inlining
7+
//@ ignore-std-debug-assertions
8+
// Reason: precondition checks in ptr::read make them a bad candidate for MIR inlining
89
//@ needs-deterministic-layouts
910

1011
#![crate_type = "lib"]

tests/codegen/mem-replace-simple-type.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//@ compile-flags: -O -C no-prepopulate-passes
22
//@ only-x86_64 (to not worry about usize differing)
3-
//@ ignore-debug: precondition checks make mem::replace not a candidate for MIR inlining
3+
//@ ignore-std-debug-assertions
4+
// Reason: precondition checks make mem::replace not a candidate for MIR inlining
45

56
#![crate_type = "lib"]
67

tests/codegen/slice-reverse.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//@ compile-flags: -O
22
//@ only-x86_64
3-
//@ ignore-debug: debug assertions prevent generating shufflevector
3+
//@ ignore-std-debug-assertions (debug assertions prevent generating shufflevector)
44

55
#![crate_type = "lib"]
66

tests/codegen/vec-in-place.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//@ ignore-debug: FIXME: checks for call detect scoped noalias metadata
1+
//@ ignore-std-debug-assertions (FIXME: checks for call detect scoped noalias metadata)
22
//@ compile-flags: -O -Z merge-functions=disabled
33
#![crate_type = "lib"]
44

tests/codegen/vec-shrink-panik.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// LLVM 17 realizes double panic is not possible and doesn't generate calls
22
// to panic_cannot_unwind.
33
//@ compile-flags: -O
4-
//@ ignore-debug: plain old debug assertions
4+
//@ ignore-std-debug-assertions (plain old debug assertions)
55
//@ needs-unwind
66
#![crate_type = "lib"]
77
#![feature(shrink_to)]

tests/codegen/vec-with-capacity.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ compile-flags: -O
2-
//@ ignore-debug
2+
//@ ignore-std-debug-assertions
33
// (with debug assertions turned on, `assert_unchecked` generates a real assertion)
44

55
#![crate_type = "lib"]

tests/codegen/vecdeque-drain.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
//@ compile-flags: -O
44
//@ needs-deterministic-layouts
5-
//@ ignore-debug: FIXME: checks for call detect scoped noalias metadata
5+
//@ ignore-std-debug-assertions (FIXME: checks for call detect scoped noalias metadata)
66

77
#![crate_type = "lib"]
88

tests/codegen/vecdeque_no_panic.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This test checks that `VecDeque::front[_mut]()` and `VecDeque::back[_mut]()` can't panic.
22

33
//@ compile-flags: -O
4-
//@ ignore-debug: plain old debug assertions
4+
//@ ignore-std-debug-assertions (plain old debug assertions)
55

66
#![crate_type = "lib"]
77

tests/mir-opt/pre-codegen/mem_replace.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// skip-filecheck
22
//@ compile-flags: -O -C debuginfo=0 -Zmir-opt-level=2 -Zinline-mir
3-
//@ ignore-debug: precondition checks on ptr::read/write are under cfg(debug_assertions)
3+
//@ ignore-std-debug-assertions
4+
// Reason: precondition checks on ptr::read/write are under cfg(debug_assertions)
45
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
56

67
#![crate_type = "lib"]

tests/mir-opt/pre-codegen/ptr_offset.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// skip-filecheck
22
//@ compile-flags: -O -C debuginfo=0 -Zmir-opt-level=2 -Zinline-mir
3-
//@ ignore-debug: precondition checks are under cfg(debug_assertions)
3+
//@ ignore-std-debug-assertions (precondition checks are under cfg(debug_assertions))
44
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
55

66
#![crate_type = "lib"]

tests/mir-opt/pre-codegen/slice_iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// skip-filecheck
22
//@ compile-flags: -O -C debuginfo=0 -Zmir-opt-level=2
33
//@ only-64bit (constants for `None::<&T>` show in the output)
4-
//@ ignore-debug: precondition checks on ptr::add are under cfg(debug_assertions)
4+
//@ ignore-std-debug-assertions (precondition checks on ptr::add are under cfg(debug_assertions))
55
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
66

77
#![crate_type = "lib"]

tests/ui/print_type_sizes/niche-filling.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//! padding and overall computed sizes can be quite different.
1010
//!
1111
//@ compile-flags: -Z print-type-sizes --crate-type lib
12-
//@ ignore-debug: debug assertions will print more types
12+
//@ ignore-std-debug-assertions (debug assertions will print more types)
1313
//@ build-pass
1414
//@ ignore-pass
1515
// ^-- needed because `--pass check` does not emit the output needed.

0 commit comments

Comments
 (0)