diff options
author | Jean-Sébastien Pédron <[email protected]> | 2015-10-22 10:28:39 +0200 |
---|---|---|
committer | Jean-Sébastien Pédron <[email protected]> | 2015-10-22 10:28:39 +0200 |
commit | 6f6d7696e56237a494af3decb00cee83c735c429 (patch) | |
tree | abfefdab359688c20a4ede146beb0522eb2ca7a3 /test/core_deps.mk | |
parent | aa6c060fca42d7a38f3b91cf334a3544f8346afa (diff) | |
download | erlang.mk-6f6d7696e56237a494af3decb00cee83c735c429.tar.gz erlang.mk-6f6d7696e56237a494af3decb00cee83c735c429.tar.bz2 erlang.mk-6f6d7696e56237a494af3decb00cee83c735c429.zip |
Replace "if $(MAKE) then false" by "! $(MAKE)"
Diffstat (limited to 'test/core_deps.mk')
-rw-r--r-- | test/core_deps.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/core_deps.mk b/test/core_deps.mk index e2e5be7..415deb1 100644 --- a/test/core_deps.mk +++ b/test/core_deps.mk @@ -121,7 +121,7 @@ core-deps-apps-conflict: build clean-core-deps-apps-conflict $t $(MAKE) -C $(APP) new-lib in=cowlib $v $i "Check that building the application fails because of a conflict" - $t if $(MAKE) -C $(APP) $v; then false; fi + $t ! $(MAKE) -C $(APP) $v $i "Check that Cowlib wasn't fetched" $t test ! -e $(APP)/deps/cowlib @@ -140,7 +140,7 @@ core-deps-apps-deep-conflict: build clean-core-deps-apps-deep-conflict $t $(MAKE) -C $(APP) new-lib in=cowlib $v $i "Check that building the application fails because of a conflict" - $t if $(MAKE) -C $(APP) $v; then false; fi + $t ! $(MAKE) -C $(APP) $v $i "Check that Cowlib wasn't fetched" $t test ! -e $(APP)/deps/cowlib @@ -658,7 +658,7 @@ core-deps-fetch-fail-bad: build clean-core-deps-fetch-fail-bad $t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = cowlib\ndep_cowlib = oops https://github.com/ninenines/cowlib 1.0.0\n"}' $(APP)/Makefile $i "Check that building the application fails" - $t if $(MAKE) -C $(APP) $v; then false; fi + $t ! $(MAKE) -C $(APP) $v core-deps-fetch-fail-unknown: build clean-core-deps-fetch-fail-unknown @@ -671,7 +671,7 @@ core-deps-fetch-fail-unknown: build clean-core-deps-fetch-fail-unknown $t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = unknown\n"}' $(APP)/Makefile $i "Check that building the application fails" - $t if $(MAKE) -C $(APP) $v; then false; fi + $t ! $(MAKE) -C $(APP) $v core-deps-fetch-git: build clean-core-deps-fetch-git @@ -776,7 +776,7 @@ core-deps-fetch-legacy: build clean-core-deps-fetch-legacy $t perl -ni.bak -e 'print;if ($$.==1) {print "DEPS = cowlib\ndep_cowlib = https://github.com/ninenines/cowlib 1.0.0\n"}' $(APP)/Makefile $i "Check that building the application fails" - $t if $(MAKE) -C $(APP) $v; then false; fi + $t ! $(MAKE) -C $(APP) $v $i "Check that building the application works with IS_DEP=1" $t $(MAKE) -C $(APP) IS_DEP=1 $v |