From 932f4fab14e47479339b909c098814d837173475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Wed, 5 Apr 2023 17:44:02 +0200 Subject: installed-tests/meson: Add tests dependencies on gjs console We require the console to run the tests so add it as dependencies. --- installed-tests/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installed-tests/meson.build b/installed-tests/meson.build index ee5039eb..dc3c8c98 100644 --- a/installed-tests/meson.build +++ b/installed-tests/meson.build @@ -25,7 +25,7 @@ foreach test : simple_tests test_file = files('scripts' / 'test@0@.sh'.format(test)) test(test, test_file, env: tests_environment, protocol: 'tap', - suite: 'Scripts') + suite: 'Scripts', depends: gjs_console) test_description_subst = { 'name': 'test@0@.sh'.format(test), @@ -80,7 +80,7 @@ foreach test : debugger_tests test('@0@ command'.format(test), debugger_test_driver, args: test_file, env: tests_environment, protocol: 'tap', - suite: 'Debugger') + suite: 'Debugger', depends: gjs_console) test_description_subst = { 'name': '@0@.debugger'.format(test), -- cgit v1.2.1