Browse Source

Fix verbosity of proper and triq tests

Loïc Hoguin 6 years ago
parent
commit
bf0aa30519
2 changed files with 2 additions and 2 deletions
  1. 1 1
      test/plugin_proper.mk
  2. 1 1
      test/plugin_triq.mk

+ 1 - 1
test/plugin_proper.mk

@@ -32,7 +32,7 @@ proper-test-dir: build clean
 		"prop_bar() -> ?FORALL(_, any(), true)." > $(APP)/test/$(APP)_tests.erl
 
 	$i "Run the PropEr plugin"
-	$t $(MAKE) -C $(APP) proper > $(APP)/proper.log
+	$t $(MAKE) -C $(APP) proper $v > $(APP)/proper.log
 
 	$i "Check that both properties were checked"
 	$t grep -q prop_foo $(APP)/proper.log

+ 1 - 1
test/plugin_triq.mk

@@ -32,7 +32,7 @@ triq-test-dir: build clean
 		"prop_bar() -> ?FORALL(_, any(), true)." > $(APP)/test/$(APP)_tests.erl
 
 	$i "Run the Triq plugin"
-	$t $(MAKE) -C $(APP) triq > $(APP)/triq.log
+	$t $(MAKE) -C $(APP) triq $v > $(APP)/triq.log
 
 	$i "Check that both properties were checked"
 	$t grep -q prop_foo $(APP)/triq.log