aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-10-22 12:33:29 +0200
committerLoïc Hoguin <[email protected]>2015-10-22 12:33:29 +0200
commitd07357f52ad8a0b67aef6d95506bb2df0a068ad3 (patch)
tree3fdd6bd860f958dca5e8e979de8454a7a4cc7bad /test/Makefile
parent8d49f08a11da8314cd999f9a03af62ef018595c4 (diff)
parent6f6d7696e56237a494af3decb00cee83c735c429 (diff)
downloaderlang.mk-d07357f52ad8a0b67aef6d95506bb2df0a068ad3.tar.gz
erlang.mk-d07357f52ad8a0b67aef6d95506bb2df0a068ad3.tar.bz2
erlang.mk-d07357f52ad8a0b67aef6d95506bb2df0a068ad3.zip
Merge branch 'fix-test-core-plugins-one' of https://github.com/rabbitmq/erlang.mk
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 04b31af..4779c9f 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -348,7 +348,7 @@ ct: app1
"all() -> [testcase1]." \
"testcase1(_) -> 42 = m:succ(1)." \
> app1/test/failing_SUITE.erl
- $t if $(MAKE) -C app1 ct-failing $v ; then false ; fi
+ $t ! $(MAKE) -C app1 ct-failing $v
$i "Checking that '$(MAKE) distclean-ct' deletes logs."
$t $(MAKE) -C app1 distclean-ct $v
$t [ ! -e app1/logs ]
@@ -396,7 +396,7 @@ eunit: app1
" ?assertEqual(42, t:succ(1))." \
> app1/eunit/t_tests.erl
$t $(MAKE) -C app1 distclean TEST_DIR=eunit $v
- $t if $(MAKE) -C app1 eunit TEST_DIR=eunit $v ; then false ; fi
+ $t ! $(MAKE) -C app1 eunit TEST_DIR=eunit $v
$t rm -rf app1/eunit app1/src/t.erl app1/test-eunit.log
$i "Test 'eunit' passed."