Add 'test' target. #5

Merged
roysc merged 1 commits from telackey/maketest into main 2023-10-12 15:03:19 +00:00

View File

@ -13,7 +13,15 @@ dumpdiff.plugeth-parallel:
cd dumpdiff-plugeth-parallel && go build -tags plugeth_parallel -o ../$@ .
clean:
rm -f $(ALL)
rm -rf $(ALL) _var
compare-plugeth: dumpdiff.geth dumpdiff.plugeth
./scripts/compare-diffs.sh -d _var/ geth plugeth
compare-plugeth-parallel: dumpdiff.geth dumpdiff.plugeth-parallel
./scripts/compare-diffs.sh -d _var/ geth plugeth-parallel
test: compare-plugeth compare-plugeth-parallel
all: $(ALL)
.PHONY: all