aboutsummaryrefslogtreecommitdiff
path: root/tests/output
Commit message (Collapse)AuthorAgeFilesLines
* Update testsDavid Waern2008-10-1029-29/+29
|
* Update test following Haddock version changeDavid Waern2008-08-1329-29/+29
|
* Drop unnecessary parenthesis in types, put in by the userDavid Waern2008-07-242-20/+20
| | | | | | | | | | | | | We were putting in parenthesis were the user did. Let's remove this since it just clutters up the types. The types are readable anyway since we print parens around infix operators and do not rely on fixity levels. When doing this I discovered that we were relying on user parenthesis when printin types like (a `O` b) c. This patchs fixes this problem so that parenthesis are always inserted around an infix op application in case it is applied to further arguments, or if it's an arguments to a type constructor. Tests are updated.
* Be compatible with GHC 6.8.3David Waern2008-07-2330-30/+30
| | | | | | | | | | | | | | | | | | The cabal file is converted to use the "new" syntax with explicit Library and Executable sections. We define the __GHC_PATCHLEVEL__ symbol using a conditinal cpp-options field in the cabal file. (Ideally, Cabal would define the symbol for us, like it does for __GLASGOW_HASKELL__). We use these symbols to #ifdef around a small difference between 6.8.2 and 6.8.3. Previously, we only supported GHC 6.8.2 officially but the dependencies field said "ghc <= 6.9". This was just for convenience when testing against the (then compatible) HEAD version of GHC, and was left in the release by mistake. Now, we support both GHC 6.8.2 and 6.8.3 and the dependencies field correctly reflects this.
* Update test output following change to instance filteringDavid Waern2008-07-082-0/+68
|
* Remove index.html and doc-index.html from output, they should not be versionedDavid Waern2008-07-084-1312/+68
|
* Update test outputDavid Waern2008-06-191-68/+68
|
* Simplify test suite and add testsDavid Waern2008-04-1232-0/+12754
I move all tests into one single directory to simplify things, and add a test for the last bug that was fixed.