aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-11-02 19:50:54 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2019-11-10 23:45:42 +0200
commit35e809fc5e7c06e46753722bff03b491b6223df9 (patch)
tree340e06887495ee996511bb89e97ccfdb58cc4811 /test cases
parent1238b16c8ec38176cbb8ef4bcfb96b413e98dbe7 (diff)
downloadmeson-35e809fc5e7c06e46753722bff03b491b6223df9.zip
meson-35e809fc5e7c06e46753722bff03b491b6223df9.tar.gz
meson-35e809fc5e7c06e46753722bff03b491b6223df9.tar.bz2
Store run target names in build.
This way we can easily check that we only provide builtin targets such as clang-format if the user has not provided their own.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/common/54 run target/meson.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/common/54 run target/meson.build b/test cases/common/54 run target/meson.build
index 0aab694..9abe698 100644
--- a/test cases/common/54 run target/meson.build
+++ b/test cases/common/54 run target/meson.build
@@ -65,3 +65,10 @@ conf = configure_file(
run_target('configure_script',
command : conf
)
+
+# Target names that clash with potential builtin functionality.
+run_target('ctags',
+ command : converter)
+
+run_target('clang-format',
+ command : converter)