diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-10-09 13:31:33 +1100 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-10-10 09:05:58 +1100 |
| commit | 15c1a6b9e02a0b948c526765f3bc28fd3b690bcb (patch) | |
| tree | 51f8ea225bd3f9438de48b84cfeef62c03d50669 | |
| parent | bf9a1c8a193fc373897196321215794c8bebbeec (diff) | |
| download | rust-15c1a6b9e02a0b948c526765f3bc28fd3b690bcb.tar.gz rust-15c1a6b9e02a0b948c526765f3bc28fd3b690bcb.zip | |
Add a ui test with an assertion that has a really long condition.
The `\n` in the output is a little surprising. The next commit will deal with it.
| -rw-r--r-- | tests/ui/macros/assert-long-condition.rs | 9 | ||||
| -rw-r--r-- | tests/ui/macros/assert-long-condition.run.stderr | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/macros/assert-long-condition.rs b/tests/ui/macros/assert-long-condition.rs new file mode 100644 index 00000000000..1974ec9d6db --- /dev/null +++ b/tests/ui/macros/assert-long-condition.rs @@ -0,0 +1,9 @@ +// run-fail +// check-run-results +// exec-env:RUST_BACKTRACE=0 +// ignore-emscripten no processes +// ignore-tidy-linelength + +fn main() { + assert!(1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20 + 21 + 22 + 23 + 24 + 25 == 0); +} diff --git a/tests/ui/macros/assert-long-condition.run.stderr b/tests/ui/macros/assert-long-condition.run.stderr new file mode 100644 index 00000000000..f692a0be8f1 --- /dev/null +++ b/tests/ui/macros/assert-long-condition.run.stderr @@ -0,0 +1,3 @@ +thread 'main' panicked at $DIR/assert-long-condition.rs:8:5: +assertion failed: 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18\n + 19 + 20 + 21 + 22 + 23 + 24 + 25 == 0 +note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace |
