diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-03-20 11:55:50 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-20 22:20:59 +0100 |
commit | 95b295971ddf8197db88246a220e23bd41d018dc (patch) | |
tree | a00f99e4359e062375433568d65891cd3513a4a9 /Documentation/RunningTests.md | |
parent | 16bee0ba79ddc3932a5a534abd751e7eeb03b623 (diff) | |
download | serenity-95b295971ddf8197db88246a220e23bd41d018dc.zip |
Everywhere: Move tests to /home/anon/Tests
Diffstat (limited to 'Documentation/RunningTests.md')
-rw-r--r-- | Documentation/RunningTests.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/RunningTests.md b/Documentation/RunningTests.md index 9702985ef8..4a7ae8f90d 100644 --- a/Documentation/RunningTests.md +++ b/Documentation/RunningTests.md @@ -69,7 +69,7 @@ Tests built for the SerenityOS target get installed either into `/usr/Tests` or some system tests are installed into `/bin` for historical reasons. The easiest way to run all of the known tests in the system is to use the `run-tests-and-shutdown.sh` script that gets -installed into `/home/anon/tests`. When running in CI, the environment variable `$DO_SHUTDOWN_AFTER_TESTS` is set, which +installed into `/home/anon/Tests`. When running in CI, the environment variable `$DO_SHUTDOWN_AFTER_TESTS` is set, which will run `shutdown -n` after running all the tests. For completeness, a basic on-target test run will need the SerenityOS image built and run via QEMU. @@ -84,7 +84,7 @@ ninja install && ninja image && ninja run In the initial terminal, one can easily run the test runner script: ``` -courage ~ $ ./tests/run-tests-and-shutdown.sh +courage ~ $ ./Tests/run-tests-and-shutdown.sh === Running Tests on SerenityOS === ... ``` @@ -96,7 +96,7 @@ The system server entry looks as below: ```ini [TestRunner@ttyS0] -Executable=/home/anon/tests/run-tests-and-shutdown.sh +Executable=/home/anon/Tests/run-tests-and-shutdown.sh StdIO=/dev/ttyS0 Environment=DO_SHUTDOWN_AFTER_TESTS=1 TERM=xterm PATH=/usr/local/bin:/usr/bin:/bin User=anon |