1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Name: vector-tests
Version: 0.6.0.1
License: BSD3
License-File: LICENSE
Author: Max Bolingbroke, Roman Leshchinskiy
Maintainer: Roman Leshchinskiy <rl@cse.unsw.edu.au>
Copyright: (c) Max Bolinbroke, Roman Leshchinskiy 2008-2010
Homepage: http://darcs.haskell.org/vector
Category: Data Structures
Synopsis: Efficient Arrays
Description:
Tests for the vector package
Cabal-Version: >= 1.2
Build-Type: Simple
Executable "vector-tests"
Main-Is: Main.hs
Extensions: CPP,
ScopedTypeVariables,
PatternGuards,
MultiParamTypeClasses,
FlexibleContexts,
Rank2Types,
TypeSynonymInstances,
TypeFamilies,
TemplateHaskell
Build-Depends: base >= 4 && < 5, template-haskell, vector == 0.6.0.1,
random,
QuickCheck >= 2, test-framework, test-framework-quickcheck2
-- Don't let fusion occur or GHC will make our tests less informative in some cases :-)
Ghc-Options: -O0
-- It's good practice to show all warnings, but since this is just test code let's ignore type sigs
Ghc-Options: -Wall -fno-warn-orphans -fno-warn-missing-signatures
|