rs6000: Fix pr18096-1.c test
authorSegher Boessenkool <segher@kernel.crashing.org>
Mon, 18 Mar 2019 17:43:34 +0000 (18:43 +0100)
committerSegher Boessenkool <segher@gcc.gnu.org>
Mon, 18 Mar 2019 17:43:34 +0000 (18:43 +0100)
For the big stack frame in the test GCC used to say

pr18096-1.c:7:6: error: total size of local objects too large

but now it says

pr18096-1.c:7:6: error: total size of local objects 2147483647 exceeds maximum 2147483392

Let's just allow both in the test.

gcc/testsuite/
* gcc.target/powerpc/pr18096-1.c: Allow an error message that says
"exceeds" instead of just one that talks about "too large".

From-SVN: r269770

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/powerpc/pr18096-1.c

index 012f2a059b884ffcec7739767ea978d12e0b116c..7bb8cb7995a8eb4ad0bb7edc2559f103d508ed1b 100644 (file)
@@ -1,3 +1,8 @@
+2019-03-18  Segher Boessenkool  <segher@kernel.crashing.org>
+
+       * gcc.target/powerpc/pr18096-1.c: Allow an error message that says
+       "exceeds" instead of just one that talks about "too large".
+
 2019-03-18  Richard Sandiford  <richard.sandiford@arm.com>
 
        * gcc.target/aarch64/sve/cost_model_1.c: New test.
index 74612f39378b7776a4a7e11a485db02e63c98fb8..73a9ea1eb292a3e9d22a7fd22c986018f8139e77 100644 (file)
@@ -4,7 +4,7 @@
 
 void f(char*);
 
-void mkcatdefs(char *fname) /* { dg-error "too large" "stack frame too large" } */
+void mkcatdefs(char *fname) /* { dg-error "too large|exceeds" "stack frame too large" } */
 {
   char line [2147483647];
   f(line);