aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-02-27 03:57:03 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-02-27 03:57:03 +0000
commit432b7b23907e1f3974581e85276fdacb1a8899e2 (patch)
tree879b60835121377b3bfab9f8632070db21995170 /tests
parent07ae5bc264d1c280dc8c7e0798a0df4bd560ab74 (diff)
downloadpandoc-432b7b23907e1f3974581e85276fdacb1a8899e2.tar.gz
Reformatting and comments in RunTests.hs. (Eric Kow)
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1848 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests')
-rw-r--r--tests/RunTests.hs9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/RunTests.hs b/tests/RunTests.hs
index e57d8ddd9..b880a0627 100644
--- a/tests/RunTests.hs
+++ b/tests/RunTests.hs
@@ -107,7 +107,14 @@ main = do
r13s <- if runLhsTests
then mapM runLhsReaderTest lhsReaderFormats
else putStrLn "Skipping lhs reader tests because they presuppose highlighting support" >> return []
- let results = r1s ++ [r2, r3, r4, r5, r6, r7, r7a, r8, r8a, r9, r10, r11] ++ r12s ++ r13s
+ let results = r1s ++
+ [ r2, r3, r4, r5 -- S5
+ , r6, r7, r7a -- markdown reader
+ , r8, r8a -- rst
+ , r9 -- html
+ , r10 -- latex
+ , r11 -- native
+ ] ++ r12s ++ r13s
if all id results
then do
putStrLn "\nAll tests passed."