Everywhere: Move cpp-tests under /home/anon/Tests

This commit is contained in:
Brian Gianforcaro 2022-03-20 11:38:55 -07:00 committed by Andreas Kling
parent d7492927e9
commit 67fc81a65a
Notes: sideshowbarker 2024-07-17 17:01:28 +09:00
7 changed files with 18 additions and 18 deletions

View file

@ -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"))