summaryrefslogtreecommitdiff
path: root/tests/RunTests.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2010-11-28 10:02:40 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2010-11-28 10:03:05 -0800
commit68d38db19468c6a9bb7a4676dd072e7f81f619f2 (patch)
tree450b60caaa6d6734a84bc7868732426b417d99bb /tests/RunTests.hs
parent61b16116ce3c2ea672a753063f0fda89d32e3d1e (diff)
Revamped tests, using markdown output instead of HTML.
This is easier to inspect.
Diffstat (limited to 'tests/RunTests.hs')
-rw-r--r--tests/RunTests.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/RunTests.hs b/tests/RunTests.hs
index 5c6e136e3..50ebcfc8e 100644
--- a/tests/RunTests.hs
+++ b/tests/RunTests.hs
@@ -107,7 +107,7 @@ main = do
"latex-reader.latex" "latex-reader.native"
r11 <- runTest "native reader" ["-r", "native", "-w", "native", "-s"]
"testsuite.native" "testsuite.native"
- r14s <- mapM (\style -> runTest ("markdown reader (citations) (" ++ style ++ ")") ["-r", "markdown", "-w", "html", "--bibliography", "biblio.bib", "--csl", style ++ ".csl"] "markdown-citations.txt" ("markdown-citations." ++ style ++ ".html")) ["chicago-author-date","ieee","mhra"]
+ r14s <- mapM (\style -> runTest ("markdown reader (citations) (" ++ style ++ ")") ["-r", "markdown", "-w", "markdown", "--bibliography", "biblio.bib", "--csl", style ++ ".csl", "--no-wrap"] "markdown-citations.txt" ("markdown-citations." ++ style ++ ".txt")) ["chicago-author-date","ieee","mhra"]
r12s <- if runLhsTests
then mapM runLhsWriterTest lhsWriterFormats
else putStrLn "Skipping lhs writer tests because they presuppose highlighting support" >> return []