summaryrefslogtreecommitdiff
path: root/tests/test_driver.pl
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2002-09-10 20:59:03 +0000
committerPaul Smith <psmith@gnu.org>2002-09-10 20:59:03 +0000
commit5297a83b276f09de626d678d1fae80f5e76db08d (patch)
tree679098eada52d79bda0a5747f4232a54334ceddc /tests/test_driver.pl
parent7ea029a07c02b9401cb3d88566eac41959b84c11 (diff)
downloadgunmake-5297a83b276f09de626d678d1fae80f5e76db08d.tar.gz
Have the test driver check for the new format of the time skew error
messages.
Diffstat (limited to 'tests/test_driver.pl')
-rw-r--r--tests/test_driver.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_driver.pl b/tests/test_driver.pl
index 38ee54a..a3d4d4e 100644
--- a/tests/test_driver.pl
+++ b/tests/test_driver.pl
@@ -588,8 +588,8 @@ sub compare_output
# For make, get rid of any time skew error before comparing--too bad this
# has to go into the "generic" driver code :-/
- $slurp =~ s/^.*modification time in the future.*\n//g;
- $slurp =~ s/\n.*modification time in the future.*//g;
+ $slurp =~ s/^.*modification time .*in the future.*\n//g;
+ $slurp =~ s/\n.*modification time .*in the future.*//g;
$slurp =~ s/^.*Clock skew detected.*\n//g;
$slurp =~ s/\n.*Clock skew detected.*//g;