aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2006-02-03 12:06:30 -0700
committerJeff Law <law@gcc.gnu.org>2006-02-03 12:06:30 -0700
commitc57bf6210beafda78650af0e0e1647833f42d174 (patch)
tree13047a56aaaf5cc8246a7f6587faf0beedd6ae52 /gcc
parentf05ee80cc19a50363223db3611135459f2bb9c18 (diff)
downloadgcc-c57bf6210beafda78650af0e0e1647833f42d174.zip
gcc-c57bf6210beafda78650af0e0e1647833f42d174.tar.gz
gcc-c57bf6210beafda78650af0e0e1647833f42d174.tar.bz2
gcc-dg.exp (cleanup-rtl-dump): Fix dump file regexp to handle more than 100 dump files.
* lib/gcc-dg.exp (cleanup-rtl-dump): Fix dump file regexp to handle more than 100 dump files. (cleanup-tree-dump, cleanup-ipa-dump): Likewise. * lib/scantree.exp (scan-tree-dump): Likewise. (scan-tree-dump-times, scan-tree-dump-not): Likewise. (scan-tree-dump-dem, scan-tree-dump-dem-not): Likewise. * lib/scanipa.exp (scan-ipa-dump): Likewise. (scan-ipa-dump-times, scan-ipa-dump-not): Likewise. (scan-ipa-dump-dem, scan-ipa-dump-dem-not): Likewise. From-SVN: r110553
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog12
-rw-r--r--gcc/testsuite/lib/gcc-dg.exp6
-rw-r--r--gcc/testsuite/lib/scanipa.exp20
-rw-r--r--gcc/testsuite/lib/scantree.exp20
4 files changed, 35 insertions, 23 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 3852960..416187f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,15 @@
+2006-02-03 Jeff Law <law@redhat.com>
+
+ * lib/gcc-dg.exp (cleanup-rtl-dump): Fix dump file regexp to
+ handle more than 100 dump files.
+ (cleanup-tree-dump, cleanup-ipa-dump): Likewise.
+ * lib/scantree.exp (scan-tree-dump): Likewise.
+ (scan-tree-dump-times, scan-tree-dump-not): Likewise.
+ (scan-tree-dump-dem, scan-tree-dump-dem-not): Likewise.
+ * lib/scanipa.exp (scan-ipa-dump): Likewise.
+ (scan-ipa-dump-times, scan-ipa-dump-not): Likewise.
+ (scan-ipa-dump-dem, scan-ipa-dump-dem-not): Likewise.
+
2006-02-03 Diego Novillo <dnovillo@redhat.com>
* gcc.dg/gomp/pr25990.c: Replace with pre-processed version.
diff --git a/gcc/testsuite/lib/gcc-dg.exp b/gcc/testsuite/lib/gcc-dg.exp
index 6fb94e0..6a22881 100644
--- a/gcc/testsuite/lib/gcc-dg.exp
+++ b/gcc/testsuite/lib/gcc-dg.exp
@@ -344,21 +344,21 @@ proc cleanup-repo-files { } {
#
# SUFFIX is the filename suffix pattern.
proc cleanup-rtl-dump { suffix } {
- cleanup-dump "\[0-9\]\[0-9\].$suffix"
+ cleanup-dump "\[0-9\]\*.$suffix"
}
# Remove a specific tree dump file for the current test.
#
# SUFFIX is the tree dump file suffix pattern.
proc cleanup-tree-dump { suffix } {
- cleanup-dump "t\[0-9\]\[0-9\].$suffix"
+ cleanup-dump "t\[0-9\]\*.$suffix"
}
# Remove a specific ipa dump file for the current test.
#
# SUFFIX is the ipa dump file suffix pattern.
proc cleanup-ipa-dump { suffix } {
- cleanup-dump "i\[0-9\]\[0-9\].$suffix"
+ cleanup-dump "i\[0-9\]\*.$suffix"
}
# Remove all dump files with the provided suffix.
diff --git a/gcc/testsuite/lib/scanipa.exp b/gcc/testsuite/lib/scanipa.exp
index 97688a9..7f9c031 100644
--- a/gcc/testsuite/lib/scanipa.exp
+++ b/gcc/testsuite/lib/scanipa.exp
@@ -36,9 +36,9 @@ proc scan-ipa-dump { args } {
return
}
if { [llength $args] >= 3 } {
- scan-dump "ipa" [lindex $args 0] "i\[0-9\]\[0-9\].[lindex $args 1]" [lindex $args 2]
+ scan-dump "ipa" [lindex $args 0] "i\[0-9\]\*.[lindex $args 1]" [lindex $args 2]
} else {
- scan-dump "ipa" [lindex $args 0] "i\[0-9\]\[0-9\].[lindex $args 1]"
+ scan-dump "ipa" [lindex $args 0] "i\[0-9\]\*.[lindex $args 1]"
}
}
@@ -59,10 +59,10 @@ proc scan-ipa-dump-times { args } {
}
if { [llength $args] >= 4 } {
scan-dump-times "ipa" [lindex $args 0] [lindex $args 1] \
- "i\[0-9\]\[0-9\].[lindex $args 2]" [lindex $args 3]
+ "i\[0-9\]\*.[lindex $args 2]" [lindex $args 3]
} else {
scan-dump-times "ipa" [lindex $args 0] [lindex $args 1] \
- "i\[0-9\]\[0-9\].[lindex $args 2]"
+ "i\[0-9\]\*.[lindex $args 2]"
}
}
@@ -83,10 +83,10 @@ proc scan-ipa-dump-not { args } {
}
if { [llength $args] >= 3 } {
scan-dump-not "ipa" [lindex $args 0] \
- "i\[0-9\]\[0-9\].[lindex $args 1]" [lindex $args 2]
+ "i\[0-9\]\*.[lindex $args 1]" [lindex $args 2]
} else {
scan-dump-not "ipa" [lindex $args 0] \
- "i\[0-9\]\[0-9\].[lindex $args 1]"
+ "i\[0-9\]\*.[lindex $args 1]"
}
}
@@ -108,10 +108,10 @@ proc scan-ipa-dump-dem { args } {
}
if { [llength $args] >= 3 } {
scan-dump-dem "ipa" [lindex $args 0] \
- "i\[0-9\]\[0-9\].[lindex $args 1]" [lindex $args 2]
+ "i\[0-9\]\*.[lindex $args 1]" [lindex $args 2]
} else {
scan-dump-dem "ipa" [lindex $args 0] \
- "i\[0-9\]\[0-9\].[lindex $args 1]"
+ "i\[0-9\]\*.[lindex $args 1]"
}
}
@@ -132,10 +132,10 @@ proc scan-ipa-dump-dem-not { args } {
}
if { [llength $args] >= 3 } {
scan-dump-dem-not "ipa" [lindex $args 0] \
- "i\[0-9\]\[0-9\].[lindex $args 1]" \
+ "i\[0-9\]\*.[lindex $args 1]" \
[lindex $args 2]
} else {
scan-dump-dem-not "ipa" [lindex $args 0] \
- "i\[0-9\]\[0-9\].[lindex $args 1]"
+ "i\[0-9\]\*.[lindex $args 1]"
}
}
diff --git a/gcc/testsuite/lib/scantree.exp b/gcc/testsuite/lib/scantree.exp
index d0f5796..7bbd2c6 100644
--- a/gcc/testsuite/lib/scantree.exp
+++ b/gcc/testsuite/lib/scantree.exp
@@ -36,9 +36,9 @@ proc scan-tree-dump { args } {
return
}
if { [llength $args] >= 3 } {
- scan-dump "tree" [lindex $args 0] "t\[0-9\]\[0-9\].[lindex $args 1]" [lindex $args 2]
+ scan-dump "tree" [lindex $args 0] "t\[0-9\]\*.[lindex $args 1]" [lindex $args 2]
} else {
- scan-dump "tree" [lindex $args 0] "t\[0-9\]\[0-9\].[lindex $args 1]"
+ scan-dump "tree" [lindex $args 0] "t\[0-9\]\*.[lindex $args 1]"
}
}
@@ -59,10 +59,10 @@ proc scan-tree-dump-times { args } {
}
if { [llength $args] >= 4 } {
scan-dump-times "tree" [lindex $args 0] [lindex $args 1] \
- "t\[0-9\]\[0-9\].[lindex $args 2]" [lindex $args 3]
+ "t\[0-9\]\*.[lindex $args 2]" [lindex $args 3]
} else {
scan-dump-times "tree" [lindex $args 0] [lindex $args 1] \
- "t\[0-9\]\[0-9\].[lindex $args 2]"
+ "t\[0-9\]\*.[lindex $args 2]"
}
}
@@ -83,10 +83,10 @@ proc scan-tree-dump-not { args } {
}
if { [llength $args] >= 3 } {
scan-dump-not "tree" [lindex $args 0] \
- "t\[0-9\]\[0-9\].[lindex $args 1]" [lindex $args 2]
+ "t\[0-9\]\*.[lindex $args 1]" [lindex $args 2]
} else {
scan-dump-not "tree" [lindex $args 0] \
- "t\[0-9\]\[0-9\].[lindex $args 1]"
+ "t\[0-9\]\*.[lindex $args 1]"
}
}
@@ -108,10 +108,10 @@ proc scan-tree-dump-dem { args } {
}
if { [llength $args] >= 3 } {
scan-dump-dem "tree" [lindex $args 0] \
- "t\[0-9\]\[0-9\].[lindex $args 1]" [lindex $args 2]
+ "t\[0-9\]\*.[lindex $args 1]" [lindex $args 2]
} else {
scan-dump-dem "tree" [lindex $args 0] \
- "t\[0-9\]\[0-9\].[lindex $args 1]"
+ "t\[0-9\]\*.[lindex $args 1]"
}
}
@@ -132,10 +132,10 @@ proc scan-tree-dump-dem-not { args } {
}
if { [llength $args] >= 3 } {
scan-dump-dem-not "tree" [lindex $args 0] \
- "t\[0-9\]\[0-9\].[lindex $args 1]" \
+ "t\[0-9\]\*.[lindex $args 1]" \
[lindex $args 2]
} else {
scan-dump-dem-not "tree" [lindex $args 0] \
- "t\[0-9\]\[0-9\].[lindex $args 1]"
+ "t\[0-9\]\*.[lindex $args 1]"
}
}