]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gccrs: Fix output line ending patterns.
authorArthur Cohen <arthur.cohen@embecosm.com>
Mon, 22 Jan 2024 13:04:11 +0000 (14:04 +0100)
committerArthur Cohen <arthur.cohen@embecosm.com>
Tue, 30 Jan 2024 11:36:52 +0000 (12:36 +0100)
gcc/testsuite/ChangeLog:

* rust/execute/torture/builtin_macros1.rs: Fix output pattern.
* rust/execute/torture/coercion3.rs: Likewise.
* rust/execute/torture/issue-2080.rs: Likewise.
* rust/execute/torture/issue-2179.rs: Likewise.
* rust/execute/torture/issue-2180.rs: Likewise.
* rust/execute/torture/iter1.rs: Likewise.

gcc/testsuite/rust/execute/torture/builtin_macros1.rs
gcc/testsuite/rust/execute/torture/coercion3.rs
gcc/testsuite/rust/execute/torture/issue-2080.rs
gcc/testsuite/rust/execute/torture/issue-2179.rs
gcc/testsuite/rust/execute/torture/issue-2180.rs
gcc/testsuite/rust/execute/torture/iter1.rs

index f5dcbd6423c5f1e4f2f44b53e5eee22d2a036a37..04d00581897acd589560d775c990f75b270806e5 100644 (file)
@@ -1,4 +1,4 @@
-// { dg-output "rust/execute/torture/builtin_macros1.rs\r*" }
+// { dg-output "rust/execute/torture/builtin_macros1.rs\r*\n" }
 #![feature(rustc_attrs)]
 
 #[rustc_builtin_macro]
index e88338ae2f3c62da8b1b0471e9f3018e2eec5500..0686056de4e851c4300efd09d523dc9ce1c6d22b 100644 (file)
@@ -1,4 +1,4 @@
-// { dg-output "123\n" }
+// { dg-output "123\r*\n" }
 #[lang = "sized"]
 pub trait Sized {}
 
index dbdbf41ff92107d117832b13bd216a5fe1adc406..5fdf911efe1fe4a67c77a9ce04f64d97c67c57cb 100644 (file)
@@ -1,4 +1,4 @@
-// { dg-output "hello world: gccrs\n" }
+// { dg-output "hello world: gccrs\r*\n" }
 // { dg-additional-options "-w" }
 static TEST_1: &str = "gccrs";
 static TEST_2: i32 = 123;
index 86ed11f51c59bc74b0765469ec232549f424cc27..8a5ec1bf32e2cb25651448b61ae6372916d1bd6d 100644 (file)
@@ -1,4 +1,4 @@
-// { dg-output "123\n" }
+// { dg-output "123\r*\n" }
 #[lang = "sized"]
 pub trait Sized {}
 
index beed69620a0d1aca9b1df24d19d83c1d3984677b..6bd71720e48181429e662f7401511f8059da56cf 100644 (file)
@@ -1,4 +1,4 @@
-// { dg-output "123\n" }
+// { dg-output "123\r*\n" }
 #[lang = "sized"]
 pub trait Sized {}
 
index 08f06456e363339099fe773f8f50bedc547d3eb0..c3b6c7bc3f899530f6b487fbd19a6d7bb4536fbc 100644 (file)
@@ -1,4 +1,4 @@
-// { dg-output "1\n2\n" }
+// { dg-output "1\r*\n2\r*\n" }
 #![feature(intrinsics)]
 
 pub use option::Option::{self, None, Some};