summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-09 06:58:41 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-09 06:58:41 +0000
commit5b2868add9025689585107825e19c94f91fdd7b4 (patch)
tree369d857ecda2d91111753d72f9ba869bd361bf19 /tests
parent1780228b7c93757fbb826955a849dcd752235c80 (diff)
Minor cosmetic changes to runtests.pl ("passed" in
lowercase, to distinguish more clearly from "FAILED"). git-svn-id: https://pandoc.googlecode.com/svn/trunk@666 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests')
-rw-r--r--tests/runtests.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 282d14aeb..af0f0bc16 100644
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -26,7 +26,7 @@ sub test_results
my $diffoutput = `diff --strip-trailing-cr $output $norm`;
if ($diffoutput eq "")
{
- print "PASSED\n";
+ print "passed\n";
}
else
{
@@ -95,7 +95,7 @@ print "\nReader tests (roundtrip: X -> native -> X -> native):\n";
foreach my $format (@readformats)
{
- print "testing $format reader...";
+ print "Testing $format reader...";
`$script -r $format -w native -s -R writer.$format > tmp1.native`;
`$script -r native -w $format -s -R tmp1.native | $script -r $format -w native -s -R - > tmp2.native`;
test_results("$format reader", "tmp1.native", "tmp2.native");