about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/const-eval-query-stack.rs
AgeCommit message (Collapse)AuthorLines
2025-06-02Use the informative error as the main const eval error messageOli Scherer-1/+1
2024-12-27Remove the `-test` suffix from normalize directivesZalathar-10/+10
2024-07-11Always use a colon in `//@ normalize-*:` headersZalathar-10/+10
2024-02-16[AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives许杰友 Jieyou Xu (Joe)-13/+13
2023-08-01Auto merge of #112849 - m-ou-se:panic-message-format, r=thomccbors-1/+1
Change default panic handler message format. This changes the default panic hook's message format from: ``` thread '{thread}' panicked at '{message}', {location} ``` to ``` thread '{thread}' panicked at {location}: {message} ``` This puts the message on its own line without surrounding quotes, making it easiser to read. For example: Before: ``` thread 'main' panicked at 'env variable `IMPORTANT_PATH` should be set by `wrapper_script.sh`', src/main.rs:4:6 ``` After: ``` thread 'main' panicked at src/main.rs:4:6: env variable `IMPORTANT_PATH` should be set by `wrapper_script.sh` ``` --- See this PR by `@nyurik,` which does that for only multi-line messages (specifically because of `assert_eq`): https://github.com/rust-lang/rust/pull/111071 This is the change that does that for *all* panic messages.
2023-07-29print omitted frames count for short backtrace modeyukang-1/+1
2023-07-29Change default panic handler message format.Mara Bos-1/+1
2023-02-07Tweak ICE messageEsteban Küber-2/+1
Modify main message to be more conversational and emit one fewer note.
2023-01-11Move /src/test to /testsAlbert Larsan-0/+22