forked from simonmichael/shelltestrunner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshelltestrunner.cabal
More file actions
62 lines (57 loc) · 1.86 KB
/
shelltestrunner.cabal
File metadata and controls
62 lines (57 loc) · 1.86 KB
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
name: shelltestrunner
version: 1.9.98
category: Testing
synopsis: A tool for testing command-line programs.
description:
shelltestrunner is a cross-platform tool for testing command-line
programs (or arbitrary shell commands.) It reads simple declarative tests
specifying a command, some input, and the expected output, error output
and exit status. Tests can be run selectively, in parallel, with a
timeout, in color, and/or with differences highlighted.
license: GPL
license-file: LICENSE
author: Simon Michael <simon@joyful.com>
maintainer: Simon Michael <simon@joyful.com>
homepage: http://joyful.com/shelltestrunner
bug-reports: mailto:simon@joyful.com
stability: stable
tested-with: GHC==8.0
cabal-version: >= 1.6
build-type: Simple
extra-tmp-files:
extra-source-files:
CHANGES
tests.format1/*.test
tests.format1.unix/*.test
tests.format1.windows/*.test
tests.format2/*.test
tests.format2.unix/*.test
tests.format2.windows/*.test
executable shelltest
ghc-options: -threaded -W -fwarn-tabs
main-is: shelltest.hs
other-modules:
Import
Utils
Utils.Debug
Types
Parse
build-depends:
base >= 4 && < 5,
Diff >= 0.2.0 && < 0.4,
filemanip >= 0.3 && < 0.4,
HUnit < 1.6,
cmdargs >= 0.7 && < 0.11,
directory >= 1.0,
filepath >= 1.0,
parsec < 3.2,
pretty-show >= 1.6.5,
process < 1.5,
regex-tdfa >= 1.1 && < 1.3,
safe,
test-framework >= 0.3.2 && < 0.9,
test-framework-hunit >= 0.2 && < 0.4,
utf8-string >= 0.3.5 && < 1.1
source-repository head
type: git
location: https://github.com/simonmichael/shelltestrunner