|
From: Robert W. <rj...@du...> - 2004-01-03 18:38:58
|
The sed script in filter_stderr_basic had a -E creep in there some time recently. Any idea what that is? It's not supported by gnu sed on my Fedora Core 1 box, that's for sure, so all the tests are failing. Regards, Robert. --=20 Robert Walsh Amalgamated Durables, Inc. - "We don't make the things you buy." Email: rj...@du... |
|
From: Doug R. <df...@nl...> - 2004-01-03 18:42:47
|
Oops - that came from me. I didn't realise it was a BSD-sed thing. On Sat, 2004-01-03 at 18:38, Robert Walsh wrote: > The sed script in filter_stderr_basic had a -E creep in there some time > recently. Any idea what that is? It's not supported by gnu sed on my > Fedora Core 1 box, that's for sure, so all the tests are failing. > > Regards, > Robert. |
|
From: Robert W. <rj...@du...> - 2004-01-03 18:50:25
|
> Oops - that came from me. I didn't realise it was a BSD-sed thing.
I removed it, but the tests were still failing. I had to make this diff
to get the tests running on linux again:
7c7
< sed -E "s/(=3D=3D|--|\+\+|\*\*)[0-9]{1,5}(=3D=3D|--|\+\+|\*\*) //" =
|
---
> sed "s/\(=3D=3D\|--\|\+\+\|\*\*\)[0-9]\{1,5\}\(=3D=3D\|--\|\+\+\|\*\*\) /=
/" |
Regards,
Robert.
--=20
Robert Walsh
Amalgamated Durables, Inc. - "We don't make the things you buy."
Email: rj...@du...
|