vector-0.3.1: tests/vector-tests.cabal
Name: vector-tests
Version: 0.2
License: BSD3
License-File: LICENSE
Author: Roman Leshchinskiy
Maintainer: Roman Leshchinskiy <rl@cse.unsw.edu.au>
Copyright: (c) Roman Leshchinskiy 2008
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,
FunctionalDependencies,
TypeSynonymInstances,
UndecidableInstances,
TemplateHaskell
Build-Depends: base, template-haskell, vector,
QuickCheck, test-framework, test-framework-quickcheck
-- 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