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
7 changed files with 18 additions and 18 deletions

View file

@ -25,12 +25,12 @@ If a directory is specified in `source`, the `-R` (recursive) flag is required.
## Examples
```sh
# Copy cpp-tests file and name it cpp-tests-backup
$ cp cpp-tests cpp-tests-backup
# Copy test file and name it test-backup
$ cp test test-backup
# Copy cpp-tests directory and name it cpp-tests-backup
$ cp -R cpp-tests cpp-tests-backup
# Copy tests directory and name it tests-backup
$ cp -R tests tests-backup
# Copy cpp-tests file into existing root
$ cp cpp-tests root
# Copy test file into existing root
$ cp test root
```

View file

@ -26,6 +26,6 @@ If a directory is specified in `path`, the `-r` (recursive) flag is required. Ot
# Remove README.md file
$ rm README.md
# Remove cpp-tests directory
$ rm -r cpp-tests
# Remove Tests directory
$ rm -r Tests
```

View file

@ -155,14 +155,14 @@ mkdir -p mnt/home/anon
mkdir -p mnt/home/anon/Desktop
mkdir -p mnt/home/anon/Downloads
mkdir -p mnt/home/nona
rm -fr mnt/home/anon/js-tests mnt/home/anon/web-tests mnt/home/anon/cpp-tests mnt/home/anon/wasm-tests
mkdir -p mnt/home/anon/cpp-tests/
rm -fr mnt/home/anon/js-tests mnt/home/anon/web-tests mnt/home/anon/Tests/cpp-tests mnt/home/anon/wasm-tests
mkdir -p mnt/home/anon/Tests/cpp-tests/
cp "$SERENITY_SOURCE_DIR"/README.md mnt/home/anon/
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibJS/Tests mnt/home/anon/js-tests
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibWeb/Tests mnt/home/anon/web-tests
cp -r "$SERENITY_SOURCE_DIR"/Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests mnt/home/anon/cpp-tests/comprehension
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibCpp/Tests/parser mnt/home/anon/cpp-tests/parser
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibCpp/Tests/preprocessor mnt/home/anon/cpp-tests/preprocessor
cp -r "$SERENITY_SOURCE_DIR"/Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests mnt/home/anon/Tests/cpp-tests/comprehension
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibCpp/Tests/parser mnt/home/anon/Tests/cpp-tests/parser
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibCpp/Tests/preprocessor mnt/home/anon/Tests/cpp-tests/preprocessor
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibWasm/Tests mnt/home/anon/wasm-tests
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibJS/Tests/test-common.js mnt/home/anon/wasm-tests
cp -r "$SERENITY_SOURCE_DIR"/Userland/Applications/Spreadsheet/Tests mnt/home/anon/spreadsheet-tests

View file

@ -11,7 +11,7 @@
#include <LibTest/TestCase.h>
#include <unistd.h>
constexpr char TESTS_ROOT_DIR[] = "/home/anon/cpp-tests/parser";
constexpr char TESTS_ROOT_DIR[] = "/home/anon/Tests/cpp-tests/parser";
static String read_all(String const& path)
{

View file

@ -10,7 +10,7 @@
#include <LibCpp/Parser.h>
#include <LibTest/TestCase.h>
constexpr char TESTS_ROOT_DIR[] = "/home/anon/cpp-tests/preprocessor";
constexpr char TESTS_ROOT_DIR[] = "/home/anon/Tests/cpp-tests/preprocessor";
static String read_all(String const& path)
{

View file

@ -35,7 +35,7 @@ static bool s_some_test_failed = false;
return; \
} while (0)
constexpr char TESTS_ROOT_DIR[] = "/home/anon/cpp-tests/comprehension";
constexpr char TESTS_ROOT_DIR[] = "/home/anon/Tests/cpp-tests/comprehension";
static void test_complete_local_args();
static void test_complete_local_vars();

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