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 96c4d5770643bc414903c6e711d868a78de74276..5cb3a7e96bc96375bb5926a8d638f979f920ce02 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 52f92ae145de75cb05d2c60b05f3d3e4a999d28e..e66fa736e106d2b8bfa1d8cfdb5539e1ac8fdad6 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 c229614a3d88e329eb24bc424926c5c70703a98b..252bea67f996cd706fbe03393311f6968ad3f565 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 4c7253ce212a23a3375e90131ab2075c9e608d95..707e63048924bf68249d92416075eea12dd22b1c 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 43b0f31b2ffba47881534ed1bd683371cdc21986..ceeae9088216470e591632ce417386eaf4d02a95 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" } } */