mirror of
https://github.com/xmonad/xmonad.git
synced 2025-05-19 08:30:21 -07:00
11 lines
389 B
Haskell
11 lines
389 B
Haskell
#!/usr/bin/env runhaskell
|
|
|
|
import System.Cmd
|
|
|
|
-- generate appropriate .hpc files
|
|
main = do
|
|
system $ "rm -rf *.tix"
|
|
system $ "dist/build/xmonad/xmonad --run-tests"
|
|
system $ "hpc markup xmonad --exclude=Main --exclude=Properties --exclude=XMonad --exclude=Paths_xmonad"
|
|
system $ "hpc report xmonad --exclude=Main --exclude=Properties --exclude=XMonad --exclude=Paths_xmonad"
|