Codebase list haskell-multipart / 1970d8e
Revert previous change; instead, use libghc-setlocale-doc rather than libghc-void-doc for autopkgtests, since Data.Void is now in ghc. Colin Watson 8 years ago
5 changed file(s) with 23 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
0 haskell-hoogle (4.2.43-3) UNRELEASED; urgency=medium
1
2 * Revert previous change; instead, use libghc-setlocale-doc rather than
3 libghc-void-doc for autopkgtests, since Data.Void is now in ghc.
4
5 -- Colin Watson <cjwatson@debian.org> Fri, 29 Jan 2016 15:35:46 +0000
6
07 haskell-hoogle (4.2.43-2) unstable; urgency=medium
18
29 * Don't fail the install-remove autopkgtest if libghc-void-doc isn't
0 Tests: void
1 Depends: hoogle, libghc-void-doc
0 Tests: setlocale
1 Depends: hoogle, libghc-setlocale-doc
22 Restrictions: allow-stderr
33
44 Tests: install-remove
11
22 set -e
33
4 apt-get -y --purge remove libghc-void-doc || true
5 ret="$(hoogle absurd)"
4 apt-get -y --purge remove libghc-setlocale-doc
5 ret="$(hoogle categoryToCInt)"
66 test "$ret" = "No results found"
77
8 apt-get -y install libghc-void-doc
9 ret="$(hoogle absurd)"
10 test "$ret" = "Data.Void absurd :: Void -> a"
8 apt-get -y install libghc-setlocale-doc
9 ret="$(hoogle categoryToCInt)"
10 test "$ret" = "System.Locale.SetLocale categoryToCInt :: Category -> CInt"
1111
12 apt-get -y --purge remove libghc-void-doc
13 ret="$(hoogle absurd)"
12 apt-get -y --purge remove libghc-setlocale-doc
13 ret="$(hoogle categoryToCInt)"
1414 test "$ret" = "No results found"
0 #!/bin/bash
1
2 set -e
3
4 ret="$(hoogle categoryToCInt)"
5
6 test "$ret" = "System.Locale.SetLocale categoryToCInt :: Category -> CInt"
+0
-7
p/haskell-hoogle/debian/tests/void less more
0 #!/bin/bash
1
2 set -e
3
4 ret="$(hoogle absurd)"
5
6 test "$ret" = "Data.Void absurd :: Void -> a"