]> git.rkrishnan.org Git - functorrent.git/commitdiff
test: nuke hlint testsuite
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 28 Apr 2015 03:11:04 +0000 (08:41 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 28 Apr 2015 03:11:04 +0000 (08:41 +0530)
functorrent.cabal
test/Hlint.hs [deleted file]

index a89ceb966a0d4272b4124d1669ba45ab49540999..2d2db982730d5f14bfe059e3fade923f1a38fa49 100644 (file)
@@ -78,11 +78,3 @@ test-suite functorrent-test
                      QuickCheck,
                      tasty-quickcheck,
                      test-framework-quickcheck2
-
-test-suite functorrent-hlint
-  type:              exitcode-stdio-1.0
-  default-language:  Haskell2010
-  hs-source-dirs:    test
-  main-is:           Hlint.hs
-  build-depends:     base,
-                     hlint
diff --git a/test/Hlint.hs b/test/Hlint.hs
deleted file mode 100644 (file)
index 0fa2512..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-module Main where
-
-import Control.Monad
-import Language.Haskell.HLint
-import System.Environment
-import System.Exit
-
-main :: IO ()
-main = do
-  args <- getArgs
-  hints <- hlint $ ["src", "--cpp-define=HLINT", "--cpp-ansi"] ++ args
-  unless (null hints) exitFailure