diff options
| author | Scott McMurray <scottmcm@users.noreply.github.com> | 2021-01-16 14:52:48 -0800 |
|---|---|---|
| committer | Scott McMurray <scottmcm@users.noreply.github.com> | 2021-01-16 14:52:48 -0800 |
| commit | 6bcaba9f51cc345435cb8fdf085fecda7eeeed61 (patch) | |
| tree | 74b7a25df36a183d91ae229333042e9e3ce5ec9c | |
| parent | 132307c685de0e1d3706a342a5bc36887e34e4ea (diff) | |
| download | rust-6bcaba9f51cc345435cb8fdf085fecda7eeeed61.tar.gz rust-6bcaba9f51cc345435cb8fdf085fecda7eeeed61.zip | |
Try ignore-debug in the codegen test
This fixed things the last time I had a problem like this. And plausibly will here too -- the check it's failing on is for the high bit being set in the length of the slice, which is a check that's only in a debug_assert.
| -rw-r--r-- | src/test/codegen/slice-as_chunks.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/codegen/slice-as_chunks.rs b/src/test/codegen/slice-as_chunks.rs index 7b857879eea..48e3f73fc86 100644 --- a/src/test/codegen/slice-as_chunks.rs +++ b/src/test/codegen/slice-as_chunks.rs @@ -1,6 +1,7 @@ // no-system-llvm // compile-flags: -O // only-64bit (because the LLVM type of i64 for usize shows up) +// ignore-debug: the debug assertions get in the way #![crate_type = "lib"] #![feature(slice_as_chunks)] |
