diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-07-30 18:52:09 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-30 18:52:09 +0300 |
| commit | fb3f4420b2b4ac2b664bc7f853851d5f283b15d6 (patch) | |
| tree | a67f62c86fba06abda14e11490d4b9fb4cbe312a /test cases | |
| parent | 933c11821e21879eac6bd2c8e3c4b7902abeccfd (diff) | |
| parent | 9f67c29eb46884d9d18611897a9f32542d4566b4 (diff) | |
| download | meson-fb3f4420b2b4ac2b664bc7f853851d5f283b15d6.tar.gz | |
Merge pull request #659 from centricular/find-program-scripts-windows
find_program: Find scripts without extensions on Windows
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/windows/9 find program/meson.build | 4 | ||||
| -rw-r--r-- | test cases/windows/9 find program/test-script | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/test cases/windows/9 find program/meson.build b/test cases/windows/9 find program/meson.build new file mode 100644 index 000000000..ef3458685 --- /dev/null +++ b/test cases/windows/9 find program/meson.build @@ -0,0 +1,4 @@ +project('find program', 'c') + +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 new file mode 100644 index 000000000..d105a818d --- /dev/null +++ b/test cases/windows/9 find program/test-script @@ -0,0 +1,3 @@ +#!/usr/bin/env python + +print('1') |
