]> gitweb.michael.orlitzky.com - hath.git/blobdiff - test/ShellTestsNet.hs
Rename shelltestrunner files and add two haskell runners which just run 'shelltest...
[hath.git] / test / ShellTestsNet.hs
diff --git a/test/ShellTestsNet.hs b/test/ShellTestsNet.hs
new file mode 100644 (file)
index 0000000..b3306d0
--- /dev/null
@@ -0,0 +1,10 @@
+module Main
+where
+
+import System.Cmd ( system )
+import System.Exit ( exitWith )
+
+main :: IO ()
+main = do
+  result <- system "shelltest test/shell-net/*.test"
+  exitWith result