aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/windows/13 test argument extra paths/test
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/windows/13 test argument extra paths/test
parente02cda008591317b1625707ff8e115a4841aa889 (diff)
Add submodule dependency filesHEADmaster
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'meson/test cases/windows/13 test argument extra paths/test')
-rw-r--r--meson/test cases/windows/13 test argument extra paths/test/meson.build3
-rw-r--r--meson/test cases/windows/13 test argument extra paths/test/test_run_exe.py12
2 files changed, 15 insertions, 0 deletions
diff --git a/meson/test cases/windows/13 test argument extra paths/test/meson.build b/meson/test cases/windows/13 test argument extra paths/test/meson.build
new file mode 100644
index 000000000..2e608be5d
--- /dev/null
+++ b/meson/test cases/windows/13 test argument extra paths/test/meson.build
@@ -0,0 +1,3 @@
+python3 = import('python').find_installation('')
+
+test('run_exe', python3, args: [files('test_run_exe.py')[0], barexe])
diff --git a/meson/test cases/windows/13 test argument extra paths/test/test_run_exe.py b/meson/test cases/windows/13 test argument extra paths/test/test_run_exe.py
new file mode 100644
index 000000000..77c7ddc59
--- /dev/null
+++ b/meson/test cases/windows/13 test argument extra paths/test/test_run_exe.py
@@ -0,0 +1,12 @@
+import subprocess
+import argparse
+import sys
+
+if __name__ == '__main__':
+ parser = argparse.ArgumentParser()
+ parser.add_argument('prog')
+ args = parser.parse_args()
+
+ res = subprocess.run(args.prog)
+
+ sys.exit(res.returncode - 42)