module Main where import System.Cmd ( system ) import System.Exit ( exitWith ) main :: IO () main = do result <- system "shelltest test/shell/*.test" exitWith result