diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2011-04-05 16:18:39 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2011-04-12 15:25:24 -0700 |
commit | d12f9c04388ce98953e8cfa75c40e7e3628ff573 (patch) | |
tree | c0efd5d8d4b2165c5dc5a1d33a5aa684ed9ec93f /README | |
parent | eca137c2b3564d30cdd5b2e1a131f610b792c783 (diff) |
Decouple the test suite from "make check"
The "check" target is run during "distcheck" after the test suite is built, so
having it run the test suite itself means that the suite has to pass before a
tarball can be distributed. Also, an unsuspecting developer attempting to
create a tarball might accidentally run the test suite against his host X
server, which is bad because some of the tests can have adverse effects.
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -50,10 +50,10 @@ the build tree. $ ./check.sh # run all the tests $ ./check.sh XI # run just the XI test scenario -The "make check" framework can also be used from the build tree. +The "make run-tests" framework can also be used from the build tree. - $ make check # run all the tests - $ make check scenario=XI # run just the XI test scenario + $ make run-tests # run all the tests + $ make run-tests scenario=XI # run just the XI test scenario $ make test-XI # shortcut for the previous A wrapper script, xts-run, is the easiest way to run the installed tests. |