File: shelltestrunner.cabal

package info (click to toggle)
shelltestrunner 1.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 896 kB
  • sloc: haskell: 881; makefile: 54; sh: 1
file content (92 lines) | stat: -rw-r--r-- 2,501 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
cabal-version:  >= 1.10
name:           shelltestrunner
-- keep shelltest.hs synced:
version:        1.10
category:       Testing
synopsis:       Easy, repeatable testing of CLI programs/commands

description:
  shelltestrunner (executable: shelltest) is a portable
  command-line tool for testing command-line programs, or general shell
  commands, released under GPLv3+.  It reads simple test specifications
  defining a command to run, some input, and the expected output,
  stderr, and exit status.  It can run tests in parallel, selectively,
  with a timeout, in color, etc.

license:        GPL
license-file:   LICENSE
author:         Simon Michael <simon@joyful.com>
maintainer:     Simon Michael <simon@joyful.com>
homepage:       https://github.com/simonmichael/shelltestrunner
bug-reports:    https://github.com/simonmichael/shelltestrunner/issues
stability:      stable
build-type:     Simple

tested-with:
  GHC==9.6.2
  GHC==9.4.5
  GHC==8.10.7

extra-tmp-files:
extra-source-files:
  ANNOUNCE
  CHANGES
  Makefile
  README.md
  tests/README
  tests/bash/*.test
  tests/examples/*.test
  tests/examples/README
  tests/format1.unix/*.test
  tests/format1.windows/*.test
  tests/format1/*.test
  tests/format1/abstract-test-with-macros
  tests/format1/one-failing-test
  tests/format2.unix/*.test
  tests/format2.windows/*.test
  tests/format2/*.test
  tests/format2/abstract-test-with-macros
  tests/format2/one-failing-test
  tests/format3.unix/*.test
  tests/format3.windows/*.test
  tests/format3/*.test
  tests/format3/abstract-test-with-macros
  tests/format3/one-failing-test

executable shelltest
  default-language: Haskell2010
  ghc-options: -threaded -W -fwarn-tabs
  main-is: shelltest.hs
  hs-source-dirs: src
  other-modules:
    Import
    Parse
    Preprocessor
    Print
    Types
    Utils
    Utils.Debug

  build-depends:
      base                 >= 4     && < 5
    , Diff                 >= 0.2.0
    , filemanip            >= 0.3
    , HUnit
    , cmdargs              >= 0.7
    , directory            >= 1.0
    , filepath             >= 1.0
    , parsec
    , pretty-show          >= 1.6.5
    , process
    , regex-tdfa           >= 1.1
    , safe
    , test-framework       >= 0.3.2
    , test-framework-hunit >= 0.2
    , utf8-string          >= 0.3.5
    , hspec                >=2.9.0
    , hspec-core           >=2.9.0
    , hspec-contrib        >=0.5.1.1

source-repository head
  type:     git
  location: https://github.com/simonmichael/shelltestrunner