diff options
author | Joey Hess <joey@kitenet.net> | 2010-11-10 10:49:35 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-11-10 10:49:35 -0400 |
commit | 515d6b6c7d90e1ff44e791421066450cf4322b47 (patch) | |
tree | eb2b5ae47c93c5d4cd3a928295ed7658b84bf4c4 /test.hs | |
parent | 536bc97d25479ac969273b49442c2fd8c31358c4 (diff) |
Avoid using runghc to run test suite as it is not available on all architectures. Closes: #603006
Diffstat (limited to 'test.hs')
-rw-r--r-- | test.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,15 +1,16 @@ -- TODO find a test harness that is actually in Debian and use it. -import Test.QuickCheck import Test.HUnit import Test.HUnit.Tools import GitRepo import Locations +alltests :: [Test] alltests = [ qctest "prop_idempotent_deencode" prop_idempotent_deencode, qctest "prop_idempotent_fileKey" prop_idempotent_fileKey ] +main :: IO (Counts, Int) main = runVerboseTests (TestList alltests) |