aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/9 header install
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/9 header install')
-rw-r--r--test cases/common/9 header install/child/childdir.h3
-rw-r--r--test cases/common/9 header install/meson.build7
-rw-r--r--test cases/common/9 header install/test.json2
3 files changed, 9 insertions, 3 deletions
diff --git a/test cases/common/9 header install/child/childdir.h b/test cases/common/9 header install/child/childdir.h
new file mode 100644
index 0000000..5788511
--- /dev/null
+++ b/test cases/common/9 header install/child/childdir.h
@@ -0,0 +1,3 @@
+/* This file goes, depending on the state of `preserve_path` into subdirectory of include root or into the `child` dir of the subdirectory of include root. */
+
+int childdir_func();
diff --git a/test cases/common/9 header install/meson.build b/test cases/common/9 header install/meson.build
index 833b4d4..8c83be6 100644
--- a/test cases/common/9 header install/meson.build
+++ b/test cases/common/9 header install/meson.build
@@ -1,11 +1,12 @@
project('header install')
-as_array = ['subdir.h']
+as_array = ['subdir.h', 'child/childdir.h']
subdir('vanishing_subdir')
subdir('sub')
h1 = install_headers('rootdir.h')
h2 = install_headers(as_array, subdir : 'subdir')
-h3 = install_headers(subheader)
-h4 = install_headers(disabler())
+h3 = install_headers(as_array, subdir : 'subdir', preserve_path : true)
+h4 = install_headers(subheader)
+h5 = install_headers(disabler())
diff --git a/test cases/common/9 header install/test.json b/test cases/common/9 header install/test.json
index eb12cd0..8514c90 100644
--- a/test cases/common/9 header install/test.json
+++ b/test cases/common/9 header install/test.json
@@ -2,6 +2,8 @@
"installed": [
{ "type": "file", "file": "usr/include/rootdir.h" },
{ "type": "file", "file": "usr/include/subdir/subdir.h" },
+ { "type": "file", "file": "usr/include/subdir/childdir.h" },
+ { "type": "file", "file": "usr/include/subdir/child/childdir.h" },
{ "type": "file", "file": "usr/include/vanished.h" },
{ "type": "file", "file": "usr/include/fileheader.h" }
]