mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2025-01-03 18:48:53 +00:00
tests: Stop when either the javascript or python tests fail
This commit is contained in:
parent
7500977440
commit
37d1b73c25
@ -131,10 +131,10 @@ test-c: $(C_TESTS)
|
|||||||
@gtester --verbose -m $(TEST_MODE) --g-fatal-warnings $(C_TESTS)
|
@gtester --verbose -m $(TEST_MODE) --g-fatal-warnings $(C_TESTS)
|
||||||
|
|
||||||
test-js:
|
test-js:
|
||||||
@for js in $(JS_TESTS); do echo "TEST: $$js"; $(JS_ENV) gjs $(srcdir)/$$js; done
|
@for js in $(JS_TESTS); do echo "TEST: $$js"; $(JS_ENV) gjs $(srcdir)/$$js || exit $?; done
|
||||||
|
|
||||||
test-py:
|
test-py:
|
||||||
@for py in $(PY_TESTS); do echo "TEST: $$py"; $(PY_ENV) python $(srcdir)/$$py; done
|
@for py in $(PY_TESTS); do echo "TEST: $$py"; $(PY_ENV) python $(srcdir)/$$py || exit $?; done
|
||||||
|
|
||||||
test: test-c test-py test-js $(VALA_TEST_TARGET)
|
test: test-c test-py test-js $(VALA_TEST_TARGET)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user