diff options
author | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-06-01 12:46:26 +0800 |
---|---|---|
committer | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-06-02 03:18:42 +0800 |
commit | 51e6499aa198cdb5476de083084d5affec408c26 (patch) | |
tree | ea12676b5d9b2f01277a9d86c57b16d3d9ef6b2c | |
parent | 58d59e8c1a3ca7edd3de5f41623a50b5bb2c574d (diff) | |
download | dexon-tests-51e6499aa198cdb5476de083084d5affec408c26.tar dexon-tests-51e6499aa198cdb5476de083084d5affec408c26.tar.gz dexon-tests-51e6499aa198cdb5476de083084d5affec408c26.tar.bz2 dexon-tests-51e6499aa198cdb5476de083084d5affec408c26.tar.lz dexon-tests-51e6499aa198cdb5476de083084d5affec408c26.tar.xz dexon-tests-51e6499aa198cdb5476de083084d5affec408c26.tar.zst dexon-tests-51e6499aa198cdb5476de083084d5affec408c26.zip |
Makefile: test runners as well
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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: |