`make test` now runs the full testsuite authored by thomie's avatar thomie
...@@ -10,14 +10,14 @@ The testsuite relies primarily on **GNU Make** and **Python**. Any version \>= 2 ...@@ -10,14 +10,14 @@ The testsuite relies primarily on **GNU Make** and **Python**. Any version \>= 2
If you just want to run the whole testsuite, then in the root of the GHC tree, typing: If you just want to run the whole testsuite, then in the root of the GHC tree, typing:
```wiki ```wiki
$ make test $ make fasttest # shorthand: `make fast`
``` ```
will do a run in "fast" mode (which gives an idea whether there are major problems), or will do a run in "fast" mode (which gives an idea whether there are major problems), or
```wiki ```wiki
$ make fulltest $ make fulltest # shorthand: `make test`
``` ```
... ...
......