diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /meson/test cases/windows/8 find program | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'meson/test cases/windows/8 find program')
-rw-r--r-- | meson/test cases/windows/8 find program/meson.build | 12 | ||||
-rw-r--r-- | meson/test cases/windows/8 find program/test-script | 3 | ||||
-rw-r--r-- | meson/test cases/windows/8 find program/test-script-ext.py | 3 |
3 files changed, 18 insertions, 0 deletions
diff --git a/meson/test cases/windows/8 find program/meson.build b/meson/test cases/windows/8 find program/meson.build new file mode 100644 index 000000000..565fb626d --- /dev/null +++ b/meson/test cases/windows/8 find program/meson.build @@ -0,0 +1,12 @@ +project('find program', 'c') + +# Test that we can find native windows executables +find_program('cmd') +find_program('cmd.exe') + +# Test that a script file with an extension can be found +ext = find_program('test-script-ext.py') +test('ext', ext) +# Test that a script file without an extension can be found +prog = find_program('test-script') +test('script', prog) diff --git a/meson/test cases/windows/8 find program/test-script b/meson/test cases/windows/8 find program/test-script new file mode 100644 index 000000000..e76416525 --- /dev/null +++ b/meson/test cases/windows/8 find program/test-script @@ -0,0 +1,3 @@ +#!/usr/bin/env python3 + +print('1') diff --git a/meson/test cases/windows/8 find program/test-script-ext.py b/meson/test cases/windows/8 find program/test-script-ext.py new file mode 100644 index 000000000..ae9adfb8e --- /dev/null +++ b/meson/test cases/windows/8 find program/test-script-ext.py @@ -0,0 +1,3 @@ +#!/usr/bin/env python3 + +print('ext/noext') |