Commit 1a1db7ef authored by Clint Adams's avatar Clint Adams
Browse files

cgi: enable testsuite

parent 94327d07
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
haskell-cgi (3001.3.0.2-3) unstable; urgency=medium

  * Enable testsuite.

 -- Clint Adams <clint@debian.org>  Mon, 16 Apr 2018 11:13:12 -0400

haskell-cgi (3001.3.0.2-2) unstable; urgency=medium

  [ Ilias Tsitsimpis ]
+4 −0
Original line number Diff line number Diff line
@@ -28,6 +28,10 @@ Build-Depends:
 libghc-parsec3-dev (<< 3.2),
 libghc-parsec3-dev (>= 2.0),
 libghc-parsec3-prof,
 libghc-quickcheck2-dev (>= 2.8.1),
 libghc-quickcheck2-dev (<< 2.12),
 libghc-doctest-dev (>= 0.8),
 libghc-doctest-dev (<< 0.14),
Build-Depends-Indep:
 ghc-doc,
 libghc-exceptions-doc,
+22 −0
Original line number Diff line number Diff line
@@ -9,3 +9,14 @@
     containers < 0.6,
     multipart >= 0.1.2 && < 0.2
   If flag(network-uri)
@@ -72,8 +72,8 @@
   ghc-options:      -Wall
   build-depends:
       base
-    , doctest >= 0.8 && < 0.12
-    , QuickCheck >= 2.8.1 && < 2.10
+    , doctest >= 0.8 && < 0.14
+    , QuickCheck >= 2.8.1 && < 2.12
 
 --Executable:     printinput
 --Main-Is:        printinput.hs
+1 −1
Original line number Diff line number Diff line
newer-time
newer-deps
+2 −0
Original line number Diff line number Diff line
#!/usr/bin/make -f

DEB_ENABLE_TESTS = yes

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
Loading