diff options
author | Martin Liska <mliska@suse.cz> | 2020-07-10 14:45:13 +0200 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2020-07-10 14:45:13 +0200 |
commit | e969e9be88e83871ef66f4cd1592db7e8ae6244b (patch) | |
tree | 288727919184d3c6a5ce190effa830c4874125c1 | |
parent | 6324c52bba490baa17b6001a6d555ff8bef939d6 (diff) | |
download | gcc-e969e9be88e83871ef66f4cd1592db7e8ae6244b.zip gcc-e969e9be88e83871ef66f4cd1592db7e8ae6244b.tar.gz gcc-e969e9be88e83871ef66f4cd1592db7e8ae6244b.tar.bz2 |
testsuite: Fix WPA scanning.
gcc/testsuite/ChangeLog:
PR gcov-profile/96148
* lib/scanwpaipa.exp: Fix wpa dump file suffix the same way
as other in the file.
-rw-r--r-- | gcc/testsuite/lib/scanwpaipa.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/lib/scanwpaipa.exp b/gcc/testsuite/lib/scanwpaipa.exp index cc50cc4..c0706ff 100644 --- a/gcc/testsuite/lib/scanwpaipa.exp +++ b/gcc/testsuite/lib/scanwpaipa.exp @@ -60,11 +60,11 @@ proc scan-pgo-wpa-ipa-dump { args } { } if { [llength $args] >= 3 } { scan-dump "pgo-wpa-ipa" [lindex $args 0] \ - "\[0-9\]\[0-9\]\[0-9\]i.[lindex $args 1]" ".x02.wpa" \ + "\[0-9\]\[0-9\]\[0-9\]i.[lindex $args 1]" ".wpa" \ [lindex $args 2] } else { scan-dump "pgo-wpa-ipa" [lindex $args 0] \ - "\[0-9\]\[0-9\]\[0-9\]i.[lindex $args 1]" ".x02.wpa" + "\[0-9\]\[0-9\]\[0-9\]i.[lindex $args 1]" ".wpa" } } |