diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-06 15:23:33 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-06 15:23:33 +0000 |
commit | dcd79c982ca3caf0dd31920e9c2e03c45e0e29bc (patch) | |
tree | bc6d50216282ad923bc0ad786abda75101318abf /boehm-gc | |
parent | 4fc99708af021c54d1fcbad281d67723ffab7087 (diff) | |
download | gcc-dcd79c982ca3caf0dd31920e9c2e03c45e0e29bc.tar.gz |
PR testsuite/48480
* testsuite/lib/boehm-gc.exp (boehm-gc-dg-prune): Allow for path
to ranlib.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172050 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 6 | ||||
-rw-r--r-- | boehm-gc/testsuite/lib/boehm-gc.exp | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index f6b18655884..7d382b6b5f0 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +2011-04-06 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + PR testsuite/48480 + * testsuite/lib/boehm-gc.exp (boehm-gc-dg-prune): Allow for path + to ranlib. + 2011-03-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> PR boehm-gc/11412 diff --git a/boehm-gc/testsuite/lib/boehm-gc.exp b/boehm-gc/testsuite/lib/boehm-gc.exp index 2376102e9bd..c5b3e95b0f0 100644 --- a/boehm-gc/testsuite/lib/boehm-gc.exp +++ b/boehm-gc/testsuite/lib/boehm-gc.exp @@ -233,7 +233,7 @@ proc boehm-gc-dg-prune { system text } { set text [prune_gcc_output $text] # Ignore harmless Darwin ranlib warnings. - regsub -all "(^|\n)(ranlib: file: \[^\n\]* has no symbols\n?)+" $text "\\1" text + regsub -all "(^|\n)(\[^\n\]*ranlib: file: \[^\n\]* has no symbols\n?)+" $text "\\1" text return $text } |