summaryrefslogtreecommitdiff
path: root/runtest.pl.in
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-03-13 21:41:47 +0000
committerChris Wilson <chris+github@qwirx.com>2008-03-13 21:41:47 +0000
commit74ef036cef200c892b65615c479f99ed23c2628e (patch)
treeb7c0cf3900298a1a9e0f499fc0bfcea1d4f994f7 /runtest.pl.in
parentf390b966b4de620f64ed79639aa0f2831899f3c9 (diff)
Remove \r from test output so that PASSED tests are correctly detected
as PASSED on Windows.
Diffstat (limited to 'runtest.pl.in')
-rwxr-xr-xruntest.pl.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtest.pl.in b/runtest.pl.in
index e03d6559..1697d4c8 100755
--- a/runtest.pl.in
+++ b/runtest.pl.in
@@ -124,6 +124,7 @@ sub runtest
close RESULTS;
chomp $last;
+ $last =~ s/\r//;
push @results, "$t: $last";
if ($last ne "PASSED")