-
Notifications
You must be signed in to change notification settings - Fork 86
/
autotest.sh
executable file
·81 lines (75 loc) · 2.43 KB
/
autotest.sh
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
#!/usr/bin/env bash
# A 'simple' wrapper over ghcid and cabal that runs all hspecs
# from hydra-model and hydra-node
FLAGS=$(echo "
-XBangPatterns
-XBinaryLiterals
-XConstraintKinds
-XDataKinds
-XDefaultSignatures
-XDeriveAnyClass
-XDerivingStrategies
-XDeriveDataTypeable
-XDeriveFoldable
-XDeriveFunctor
-XDeriveGeneric
-XDeriveTraversable
-XDerivingStrategies
-XEmptyDataDecls
-XExistentialQuantification
-XFlexibleContexts
-XFlexibleInstances
-XFunctionalDependencies
-XGADTs
-XGeneralizedNewtypeDeriving
-XInstanceSigs
-XKindSignatures
-XLambdaCase
-XMultiParamTypeClasses
-XMultiWayIf
-XNamedFieldPuns
-XNoImplicitPrelude
-XNumericUnderscores
-XOverloadedStrings
-XPartialTypeSignatures
-XPatternGuards
-XRankNTypes
-XScopedTypeVariables
-XStandaloneDeriving
-XTupleSections
-XTypeApplications
-XTypeFamilies
-XTypeOperators
-XTypeSynonymInstances
-XViewPatterns
-fno-ignore-interface-pragmas
-fno-omit-interface-pragmas
-fobject-code
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wno-partial-fields
-Wredundant-constraints
-Wno-unused-packages" | tr -s '\012' ' ')
# List all hspec modules in the given packages and turn those into something
# that can be put into a Haskell list
SPECS=$(git ls-files 'hydra-node/**/*Spec.hs' 'hydra-plutus/**/*Spec.hs' | \
sed -e 's/^[^A-Z]*\(.*\)\.hs$/\1/' | sed 'y=/=.=' | sed -e 's/$/.spec/' )
if [ $# -gt 0 ]; then
SPECS=$(echo "$SPECS" | grep "$@" | tr -s '\012' ',' | sed -e 's/,$//')
else
SPECS=$(echo "$SPECS" | tr -s '\012' ',' | sed -e 's/,$//')
fi
COMMAND="cabal exec ghci -- -ihydra-plutus/src -ihydra-prelude/src -ihydra-plutus/test -ihydra-node/src -ihydra-node/test -idist-newstyle/build/x86_64-linux/ghc-8.10.4/hydra-node-0.2.0/build/autogen/ $FLAGS $(git ls-files 'hydra-node/**/*.hs' 'hydra-plutus/**/*.hs' | grep -v Main.hs| grep -v Repl | tr -s '\012' ' ')"
if [ $1 == "repl" ]; then
exec $COMMAND
else
# need to explicitly list *.cabal files to restart because (I think) ghcid only
# checks .cabal in current directory
exec ghcid -c "$COMMAND" --restart=autotest.sh --restart=cabal.project \
--restart=hydra-node/hydra-node.cabal \
--restart=hydra-plutus/hydra-plutus.cabal \
-T "Control.Monad.mapM_ Test.Hspec.hspec [$SPECS]"
fi