diff options
| author | Nikita Popov <npopov@redhat.com> | 2023-04-11 11:22:15 +0200 |
|---|---|---|
| committer | Nikita Popov <npopov@redhat.com> | 2023-04-11 11:22:15 +0200 |
| commit | ec635c002b99371c1c45d98df0e5664bdb57a644 (patch) | |
| tree | 43035dedaaf326c2bcaeba673c481f33130ea61f /tests | |
| parent | 73f40d429317e7c9c87de0cf828d02b0442a25da (diff) | |
| download | rust-ec635c002b99371c1c45d98df0e5664bdb57a644.tar.gz rust-ec635c002b99371c1c45d98df0e5664bdb57a644.zip | |
Add ignore-debug to two tests
These don't optimize with debug assertions. For one of them, this is due to the new alignment checks, for the other I'm not sure what specifically blocks it.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/codegen/issues/issue-101082.rs | 1 | ||||
| -rw-r--r-- | tests/codegen/issues/issue-101814.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/codegen/issues/issue-101082.rs b/tests/codegen/issues/issue-101082.rs index effe8f4a60e..27387d0c119 100644 --- a/tests/codegen/issues/issue-101082.rs +++ b/tests/codegen/issues/issue-101082.rs @@ -1,5 +1,6 @@ // compile-flags: -O // min-llvm-version: 16 +// ignore-debug: the debug assertions get in the way #![crate_type = "lib"] diff --git a/tests/codegen/issues/issue-101814.rs b/tests/codegen/issues/issue-101814.rs index 4e4745ed633..13796352c02 100644 --- a/tests/codegen/issues/issue-101814.rs +++ b/tests/codegen/issues/issue-101814.rs @@ -1,5 +1,6 @@ // compile-flags: -O // min-llvm-version: 16 +// ignore-debug: the debug assertions get in the way #![crate_type = "lib"] |
