diff options
author | Itamar <itamar8910@gmail.com> | 2021-05-16 18:50:45 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-19 23:19:07 +0200 |
commit | eeb98335d541ea018efd45dca7d4fff2999b438b (patch) | |
tree | fb89122b690c2f6ad2daef8a035274cc8c751673 /Meta/lint-clang-format.sh | |
parent | 28ed5181425303ec60de58727b8a2addb568f118 (diff) | |
download | serenity-eeb98335d541ea018efd45dca7d4fff2999b438b.zip |
CppLanguageServer: Put cpp test files in /home/anon/cpp-tests/
This is similar to the LibJS test data that resides in
/home/anon/js-tests.
It's more convenient than storing the test programs as raw strings
in the code.
Diffstat (limited to 'Meta/lint-clang-format.sh')
-rwxr-xr-x | Meta/lint-clang-format.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Meta/lint-clang-format.sh b/Meta/lint-clang-format.sh index d2f0d333b6..7542a77695 100755 --- a/Meta/lint-clang-format.sh +++ b/Meta/lint-clang-format.sh @@ -12,7 +12,8 @@ if [ "$#" -eq "1" ]; then '*.h' \ ':!:Base' \ ':!:Kernel/FileSystem/ext2_fs.h' \ - ':!:Userland/Libraries/LibC/syslog.h' + ':!:Userland/Libraries/LibC/syslog.h' \ + ':!:Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests/*' ) else files=() |