1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:37:35 +00:00

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. :)
This commit is contained in:
Andrew Kaster 2021-04-24 13:14:21 -06:00 committed by Andreas Kling
parent 77d4b6e435
commit 89ee38fe5c
2 changed files with 2 additions and 2 deletions

View file

@ -140,7 +140,7 @@ int TestSuite::main(const String& suite_name, int argc, char** argv)
Core::ArgsParser args_parser;
bool do_tests_only = false;
bool do_tests_only = getenv("TESTS_ONLY") != nullptr;
bool do_benchmarks_only = false;
bool do_list_cases = false;
const char* search_string = "*";