Moved tests to tests/, modified cabal file so lib isn't recompiled.
This commit is contained in:
parent
3053267280
commit
45e4c123a4
14 changed files with 35 additions and 72 deletions
93
pandoc.cabal
93
pandoc.cabal
|
@ -377,75 +377,20 @@ Executable pandoc
|
|||
|
||||
Executable test-pandoc
|
||||
Main-Is: test-pandoc.hs
|
||||
-- Note: the following is duplicated in all stanzas.
|
||||
-- It needs to be duplicated because of the library & executable flags.
|
||||
-- BEGIN DUPLICATED SECTION
|
||||
Build-Depends: containers >= 0.1 && < 0.5,
|
||||
parsec >= 3.1 && < 3.2,
|
||||
mtl >= 1.1 && < 2.2,
|
||||
network >= 2 && < 2.4,
|
||||
filepath >= 1.1 && < 1.4,
|
||||
process >= 1 && < 1.2,
|
||||
directory >= 1 && < 1.2,
|
||||
bytestring >= 0.9 && < 1.0,
|
||||
zip-archive >= 0.1.1.7 && < 0.2,
|
||||
utf8-string >= 0.3 && < 0.4,
|
||||
old-locale >= 1 && < 1.1,
|
||||
time >= 1.2 && < 1.5,
|
||||
HTTP >= 4000.0.5 && < 4000.3,
|
||||
texmath >= 0.6.0.2 && < 0.7,
|
||||
xml >= 1.3.12 && < 1.4,
|
||||
random >= 1 && < 1.1,
|
||||
extensible-exceptions >= 0.1 && < 0.2,
|
||||
citeproc-hs >= 0.3.4 && < 0.4,
|
||||
pandoc-types >= 1.9.0.2 && < 1.10,
|
||||
json >= 0.4 && < 0.6,
|
||||
tagsoup >= 0.12.5 && < 0.13,
|
||||
base64-bytestring >= 0.1 && < 0.2,
|
||||
zlib >= 0.5 && < 0.6,
|
||||
highlighting-kate >= 0.5.1 && < 0.6,
|
||||
data-default >= 0.4 && < 0.6,
|
||||
temporary >= 1.1 && < 1.2
|
||||
if flag(blaze_html_0_5)
|
||||
build-depends:
|
||||
blaze-html >= 0.5 && < 0.6,
|
||||
blaze-markup >= 0.5.1 && < 0.6
|
||||
else
|
||||
build-depends:
|
||||
blaze-html >= 0.4.3.0 && < 0.5
|
||||
Hs-Source-Dirs: tests
|
||||
if impl(ghc >= 6.10)
|
||||
Build-depends: base >= 4 && < 5, syb >= 0.1 && < 0.4
|
||||
else
|
||||
Build-depends: base >= 3 && < 4
|
||||
if impl(ghc >= 7.0.1)
|
||||
Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output
|
||||
else
|
||||
if impl(ghc >= 6.12)
|
||||
Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output
|
||||
else
|
||||
Ghc-Options: -O2 -Wall
|
||||
if impl(ghc >= 7.0.1)
|
||||
Ghc-Prof-Options: -auto-all -caf-all -rtsopts
|
||||
else
|
||||
Ghc-Prof-Options: -auto-all -caf-all
|
||||
Default-Language: Haskell98
|
||||
Default-Extensions: CPP
|
||||
Other-Extensions: PatternGuards, OverloadedStrings,
|
||||
ScopedTypeVariables, GeneralizedNewtypeDeriving,
|
||||
RelaxedPolyRec, DeriveDataTypeable, TypeSynonymInstances,
|
||||
FlexibleInstances
|
||||
Hs-Source-Dirs: src
|
||||
-- END DUPLICATED SECTION
|
||||
if !flag(tests)
|
||||
Buildable: False
|
||||
else
|
||||
Buildable: True
|
||||
if impl(ghc >= 7)
|
||||
cpp-options: -D_LIT=lit
|
||||
else
|
||||
cpp-options: -D_LIT=$lit
|
||||
Other-Extensions: TemplateHaskell, QuasiQuotes
|
||||
Build-Depends: Diff, test-framework >= 0.3 && < 0.7,
|
||||
Build-Depends: pandoc,
|
||||
pandoc-types >= 1.9.0.2 && < 1.10,
|
||||
utf8-string >= 0.3 && < 0.4,
|
||||
bytestring >= 0.9 && < 1.0,
|
||||
directory >= 1 && < 1.2,
|
||||
filepath >= 1.1 && < 1.4,
|
||||
process >= 1 && < 1.2,
|
||||
Diff,
|
||||
test-framework >= 0.3 && < 0.7,
|
||||
test-framework-hunit >= 0.2 && < 0.3,
|
||||
test-framework-quickcheck2 >= 0.2.9 && < 0.3,
|
||||
QuickCheck >= 2.4 && < 2.6,
|
||||
|
@ -464,3 +409,21 @@ Executable test-pandoc
|
|||
Tests.Writers.HTML
|
||||
Tests.Writers.Markdown
|
||||
Tests.Writers.LaTeX
|
||||
if impl(ghc >= 7.0.1)
|
||||
Ghc-Options: -O2 -rtsopts -Wall -fno-warn-unused-do-bind -dno-debug-output
|
||||
else
|
||||
if impl(ghc >= 6.12)
|
||||
Ghc-Options: -O2 -Wall -fno-warn-unused-do-bind -dno-debug-output
|
||||
else
|
||||
Ghc-Options: -O2 -Wall
|
||||
if !flag(tests)
|
||||
Buildable: False
|
||||
else
|
||||
Buildable: True
|
||||
if impl(ghc >= 7)
|
||||
cpp-options: -D_LIT=lit
|
||||
else
|
||||
cpp-options: -D_LIT=$lit
|
||||
Default-Language: Haskell98
|
||||
Default-Extensions: CPP, TemplateHaskell, QuasiQuotes
|
||||
|
||||
|
|
Loading…
Reference in a new issue