diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-04-24 21:25:17 +0200 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-04-24 21:25:40 +0200 |
| commit | 27462e02fd6a558ef5b96441d9977a221d5ffe66 (patch) | |
| tree | f40ac564bc68ad9c96de2e399c4e4643f054d078 /src | |
| parent | bd2ae1a2eb918735c0a12000fb6239a78b7eb48b (diff) | |
Use /bin/true as the default tool in test mode
Diffstat (limited to 'src')
| -rw-r--r-- | src/TestMode.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TestMode.hs b/src/TestMode.hs index c052fb9..33f2493 100644 --- a/src/TestMode.hs +++ b/src/TestMode.hs @@ -89,7 +89,7 @@ runSingleTest test = do globals <- gets tmsGlobals mbconfig <- asks tmiConfig let opts = defaultTestOptions - { optDefaultTool = fromMaybe "" $ configTool =<< mbconfig + { optDefaultTool = fromMaybe "/bin/true" $ configTool =<< mbconfig , optTestDir = ".test" <> show num , optKeep = True } |