testsuite: replace .* with a better regex
authorMartin Liska <mliska@suse.cz>
Tue, 1 Dec 2020 20:02:15 +0000 (21:02 +0100)
committerMartin Liska <mliska@suse.cz>
Tue, 1 Dec 2020 20:03:54 +0000 (21:03 +0100)
gcc/testsuite/ChangeLog:

* g++.dg/tree-ssa/if-to-switch-1.C: Do not allow newlines
in .* pattern.
* gcc.dg/tree-ssa/if-to-switch-1.c: Likewise.
* gcc.dg/tree-ssa/if-to-switch-2.c: Likewise.
* gcc.dg/tree-ssa/if-to-switch-3.c: Likewise.
* gcc.dg/tree-ssa/if-to-switch-5.c: Likewise.

gcc/testsuite/g++.dg/tree-ssa/if-to-switch-1.C
gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-1.c
gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-2.c
gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-3.c
gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-5.c

index 96c4d57..5cb3a7e 100644 (file)
@@ -22,4 +22,4 @@ void tree_node() {
   int g = 0;
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with \[^\n\r]\* BBs transformed into a switch statement." "iftoswitch" } } */
index 52f92ae..e66fa73 100644 (file)
@@ -32,4 +32,4 @@ int main(int argc, char **argv)
   return 0;
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with \[^\n\r]\* BBs transformed into a switch statement." "iftoswitch" } } */
index c229614..252bea6 100644 (file)
@@ -8,4 +8,4 @@ int isMyRandomCharacter(int aChar)
          aChar == 0x0020;
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with \[^\n\r]\* BBs transformed into a switch statement." "iftoswitch" } } */
index 4c7253c..707e630 100644 (file)
@@ -8,4 +8,4 @@ int IsMySuperRandomChar(int aChar)
          aChar == 0x0020 || aChar == 0x0030;
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with \[^\n\r]\* BBs transformed into a switch statement." "iftoswitch" } } */
index 43b0f31..ceeae90 100644 (file)
@@ -9,4 +9,4 @@ int crud (unsigned char c)
           || (int) c == 39) != 0);
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with \[^\n\r]\* BBs transformed into a switch statement." "iftoswitch" } } */