aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/92 test workdir
diff options
context:
space:
mode:
authorAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
committerAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
commitaf1a266670d040d2f4083ff309d732d648afba2a (patch)
tree2fc46203448ddcc6f81546d379abfaeb323575e9 /meson/test cases/common/92 test workdir
parente02cda008591317b1625707ff8e115a4841aa889 (diff)
Add submodule dependency filesHEADmaster
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'meson/test cases/common/92 test workdir')
-rw-r--r--meson/test cases/common/92 test workdir/meson.build8
-rw-r--r--meson/test cases/common/92 test workdir/opener.c12
-rwxr-xr-xmeson/test cases/common/92 test workdir/subdir/checker.py5
-rw-r--r--meson/test cases/common/92 test workdir/subdir/meson.build4
4 files changed, 29 insertions, 0 deletions
diff --git a/meson/test cases/common/92 test workdir/meson.build b/meson/test cases/common/92 test workdir/meson.build
new file mode 100644
index 000000000..a8290f7e0
--- /dev/null
+++ b/meson/test cases/common/92 test workdir/meson.build
@@ -0,0 +1,8 @@
+project('test workdir', 'c')
+
+exe = executable('opener', 'opener.c')
+
+test('basic', exe, workdir : meson.source_root())
+test('shouldfail', exe, should_fail : true)
+
+subdir('subdir')
diff --git a/meson/test cases/common/92 test workdir/opener.c b/meson/test cases/common/92 test workdir/opener.c
new file mode 100644
index 000000000..c946e18c2
--- /dev/null
+++ b/meson/test cases/common/92 test workdir/opener.c
@@ -0,0 +1,12 @@
+// This test only succeeds if run in the source root dir.
+
+#include<stdio.h>
+
+int main(void) {
+ FILE *f = fopen("opener.c", "r");
+ if(f) {
+ fclose(f);
+ return 0;
+ }
+ return 1;
+}
diff --git a/meson/test cases/common/92 test workdir/subdir/checker.py b/meson/test cases/common/92 test workdir/subdir/checker.py
new file mode 100755
index 000000000..66e287d4a
--- /dev/null
+++ b/meson/test cases/common/92 test workdir/subdir/checker.py
@@ -0,0 +1,5 @@
+#!/usr/bin/env python3
+
+import sys
+
+data = open(sys.argv[1], 'rb').read()
diff --git a/meson/test cases/common/92 test workdir/subdir/meson.build b/meson/test cases/common/92 test workdir/subdir/meson.build
new file mode 100644
index 000000000..687a1cf23
--- /dev/null
+++ b/meson/test cases/common/92 test workdir/subdir/meson.build
@@ -0,0 +1,4 @@
+exe2 = executable('dummy', '../opener.c')
+test('subdir', find_program('checker.py'),
+ workdir : meson.source_root(),
+ args: [exe2])