summaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-12-24 22:58:29 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-12-24 22:58:29 +0000
commitff93d50142748e85979c8ebb6be3bf12d13d7169 (patch)
tree55872846d8798e42dbe125f48706acb7b51d9345 /tests/runtests.pl
parent618d2ff006c39c3ff4542885db89f6f90b184f5e (diff)
+ Added --strip-trailing-cr option to diff in runtests.pl, so that
the test suite will work in Windows. + Converted some CR's to LF's in print.css and adjusted test suite accordingly. git-svn-id: https://pandoc.googlecode.com/svn/trunk@290 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests/runtests.pl')
-rw-r--r--tests/runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 662862e44..f37ec31ba 100644
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -23,7 +23,7 @@ sub test_results
my $testname = $_[0];
my $output = $_[1];
my $norm = $_[2];
- my $diffoutput = `diff $output $norm`;
+ my $diffoutput = `diff --strip-trailing-cr $output $norm`;
if ($diffoutput eq "")
{
print "PASSED\n";