diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2023-04-18 20:37:00 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2023-04-18 20:38:57 +0200 |
commit | c400e2b11cd5bfe7bd19def3e10318338f8db224 (patch) | |
tree | 60509728d1a0c335cba9f9c89407884700373d42 /src/Run | |
parent | 95e2468b3c92e6689a5de4a2c03a79b3ef035f8b (diff) |
Command-line option to keep test directory
Diffstat (limited to 'src/Run')
-rw-r--r-- | src/Run/Monad.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Run/Monad.hs b/src/Run/Monad.hs index 5b55897..1036749 100644 --- a/src/Run/Monad.hs +++ b/src/Run/Monad.hs @@ -53,6 +53,7 @@ data TestOptions = TestOptions , optTimeout :: Scientific , optGDB :: Bool , optForce :: Bool + , optKeep :: Bool } defaultTestOptions :: TestOptions @@ -63,6 +64,7 @@ defaultTestOptions = TestOptions , optTimeout = 1 , optGDB = False , optForce = False + , optKeep = False } data Failed = Failed |