diff options
| author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-07-30 13:51:53 +0530 |
|---|---|---|
| committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-07-30 15:20:02 +0530 |
| commit | 9f67c29eb46884d9d18611897a9f32542d4566b4 (patch) | |
| tree | 0d6afc102bb666ec3c4f5aca9c42baee28bb37cd /test cases/windows | |
| parent | 577b6dfdf63cde697ff33226950175a93578e2b8 (diff) | |
| download | meson-9f67c29eb46884d9d18611897a9f32542d4566b4.tar.gz | |
Add test for the new find program workaround for Windows
Diffstat (limited to 'test cases/windows')
| -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') |
