summaryrefslogtreecommitdiff
path: root/test cases/rust/12 bindgen
diff options
context:
space:
mode:
authorVolker Weißmann <volker.weissmann@gmx.de>2021-10-14 01:35:14 +0200
committerEli Schwartz <eschwartz93@gmail.com>2021-10-30 22:26:28 -0400
commit2c079d855ed87488bdcc6c5c06f59abdb9b85b6c (patch)
tree62206d581a9ff764d948da94d4478dba85bce765 /test cases/rust/12 bindgen
parent3c103fe49ccca848d255b9b00365e74ce35400a4 (diff)
downloadmeson-2c079d855ed87488bdcc6c5c06f59abdb9b85b6c.tar.gz
Added warning if run_command is called without the check kwarg
Diffstat (limited to 'test cases/rust/12 bindgen')
-rw-r--r--test cases/rust/12 bindgen/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/rust/12 bindgen/meson.build b/test cases/rust/12 bindgen/meson.build
index 7844884e2..6f1864f77 100644
--- a/test cases/rust/12 bindgen/meson.build
+++ b/test cases/rust/12 bindgen/meson.build
@@ -12,7 +12,7 @@ endif
# valid. We must try to process a header file for this to work.
#
# See https://github.com/rust-lang/rust-bindgen/issues/1797
-result = run_command(prog_bindgen, 'include/other.h')
+result = run_command(prog_bindgen, 'include/other.h', check: false)
if result.returncode() != 0
error('MESON_SKIP_TEST bindgen does not seem to work')
endif