summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-02-08 11:59:31 +0100
committerBastien Nocera <hadess@hadess.net>2022-02-08 12:28:50 +0100
commit41d28328dc678ace61cec834dca299ae0001777f (patch)
tree3e3f2f1d6c74101ad7d35ec25886ed6ab1d28b5a /tests
parente9431dce5f1bbe8c87b5529fac02ebacaef8ecb2 (diff)
downloadgnome-bluetooth-41d28328dc678ace61cec834dca299ae0001777f.tar.gz
build: Fix meson warning about run_command()
WARNING: You should add the boolean check kwarg to the run_command call. It currently defaults to false, but it will default to true in future releases of meson. See also: https://github.com/mesonbuild/meson/issues/9300
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/meson.build b/tests/meson.build
index c895ed67..70f08dbe 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -9,7 +9,7 @@ if enable_gir and has_dbusmock
python3 = find_program('python3')
unittest_inspector = find_program('unittest_inspector.py')
- r = run_command(unittest_inspector, files('integration-test.py'))
+ r = run_command(unittest_inspector, files('integration-test.py'), check: true)
unit_tests = r.stdout().strip().split('\n')
foreach ut: unit_tests