mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:14:58 +00:00
Everywhere: Move cpp-tests under /home/anon/Tests
This commit is contained in:
parent
d7492927e9
commit
67fc81a65a
7 changed files with 18 additions and 18 deletions
|
@ -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"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue