diff options
Diffstat (limited to 'src/Main.hs')
| -rw-r--r-- | src/Main.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs index b2e4171..7adf71d 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -196,7 +196,8 @@ main = do let tfSelect = if null otests then Nothing else Just otests tfExclude = optExclude opts - tests <- exitOnError $ filterTests TestFilter {..} lm + tfilter = maybe mempty testFilterFromConfig config <> TestFilter {..} + tests <- exitOnError $ filterTests tfilter lm tcpdump <- case optCmdlineTcpdump opts of TcpdumpAuto -> findExecutable "tcpdump" |