diff options
Diffstat (limited to 'test cases/failing/77 unfound run')
-rw-r--r-- | test cases/failing/77 unfound run/meson.build | 4 | ||||
-rw-r--r-- | test cases/failing/77 unfound run/test.json | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/test cases/failing/77 unfound run/meson.build b/test cases/failing/77 unfound run/meson.build new file mode 100644 index 0000000..3f37e9a --- /dev/null +++ b/test cases/failing/77 unfound run/meson.build @@ -0,0 +1,4 @@ +project('unfound runtarget') + +exe = find_program('nonexisting_prog', required : false) +run_target('invoke_fail', command : [exe]) diff --git a/test cases/failing/77 unfound run/test.json b/test cases/failing/77 unfound run/test.json new file mode 100644 index 0000000..99464bd --- /dev/null +++ b/test cases/failing/77 unfound run/test.json @@ -0,0 +1,7 @@ +{ + "stdout": [ + { + "line": "test cases/failing/77 unfound run/meson.build:4:0: ERROR: Tried to use non-existing executable 'nonexisting_prog'" + } + ] +} |