diff options
Diffstat (limited to 'meson/test cases/unit/88 run native test/meson.build')
-rw-r--r-- | meson/test cases/unit/88 run native test/meson.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson/test cases/unit/88 run native test/meson.build b/meson/test cases/unit/88 run native test/meson.build new file mode 100644 index 000000000..3bf419c14 --- /dev/null +++ b/meson/test cases/unit/88 run native test/meson.build @@ -0,0 +1,6 @@ +project('run native test', ['c']) + +executable('terget_exe', 'main.c') + +native_exe = executable('native_exe', 'main.c', native: true) +test('native_exe', native_exe, args: ['native_test_has_run.stamp']) |