├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── haskell-ci.yml ├── .gitignore ├── ChangeLog ├── HTF.cabal ├── HTFPP.hs ├── LICENSE ├── README.md ├── TODO.org ├── Test ├── Framework.hs └── Framework │ ├── AssertM.hs │ ├── BlackBoxTest.hs │ ├── CmdlineOptions.hs │ ├── Colors.hs │ ├── Diff.hs │ ├── HUnitWrapper.hs │ ├── History.hs │ ├── JsonOutput.hs │ ├── Location.hs │ ├── Preprocessor.hs │ ├── Pretty.hs │ ├── PrettyHaskell.hs │ ├── Process.hs │ ├── QuickCheckWrapper.hs │ ├── TestInterface.hs │ ├── TestManager.hs │ ├── TestReporter.hs │ ├── TestTypes.hs │ ├── ThreadPool.hs │ ├── Tutorial.hs │ ├── Utils.hs │ └── XmlOutput.hs ├── doc ├── blog-posts │ └── version-0.8.1.0.html └── hcar │ ├── hcar.sty │ └── htf.tex ├── sample ├── LICENSE ├── Main.hs ├── MyPkg │ ├── A.hs │ ├── B.hs │ └── C.hs ├── README ├── Setup.hs ├── TestMain.hs ├── bbt-dir │ ├── should-fail │ │ ├── BBTArgs │ │ ├── z.err │ │ └── z.num │ └── should-pass │ │ ├── x.num │ │ └── x.out └── sample-HTF.cabal ├── scripts ├── check.sh ├── ci-check ├── dist.sh ├── local-htfpp ├── prepare └── run-sample ├── stack-ghc-8.10.yaml ├── stack-ghc-8.10.yaml.lock ├── stack-ghc-8.2.yaml ├── stack-ghc-8.2.yaml.lock ├── stack-ghc-8.4.yaml ├── stack-ghc-8.4.yaml.lock ├── stack-ghc-8.6.yaml ├── stack-ghc-8.6.yaml.lock ├── stack-ghc-8.8.yaml ├── stack-ghc-8.8.yaml.lock ├── stack-ghc-9.0.yaml ├── stack-ghc-9.0.yaml.lock ├── stack-ghc-9.2.yaml ├── stack-ghc-9.4.yaml ├── stack-ghc-9.6.yaml ├── stack.yaml ├── stack.yaml.lock └── tests ├── Foo ├── A.hs ├── B.hs └── test.h ├── MiscTest.hs ├── Quasi.hs ├── TestHTF.hs ├── ThreadPoolTest.hs ├── Tutorial.hs ├── bbt ├── Skip │ ├── BBTArgs │ └── some_unknown_but_skipped_file.x ├── Verbose │ ├── BBTArgs │ ├── not_ok_because_stdout1.out │ └── not_ok_because_stdout1.x ├── should_fail │ ├── BBTArgs │ ├── not_ok_because_stderr1.err │ ├── not_ok_because_stderr1.x │ ├── not_ok_because_stderr2.err │ ├── not_ok_because_stderr2.x │ ├── not_ok_because_stdout1.out │ ├── not_ok_because_stdout1.x │ ├── not_ok_because_stdout2.out │ ├── not_ok_because_stdout2.x │ ├── not_ok_because_succeeds.x │ ├── ok1.out │ ├── ok1.x │ ├── ok2.err │ ├── ok2.out │ └── ok2.x └── should_pass │ ├── not_ok_because_fails.x │ ├── not_ok_because_stderr1.err │ ├── not_ok_because_stderr1.x │ ├── not_ok_because_stderr2.err │ ├── not_ok_because_stderr2.x │ ├── not_ok_because_stdout1.out │ ├── not_ok_because_stdout1.x │ ├── not_ok_because_stdout2.out │ ├── not_ok_because_stdout2.x │ ├── ok1.out │ ├── ok1.x │ ├── ok2.err │ ├── ok2.out │ ├── ok2.x │ ├── stdin_ok.in │ ├── stdin_ok.out │ └── stdin_ok.x ├── compile-errors ├── Foo.h ├── Test1.hs ├── Test2.hs ├── Test3.hs ├── Test4.hs └── run-tests.sh ├── jp ├── HTF-diff3068.txt ├── HTF-diff3069.txt ├── HTF-diff6472.txt ├── HTF-diff6473.txt ├── HTF-diff6782.txt ├── HTF-diff6783.txt ├── wikiNew.txt └── wikiOriginal.txt ├── real-bbt ├── FailFast.hs ├── FailFast.sh ├── MaxCurTime.hs ├── MaxCurTime.sh ├── MaxPrevTime.hs ├── MaxPrevTime.sh ├── PrevFactor.hs ├── PrevFactor.sh ├── Repeat.hs ├── Repeat.sh ├── SortByPrevTime.hs ├── SortByPrevTime.sh ├── UniqTests.sh ├── UniqTests1.hs ├── UniqTests2.hs └── lib └── run-bbt.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/ChangeLog -------------------------------------------------------------------------------- /HTF.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/HTF.cabal -------------------------------------------------------------------------------- /HTFPP.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/HTFPP.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/README.md -------------------------------------------------------------------------------- /TODO.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/TODO.org -------------------------------------------------------------------------------- /Test/Framework.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework.hs -------------------------------------------------------------------------------- /Test/Framework/AssertM.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/AssertM.hs -------------------------------------------------------------------------------- /Test/Framework/BlackBoxTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/BlackBoxTest.hs -------------------------------------------------------------------------------- /Test/Framework/CmdlineOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/CmdlineOptions.hs -------------------------------------------------------------------------------- /Test/Framework/Colors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/Colors.hs -------------------------------------------------------------------------------- /Test/Framework/Diff.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/Diff.hs -------------------------------------------------------------------------------- /Test/Framework/HUnitWrapper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/HUnitWrapper.hs -------------------------------------------------------------------------------- /Test/Framework/History.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/History.hs -------------------------------------------------------------------------------- /Test/Framework/JsonOutput.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/JsonOutput.hs -------------------------------------------------------------------------------- /Test/Framework/Location.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/Location.hs -------------------------------------------------------------------------------- /Test/Framework/Preprocessor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/Preprocessor.hs -------------------------------------------------------------------------------- /Test/Framework/Pretty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/Pretty.hs -------------------------------------------------------------------------------- /Test/Framework/PrettyHaskell.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/PrettyHaskell.hs -------------------------------------------------------------------------------- /Test/Framework/Process.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/Process.hs -------------------------------------------------------------------------------- /Test/Framework/QuickCheckWrapper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/QuickCheckWrapper.hs -------------------------------------------------------------------------------- /Test/Framework/TestInterface.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/TestInterface.hs -------------------------------------------------------------------------------- /Test/Framework/TestManager.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/TestManager.hs -------------------------------------------------------------------------------- /Test/Framework/TestReporter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/TestReporter.hs -------------------------------------------------------------------------------- /Test/Framework/TestTypes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/TestTypes.hs -------------------------------------------------------------------------------- /Test/Framework/ThreadPool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/ThreadPool.hs -------------------------------------------------------------------------------- /Test/Framework/Tutorial.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/Tutorial.hs -------------------------------------------------------------------------------- /Test/Framework/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/Utils.hs -------------------------------------------------------------------------------- /Test/Framework/XmlOutput.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/Test/Framework/XmlOutput.hs -------------------------------------------------------------------------------- /doc/blog-posts/version-0.8.1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/doc/blog-posts/version-0.8.1.0.html -------------------------------------------------------------------------------- /doc/hcar/hcar.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/doc/hcar/hcar.sty -------------------------------------------------------------------------------- /doc/hcar/htf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/doc/hcar/htf.tex -------------------------------------------------------------------------------- /sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/sample/LICENSE -------------------------------------------------------------------------------- /sample/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/sample/Main.hs -------------------------------------------------------------------------------- /sample/MyPkg/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/sample/MyPkg/A.hs -------------------------------------------------------------------------------- /sample/MyPkg/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/sample/MyPkg/B.hs -------------------------------------------------------------------------------- /sample/MyPkg/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/sample/MyPkg/C.hs -------------------------------------------------------------------------------- /sample/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/sample/README -------------------------------------------------------------------------------- /sample/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /sample/TestMain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/sample/TestMain.hs -------------------------------------------------------------------------------- /sample/bbt-dir/should-fail/BBTArgs: -------------------------------------------------------------------------------- 1 | Fail 2 | -------------------------------------------------------------------------------- /sample/bbt-dir/should-fail/z.err: -------------------------------------------------------------------------------- 1 | invalid input 2 | -------------------------------------------------------------------------------- /sample/bbt-dir/should-fail/z.num: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /sample/bbt-dir/should-pass/x.num: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /sample/bbt-dir/should-pass/x.out: -------------------------------------------------------------------------------- 1 | 43 2 | 84 3 | -------------------------------------------------------------------------------- /sample/sample-HTF.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/sample/sample-HTF.cabal -------------------------------------------------------------------------------- /scripts/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/scripts/check.sh -------------------------------------------------------------------------------- /scripts/ci-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/scripts/ci-check -------------------------------------------------------------------------------- /scripts/dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/scripts/dist.sh -------------------------------------------------------------------------------- /scripts/local-htfpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/scripts/local-htfpp -------------------------------------------------------------------------------- /scripts/prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/scripts/prepare -------------------------------------------------------------------------------- /scripts/run-sample: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | stack exec sample -- "$@" 4 | -------------------------------------------------------------------------------- /stack-ghc-8.10.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-18.28 2 | flags: {} 3 | packages: 4 | - '.' 5 | -------------------------------------------------------------------------------- /stack-ghc-8.10.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-8.10.yaml.lock -------------------------------------------------------------------------------- /stack-ghc-8.2.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-11.22 2 | flags: {} 3 | packages: 4 | - '.' 5 | extra-deps: [] 6 | -------------------------------------------------------------------------------- /stack-ghc-8.2.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-8.2.yaml.lock -------------------------------------------------------------------------------- /stack-ghc-8.4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-8.4.yaml -------------------------------------------------------------------------------- /stack-ghc-8.4.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-8.4.yaml.lock -------------------------------------------------------------------------------- /stack-ghc-8.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-8.6.yaml -------------------------------------------------------------------------------- /stack-ghc-8.6.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-8.6.yaml.lock -------------------------------------------------------------------------------- /stack-ghc-8.8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-8.8.yaml -------------------------------------------------------------------------------- /stack-ghc-8.8.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-8.8.yaml.lock -------------------------------------------------------------------------------- /stack-ghc-9.0.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-19.33 2 | flags: {} 3 | packages: 4 | - '.' 5 | -------------------------------------------------------------------------------- /stack-ghc-9.0.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack-ghc-9.0.yaml.lock -------------------------------------------------------------------------------- /stack-ghc-9.2.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-20.12 2 | flags: {} 3 | packages: 4 | - '.' 5 | -------------------------------------------------------------------------------- /stack-ghc-9.4.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-21.25 2 | flags: {} 3 | packages: 4 | - '.' 5 | -------------------------------------------------------------------------------- /stack-ghc-9.6.yaml: -------------------------------------------------------------------------------- 1 | resolver: lts-22.19 2 | flags: {} 3 | packages: 4 | - '.' 5 | -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | stack-ghc-8.8.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /tests/Foo/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/Foo/A.hs -------------------------------------------------------------------------------- /tests/Foo/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/Foo/B.hs -------------------------------------------------------------------------------- /tests/Foo/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/Foo/test.h -------------------------------------------------------------------------------- /tests/MiscTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/MiscTest.hs -------------------------------------------------------------------------------- /tests/Quasi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/Quasi.hs -------------------------------------------------------------------------------- /tests/TestHTF.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/TestHTF.hs -------------------------------------------------------------------------------- /tests/ThreadPoolTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/ThreadPoolTest.hs -------------------------------------------------------------------------------- /tests/Tutorial.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/Tutorial.hs -------------------------------------------------------------------------------- /tests/bbt/Skip/BBTArgs: -------------------------------------------------------------------------------- 1 | Skip 2 | -------------------------------------------------------------------------------- /tests/bbt/Skip/some_unknown_but_skipped_file.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/Verbose/BBTArgs: -------------------------------------------------------------------------------- 1 | Verbose 2 | -------------------------------------------------------------------------------- /tests/bbt/Verbose/not_ok_because_stdout1.out: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /tests/bbt/Verbose/not_ok_because_stdout1.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/BBTArgs: -------------------------------------------------------------------------------- 1 | Fail 2 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_stderr1.err: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_stderr1.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_stderr2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_stderr2.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_stdout1.out: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_stdout1.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_stdout2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_stdout2.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/not_ok_because_succeeds.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/ok1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/ok1.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/ok2.err: -------------------------------------------------------------------------------- 1 | y 2 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/ok2.out: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /tests/bbt/should_fail/ok2.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_fails.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_stderr1.err: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_stderr1.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_stderr2.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_stderr2.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_stdout1.out: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_stdout1.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_stdout2.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/not_ok_because_stdout2.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/ok1.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/ok1.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/ok2.err: -------------------------------------------------------------------------------- 1 | y 2 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/ok2.out: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/ok2.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/stdin_ok.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/stdin_ok.out: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /tests/bbt/should_pass/stdin_ok.x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compile-errors/Foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/compile-errors/Foo.h -------------------------------------------------------------------------------- /tests/compile-errors/Test1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/compile-errors/Test1.hs -------------------------------------------------------------------------------- /tests/compile-errors/Test2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/compile-errors/Test2.hs -------------------------------------------------------------------------------- /tests/compile-errors/Test3.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/compile-errors/Test3.hs -------------------------------------------------------------------------------- /tests/compile-errors/Test4.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/compile-errors/Test4.hs -------------------------------------------------------------------------------- /tests/compile-errors/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/compile-errors/run-tests.sh -------------------------------------------------------------------------------- /tests/jp/HTF-diff3068.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 6 | 5 7 | 6 8 | 7 9 | -------------------------------------------------------------------------------- /tests/jp/HTF-diff3069.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/jp/HTF-diff3069.txt -------------------------------------------------------------------------------- /tests/jp/HTF-diff6472.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 6 | 5 7 | 6 8 | 7 9 | -------------------------------------------------------------------------------- /tests/jp/HTF-diff6473.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/jp/HTF-diff6473.txt -------------------------------------------------------------------------------- /tests/jp/HTF-diff6782.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 6 | 5 7 | 6 8 | 7 9 | -------------------------------------------------------------------------------- /tests/jp/HTF-diff6783.txt: -------------------------------------------------------------------------------- 1 | 1 2 | b 3 | 3 4 | 4 5 | XXX 6 | l 7 | e 8 | o 9 | i 10 | r 11 | m 12 | 13 | -------------------------------------------------------------------------------- /tests/jp/wikiNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/jp/wikiNew.txt -------------------------------------------------------------------------------- /tests/jp/wikiOriginal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/jp/wikiOriginal.txt -------------------------------------------------------------------------------- /tests/real-bbt/FailFast.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/FailFast.hs -------------------------------------------------------------------------------- /tests/real-bbt/FailFast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/FailFast.sh -------------------------------------------------------------------------------- /tests/real-bbt/MaxCurTime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/MaxCurTime.hs -------------------------------------------------------------------------------- /tests/real-bbt/MaxCurTime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/MaxCurTime.sh -------------------------------------------------------------------------------- /tests/real-bbt/MaxPrevTime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/MaxPrevTime.hs -------------------------------------------------------------------------------- /tests/real-bbt/MaxPrevTime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/MaxPrevTime.sh -------------------------------------------------------------------------------- /tests/real-bbt/PrevFactor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/PrevFactor.hs -------------------------------------------------------------------------------- /tests/real-bbt/PrevFactor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/PrevFactor.sh -------------------------------------------------------------------------------- /tests/real-bbt/Repeat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/Repeat.hs -------------------------------------------------------------------------------- /tests/real-bbt/Repeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/Repeat.sh -------------------------------------------------------------------------------- /tests/real-bbt/SortByPrevTime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/SortByPrevTime.hs -------------------------------------------------------------------------------- /tests/real-bbt/SortByPrevTime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/SortByPrevTime.sh -------------------------------------------------------------------------------- /tests/real-bbt/UniqTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/UniqTests.sh -------------------------------------------------------------------------------- /tests/real-bbt/UniqTests1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/UniqTests1.hs -------------------------------------------------------------------------------- /tests/real-bbt/UniqTests2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/UniqTests2.hs -------------------------------------------------------------------------------- /tests/real-bbt/lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/real-bbt/lib -------------------------------------------------------------------------------- /tests/run-bbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skogsbaer/HTF/HEAD/tests/run-bbt.sh --------------------------------------------------------------------------------