X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhtsn.git;a=blobdiff_plain;f=test%2FShellTests.hs;fp=test%2FShellTests.hs;h=65a10ccca97daf27dd80e55e15e8a75e3d55a735;hp=0000000000000000000000000000000000000000;hb=53bcd4803997906549f39447b427a505ba8e1b9d;hpb=dced73db0b1ad1b8cf892041f9921347ab6e992e diff --git a/test/ShellTests.hs b/test/ShellTests.hs new file mode 100644 index 0000000..65a10cc --- /dev/null +++ b/test/ShellTests.hs @@ -0,0 +1,10 @@ +module Main +where + +import System.Cmd ( system ) +import System.Exit ( exitWith ) + +main :: IO () +main = do + result <- system "shelltest test/shell/*.test" + exitWith result