diff options
author | Andrew Kaster <andrewdkaster@gmail.com> | 2021-04-24 13:14:21 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-25 09:36:49 +0200 |
commit | 89ee38fe5cf6f62821dabc98f4dfbc109d0874fd (patch) | |
tree | 3ae7f890c8bcdd778946fb3e22fdb4de1ee12592 /Base | |
parent | 77d4b6e435caf6ae70109e4c0ae062fa39a3039e (diff) | |
download | serenity-89ee38fe5cf6f62821dabc98f4dfbc109d0874fd.zip |
Tests: Add environment variable for tests only
This is useful for CI where we don't want to spend a minute and a half
benchmarking Vector::append, and we don't have a good way to pass
test-specific arguments yet. :)
Diffstat (limited to 'Base')
-rw-r--r-- | Base/etc/SystemServer.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/etc/SystemServer.ini b/Base/etc/SystemServer.ini index 52cc8207bf..c6b6c676ed 100644 --- a/Base/etc/SystemServer.ini +++ b/Base/etc/SystemServer.ini @@ -155,7 +155,7 @@ User=anon [TestRunner@ttyS0] Executable=/home/anon/tests/run-tests-and-shutdown.sh StdIO=/dev/ttyS0 -Environment=DO_SHUTDOWN_AFTER_TESTS=1 TERM=xterm PATH=/bin:/usr/bin:/usr/local/bin +Environment=DO_SHUTDOWN_AFTER_TESTS=1 TERM=xterm PATH=/bin:/usr/bin:/usr/local/bin TESTS_ONLY=1 User=anon WorkingDirectory=/home/anon BootModes=self-test |