diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-31 19:22:24 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-31 19:22:24 +0300 |
commit | 17bfbb99e5897ac759aca42d3ee375ebb33bd087 (patch) | |
tree | 8df2a3f7cbfcca9c30df15404f0227dfe0107705 /test cases/windows/9 find program | |
parent | 2bc0f56b21a6dd327a6907c5fe27885b05db49d5 (diff) | |
download | meson-17bfbb99e5897ac759aca42d3ee375ebb33bd087.zip meson-17bfbb99e5897ac759aca42d3ee375ebb33bd087.tar.gz meson-17bfbb99e5897ac759aca42d3ee375ebb33bd087.tar.bz2 |
Condense test dirs.
Diffstat (limited to 'test cases/windows/9 find program')
-rw-r--r-- | test cases/windows/9 find program/meson.build | 12 | ||||
-rw-r--r-- | test cases/windows/9 find program/test-script | 3 | ||||
-rw-r--r-- | test cases/windows/9 find program/test-script-ext.py | 3 |
3 files changed, 0 insertions, 18 deletions
diff --git a/test cases/windows/9 find program/meson.build b/test cases/windows/9 find program/meson.build deleted file mode 100644 index 565fb62..0000000 --- a/test cases/windows/9 find program/meson.build +++ /dev/null @@ -1,12 +0,0 @@ -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/test cases/windows/9 find program/test-script b/test cases/windows/9 find program/test-script deleted file mode 100644 index d105a81..0000000 --- a/test cases/windows/9 find program/test-script +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env python - -print('1') diff --git a/test cases/windows/9 find program/test-script-ext.py b/test cases/windows/9 find program/test-script-ext.py deleted file mode 100644 index ae9adfb..0000000 --- a/test cases/windows/9 find program/test-script-ext.py +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env python3 - -print('ext/noext') |