diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2024-12-25 22:12:17 +1100 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2024-12-27 19:58:16 +1100 |
| commit | 835fbcbcab82ce728a7233de6c32a2d206e3336c (patch) | |
| tree | e06ec1d1eff7f79075b4ee3fdce920c8c5e01658 /tests/ui/recursion | |
| parent | 5ba0dd4ef669ca7512031f1f7ee2ae19f1fd099b (diff) | |
| download | rust-835fbcbcab82ce728a7233de6c32a2d206e3336c.tar.gz rust-835fbcbcab82ce728a7233de6c32a2d206e3336c.zip | |
Remove the `-test` suffix from normalize directives
Diffstat (limited to 'tests/ui/recursion')
| -rw-r--r-- | tests/ui/recursion/issue-23122-2.rs | 2 | ||||
| -rw-r--r-- | tests/ui/recursion/issue-83150.rs | 2 | ||||
| -rw-r--r-- | tests/ui/recursion/recursion.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/recursion/issue-23122-2.rs b/tests/ui/recursion/issue-23122-2.rs index 2880b956417..3e14fa92dd0 100644 --- a/tests/ui/recursion/issue-23122-2.rs +++ b/tests/ui/recursion/issue-23122-2.rs @@ -1,4 +1,4 @@ -//@ normalize-stderr-test: "long-type-\d+" -> "long-type-hash" +//@ normalize-stderr: "long-type-\d+" -> "long-type-hash" trait Next { type Next: Next; } diff --git a/tests/ui/recursion/issue-83150.rs b/tests/ui/recursion/issue-83150.rs index e919a2d9309..ea1bef4fce3 100644 --- a/tests/ui/recursion/issue-83150.rs +++ b/tests/ui/recursion/issue-83150.rs @@ -1,7 +1,7 @@ //~ ERROR overflow evaluating the requirement `Map<&mut std::ops::Range<u8>, {closure@$DIR/issue-83150.rs:13:24: 13:27}>: Iterator` //@ build-fail //@ compile-flags: -Copt-level=0 -//@ normalize-stderr-test: "long-type-\d+" -> "long-type-hash" +//@ normalize-stderr: "long-type-\d+" -> "long-type-hash" fn main() { let mut iter = 0u8..1; diff --git a/tests/ui/recursion/recursion.rs b/tests/ui/recursion/recursion.rs index 074e9ed6947..f3c633983b1 100644 --- a/tests/ui/recursion/recursion.rs +++ b/tests/ui/recursion/recursion.rs @@ -1,6 +1,6 @@ //@ build-fail //@ compile-flags:-C overflow-checks=off -//@ normalize-stderr-test: ".nll/" -> "/" +//@ normalize-stderr: ".nll/" -> "/" enum Nil {NilValue} struct Cons<T> {head:isize, tail:T} |
