From 76439d06aee45e45c1a990e3d47634753dec59ef Mon Sep 17 00:00:00 2001 From: Brad Richardson Date: Tue, 2 Jun 2020 08:03:11 -0700 Subject: Add ability to specify which test or program to run and their args --- test/Spec.hs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/Spec.hs') diff --git a/test/Spec.hs b/test/Spec.hs index 604d8af..18da62f 100644 --- a/test/Spec.hs +++ b/test/Spec.hs @@ -16,16 +16,16 @@ main = do testHelloWorld :: IO () testHelloWorld = - withCurrentDirectory (example_path "hello_world") $ start $ Arguments Run False + withCurrentDirectory (example_path "hello_world") $ start $ Arguments (Run "") False "" testHelloComplex :: IO () testHelloComplex = - withCurrentDirectory (example_path "hello_complex") $ start $ Arguments Test False + withCurrentDirectory (example_path "hello_complex") $ start $ Arguments (Test "") False "" testHelloFpm :: IO () testHelloFpm = - withCurrentDirectory (example_path "hello_fpm") $ start $ Arguments Run False + withCurrentDirectory (example_path "hello_fpm") $ start $ Arguments (Run "") False "" testCircular :: IO () testCircular = - withCurrentDirectory (example_path "circular_example") $ start $ Arguments Test False + withCurrentDirectory (example_path "circular_example") $ start $ Arguments (Test "") False "" -- cgit v1.2.3