summaryrefslogtreecommitdiff
path: root/Meta
diff options
context:
space:
mode:
Diffstat (limited to 'Meta')
-rwxr-xr-xMeta/build-root-filesystem.sh2
-rwxr-xr-xMeta/check-newlines-at-eof.py2
-rwxr-xr-xMeta/check-style.py2
-rwxr-xr-xMeta/lint-clang-format.sh2
4 files changed, 4 insertions, 4 deletions
diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh
index 0e44c59b32..06a766a854 100755
--- a/Meta/build-root-filesystem.sh
+++ b/Meta/build-root-filesystem.sh
@@ -160,7 +160,7 @@ 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/Tests/js-tests
cp -r "$SERENITY_SOURCE_DIR"/Userland/Libraries/LibWeb/Tests mnt/home/anon/Tests/web-tests
-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/LibCodeComprehension/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/Tests/wasm-tests
diff --git a/Meta/check-newlines-at-eof.py b/Meta/check-newlines-at-eof.py
index ab01311c3e..c65620bbed 100755
--- a/Meta/check-newlines-at-eof.py
+++ b/Meta/check-newlines-at-eof.py
@@ -22,7 +22,7 @@ def run():
"CMake*.txt",
"**/CMake*.txt",
":!:Kernel/FileSystem/ext2_fs.h",
- ':!:Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests/*',
+ ':!:Userland/Libraries/LibCodeComprehension/Cpp/Tests/*',
':!:Userland/Libraries/LibCpp/Tests/parser/*',
':!:Userland/Libraries/LibCpp/Tests/preprocessor/*'
],
diff --git a/Meta/check-style.py b/Meta/check-style.py
index 5e70d79ef9..9f5885cd7f 100755
--- a/Meta/check-style.py
+++ b/Meta/check-style.py
@@ -23,7 +23,7 @@ LICENSE_HEADER_CHECK_EXCLUDES = {
'AK/Checked.h',
'AK/Function.h',
'Userland/Libraries/LibC/elf.h',
- 'Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests/',
+ 'Userland/Libraries/LibCodeComprehension/Cpp/Tests/',
'Userland/Libraries/LibCpp/Tests/parser/',
'Userland/Libraries/LibCpp/Tests/preprocessor/'
}
diff --git a/Meta/lint-clang-format.sh b/Meta/lint-clang-format.sh
index 5d2899790b..30ba9d7c3a 100755
--- a/Meta/lint-clang-format.sh
+++ b/Meta/lint-clang-format.sh
@@ -12,7 +12,7 @@ if [ "$#" -eq "1" ]; then
'*.h' \
':!:Base' \
':!:Kernel/FileSystem/ext2_fs.h' \
- ':!:Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests/*' \
+ ':!:Userland/Libraries/LibCodeComprehension/Cpp/Tests/*' \
':!:Userland/Libraries/LibCpp/Tests/parser/*' \
':!:Userland/Libraries/LibCpp/Tests/preprocessor/*'
)