From 3ddc3e6064ae967a48cae9075118b464cc32bede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Sun, 8 Dec 2024 00:27:31 +0200 Subject: [PATCH] Add a placeholder for the test-suite-externals directory When setting up external sources within llvm-test-suite, that can either be done by checking out those sources in the test-suite-externals directory, or by setting a CMake variable to point at the source directory elsewhere. As the git repo itself doesn't contain any files in the test-suite-externals directory, no such directory exists in users checkouts, unless they manually create it (which feels brittle and can be prone to mistypings etc). Therefore, add a placeholder dummy file to force git to create the directory, making it more obvious to users where they can place external sources. The directory is ignored via .gitignore, so files or directories in this tree don't get added accidentally. --- test-suite-externals/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test-suite-externals/.gitkeep diff --git a/test-suite-externals/.gitkeep b/test-suite-externals/.gitkeep new file mode 100644 index 0000000000..e69de29bb2