Update eth-testing #7
7
Makefile
7
Makefile
@ -2,6 +2,7 @@
|
||||
# go-ethereum import conflicts
|
||||
|
||||
ALL := dumpdiff.geth dumpdiff.plugeth dumpdiff.plugeth-parallel
|
||||
BUILD_DIR := ./build
|
||||
|
||||
dumpdiff.geth: dumpdiff-geth/*
|
||||
cd dumpdiff-geth && go build -tags geth -o ../$@ .
|
||||
@ -13,13 +14,13 @@ dumpdiff.plugeth-parallel:
|
||||
cd dumpdiff-plugeth-parallel && go build -tags plugeth_parallel -o ../$@ .
|
||||
|
||||
clean:
|
||||
rm -rf $(ALL) _var
|
||||
rm -rf $(ALL) $(BUILD_DIR)
|
||||
|
||||
compare-plugeth: dumpdiff.geth dumpdiff.plugeth
|
||||
./scripts/compare-diffs.sh -d _var/ geth plugeth
|
||||
./scripts/compare-diffs.sh -d $(BUILD_DIR)/ geth plugeth
|
||||
|
||||
compare-plugeth-parallel: dumpdiff.geth dumpdiff.plugeth-parallel
|
||||
./scripts/compare-diffs.sh -d _var/ geth plugeth-parallel
|
||||
./scripts/compare-diffs.sh -d $(BUILD_DIR)/ geth plugeth-parallel
|
||||
|
||||
test: compare-plugeth compare-plugeth-parallel
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user