diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-03-20 11:38:55 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-20 22:20:59 +0100 |
commit | 67fc81a65a21de9302f8b77799f427f9a480bc83 (patch) | |
tree | fe38fb7e47d84c8e014a240ebe675ef35cfffab8 /Userland/Utilities/update-cpp-test-results.cpp | |
parent | d7492927e9d48eb3593ab1ca0d645200651173e2 (diff) | |
download | serenity-67fc81a65a21de9302f8b77799f427f9a480bc83.zip |
Everywhere: Move cpp-tests under /home/anon/Tests
Diffstat (limited to 'Userland/Utilities/update-cpp-test-results.cpp')
-rw-r--r-- | Userland/Utilities/update-cpp-test-results.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/update-cpp-test-results.cpp b/Userland/Utilities/update-cpp-test-results.cpp index ac2959c975..dcaae7a0b0 100644 --- a/Userland/Utilities/update-cpp-test-results.cpp +++ b/Userland/Utilities/update-cpp-test-results.cpp @@ -13,7 +13,7 @@ ErrorOr<int> serenity_main(Main::Arguments) { - Core::DirIterator parser_tests(LexicalPath::join(Core::StandardPaths::home_directory(), "cpp-tests/parser").string()); + Core::DirIterator parser_tests(LexicalPath::join(Core::StandardPaths::home_directory(), "Tests/cpp-tests/parser").string()); while (parser_tests.has_next()) { auto cpp_full_path = parser_tests.next_full_path(); if (!cpp_full_path.ends_with(".cpp")) @@ -24,7 +24,7 @@ ErrorOr<int> serenity_main(Main::Arguments) VERIFY(!res.is_error()); } - Core::DirIterator preprocessor_tests(LexicalPath::join(Core::StandardPaths::home_directory(), "cpp-tests/preprocessor").string()); + Core::DirIterator preprocessor_tests(LexicalPath::join(Core::StandardPaths::home_directory(), "Tests/cpp-tests/preprocessor").string()); while (preprocessor_tests.has_next()) { auto cpp_full_path = preprocessor_tests.next_full_path(); if (!cpp_full_path.ends_with(".cpp")) |