From 51e6499aa198cdb5476de083084d5affec408c26 Mon Sep 17 00:00:00 2001 From: Everett Hildenbrandt Date: Thu, 31 May 2018 22:46:26 -0600 Subject: Makefile: test runners as well --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 032d081b6..0e0d4df84 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,17 @@ fill-bc: $(bc_tests:=.fill) fill-vm: $(vm_tests:=.fill) fill-all: fill-tx fill-gs fill-bc fill-vm +test-tx: $(tx_tests:=.test) +test-gs: $(gs_tests:=.test) +test-bc: $(bc_tests:=.test) +test-vm: $(vm_tests:=.test) +test-all: test-tx test-gs test-bc test-vm + +# Testing command + +%.test: + testeth -t $* -- --verbosity 2 + # Actual filling command %.fill: -- cgit