diff options
author | Andrew Kaster <akaster@serenityos.org> | 2021-06-27 23:41:06 -0600 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-06-29 07:17:34 +0430 |
commit | ab88f4e082ac68537ba1a634481ec531450e0e0b (patch) | |
tree | ef589d1fce2688885ade8aaba8661676d67b065b /Base/etc/SystemServer.ini | |
parent | 882002c5669f2296ae7bfad6898000de418784c2 (diff) | |
download | serenity-ab88f4e082ac68537ba1a634481ec531450e0e0b.zip |
Base: Set UBSAN to deadly for TestRunner service
This will run all the tests that are children of this service with
deadly UBSAN, ensuring we don't get any UBSAN regressions in on-target
tests anymore. :^)
Diffstat (limited to 'Base/etc/SystemServer.ini')
-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 766b9512a6..458830d83f 100644 --- a/Base/etc/SystemServer.ini +++ b/Base/etc/SystemServer.ini @@ -169,7 +169,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 TESTS_ONLY=1 +Environment=DO_SHUTDOWN_AFTER_TESTS=1 TERM=xterm PATH=/bin:/usr/bin:/usr/local/bin TESTS_ONLY=1 UBSAN_OPTIONS=halt_on_error=1 User=anon WorkingDirectory=/home/anon BootModes=self-test |