aboutsummaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Complete support for inferring types for top-level bindings.David Waern2011-12-276-5/+73
|
* Update tests following version bump.David Waern2011-12-2730-30/+30
|
* Add a test for Unicode doc comments.David Waern2011-12-032-0/+88
|
* Slightly better behaviour on top-levels without type signatures.David Waern2011-12-032-1/+43
| | | | | | | | - Docs don't get attached to the next top-level with signature by mistake. - If there's an export list and the top-level is part of it, its doc comment shows up in the documentation.
* Fix module reference bug.David Waern2011-11-262-0/+4
|
* Update tests.David Waern2011-11-265-4/+87
|
* Some more changes to test scripts.David Waern2011-11-252-3/+9
|
* Accept test output.David Waern2011-11-2529-653/+1487
|
* Avoid depency on regex-compat also in accept.hs.David Waern2011-11-251-2/+8
|
* Avoid haskell98 dependency in testDavid Waern2011-11-241-1/+1
|
* Fix a bug in test runner and get rid of regex-compat dependency.David Waern2011-11-241-5/+9
|
* Rename copy.hs -> accept.hs.David Waern2011-11-052-3/+33
|
* Make testsuite able to find its dependencies automatically.David Waern2011-10-271-11/+22
|
* Sort import listDavid Waern2011-10-231-8/+8
|
* Use cabal's test suite support to run the test suiteDavid Waern2011-05-222-24/+22
| | | | This gives up proper dependency tracking of the test script.
* Add support for blank lines in the result of examplesSimon Hengel2011-04-083-0/+23
| | | | | Result lines that only contain the string "<BLANKLINE>" are treated as a blank line.
* Update Haddock version in *.html.refSimon Hengel2011-04-0829-29/+29
|
* Update runtests.hs for GHC 7.0.2Simon Hengel2011-04-081-2/+2
|
* Set unit tests back to workSimon Hengel2011-04-081-3/+3
| | | | Here "ghci>" was still used instead of ">>>".
* Set shell script for unit tests back to workSimon Hengel2011-04-081-0/+1
|
* Update tests following version bumpDavid Waern2010-12-0629-29/+29
|
* Rename golden-tests into html-tests. "golden tests" sounds strangeDavid Waern2010-12-0663-0/+0
|
* Use --pretty-html when running the test suite. Makes it easier to compare outputDavid Waern2010-12-0630-279/+5262
|
* Update tests following recent changesDavid Waern2010-12-0628-53/+53
|
* Update tests following version bumpDavid Waern2010-12-011-1/+1
|
* Make tests compile with ghc 7.0.1David Waern2010-12-013-7/+5
|
* Update deps of runtests.hs to work with ghc 7.0.1David Waern2010-12-011-2/+2
|
* Replace ghci> with >>> in example syntaxDavid Waern2010-09-012-14/+14
|
* Update test output following version changeDavid Waern2010-08-3129-29/+29
|
* Revert update to TestDavid Waern2010-08-291-1/+1
|
* Update TestDavid Waern2010-08-291-1/+1
|
* update golden test for Test due to portability box changeMark Lentczner2010-08-291-1/+1
|
* Update tests following switch to the Xhtml backendDavid Waern2010-08-2830-8551/+337
|
* fixed CSS for ordered lists and def lists in doc blocksMark Lentczner2010-08-261-0/+4
|
* remove old HTML backendMark Lentczner2010-07-222-2/+2
|
* Remove trailing whitespace in Haddock.Backends.XhtmlDavid Waern2010-07-211-1/+1
|
* Update test following Simon's patch to render unresolved names in monospaced ↵David Waern2010-07-011-1/+3
| | | | font
* Make runtest.hs work with GHC 6.12.3 (we should really stop hard coding this)David Waern2010-07-011-2/+2
|
* Update runparsetests.hs following testsuite reorganisationDavid Waern2010-05-111-2/+2
|
* Update runtests.hs to use base-4.2.0.1David Waern2010-05-111-1/+1
|
* Update runtests.hs following testsuite re-organisationDavid Waern2010-05-111-4/+5
|
* Shorten function nameDavid Waern2010-05-111-3/+3
|
* Re-organise the testsuite structureDavid Waern2010-05-1165-2/+2
|
* Improve testsuite READMEDavid Waern2010-05-101-12/+19
|
* Add unit tests for parsersimon.hengel2010-04-182-0/+70
|
* Fix #112David Waern2010-04-102-0/+125
| | | | | | | | No link was generated for 'Addr#' in a doc comment. The reason was simply that the identifier didn't parse. We were using parseIdentifier from the GHC API, with a parser state built from 'defaultDynFlags'. If we pass the dynflags of the module instead, the right options are turned on on while parsing the identifer (in this case -XMagicHash), and the parse succeeds.
* Add ghc-prim to test suite depsDavid Waern2010-04-084-14/+34
|
* Make it easier to add new package deps to test suiteDavid Waern2010-04-081-4/+9
| | | | This is a hack - we should use Cabal to get the package details instead.
* Fix #118David Waern2010-04-082-0/+120
| | | | | Avoid being too greedy when lexing URL markup (<..>), in order to allow multiple URLs on the same line. Do the same thing with <<..>> and #..#.
* Fix #75David Waern2010-04-072-0/+181
| | | | Add colons to the $ident character set.