Edit Building/RunningTests authored by ian@well-typed.com's avatar ian@well-typed.com
...@@ -13,8 +13,12 @@ If you have not checked out the test suite, first run: ...@@ -13,8 +13,12 @@ If you have not checked out the test suite, first run:
``` ```
To run the test suite against stage 1 of a GHC build in the same You can run the whole test suite with `make test` or `make fulltest` in the root
source tree: of the build tree, but below we will explain how to get finer control of the
test suite.
To run the test suite against a GHC build in the same source tree:
```wiki ```wiki
cd testsuite/tests/ghc-regress cd testsuite/tests/ghc-regress
...@@ -34,11 +38,11 @@ To run a fast version of the testsuite, which should complete in under ...@@ -34,11 +38,11 @@ To run a fast version of the testsuite, which should complete in under
``` ```
To run the testsuite with the stage2 compiler (this is often what you By default the testsuite uses the stage2 compiler. If you want to use another stage
want, because GHCi tests will fail with stage1): (e.g. because your stage2 compiler doesn't work) then:
```wiki ```wiki
make stage=2 make stage=1
``` ```
... ...
......