Add 'test' target. (#5)
All checks were successful
Test / Run unit tests (push) Successful in 12m28s
All checks were successful
Test / Run unit tests (push) Successful in 12m28s
``` ❯ make test ./scripts/compare-diffs.sh -d _var/ geth plugeth DBUG[10-11|21:40:14] Registering statediff indexer metrics. DBUG[10-11|21:40:14] Registering statediff DB metrics. WARN [10-11|21:40:14.563] Attempting StateUpdate, but default PluginLoader has not been initialized WARN [10-11|21:40:14.563] Attempting StateUpdate, but default PluginLoader has not been initialized WARN [10-11|21:40:14.563] Attempting PreTrieCommit, but default PluginLoader has not been initialized INFO [10-11|21:40:14.563] Persisted trie from memory database nodes=1 size=147.00B time="5.248µs" gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B WARN [10-11|21:40:14.563] Attempting PostTrieCommit, but default PluginLoader has not been initialized WARN [10-11|21:40:14.563] Attempting StateUpdate, but default PluginLoader has not been initialized WARN [10-11|21:40:14.563] Attempting StateUpdate, but default PluginLoader has not been initialized WARN [10-11|21:40:14.563] Attempting PreTrieCommit, but default PluginLoader has not been initialized INFO [10-11|21:40:14.563] Persisted trie from memory database nodes=1 size=157.00B time="10.904µs" gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B WARN [10-11|21:40:14.563] Attempting PostTrieCommit, but default PluginLoader has not been initialized + diff _var//A/0_diff.txt _var//B/0_diff.txt + diff _var//A/1_diff.txt _var//B/1_diff.txt + diff _var//A/2_diff.txt _var//B/2_diff.txt + diff _var//A/3_diff.txt _var//B/3_diff.txt ./scripts/compare-diffs.sh -d _var/ geth plugeth-parallel DBUG[10-11|21:40:16] Registering statediff indexer metrics. DBUG[10-11|21:40:16] Registering statediff DB metrics. WARN [10-11|21:40:16.986] Attempting StateUpdate, but default PluginLoader has not been initialized WARN [10-11|21:40:16.987] Attempting StateUpdate, but default PluginLoader has not been initialized WARN [10-11|21:40:16.987] Attempting PreTrieCommit, but default PluginLoader has not been initialized INFO [10-11|21:40:16.987] Persisted trie from memory database nodes=1 size=147.00B time="7.87µs" gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B WARN [10-11|21:40:16.987] Attempting PostTrieCommit, but default PluginLoader has not been initialized WARN [10-11|21:40:16.987] Attempting StateUpdate, but default PluginLoader has not been initialized WARN [10-11|21:40:16.988] Attempting StateUpdate, but default PluginLoader has not been initialized WARN [10-11|21:40:16.988] Attempting PreTrieCommit, but default PluginLoader has not been initialized INFO [10-11|21:40:16.988] Persisted trie from memory database nodes=1 size=157.00B time="17.649µs" gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B WARN [10-11|21:40:16.988] Attempting PostTrieCommit, but default PluginLoader has not been initialized + diff _var//A/0_diff.txt _var//B/0_diff.txt + diff _var//A/1_diff.txt _var//B/1_diff.txt + diff _var//A/2_diff.txt _var//B/2_diff.txt + diff _var//A/3_diff.txt _var//B/3_diff.txt ``` Reviewed-on: #5 Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com> Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
This commit is contained in:
parent
fbcb133735
commit
88759a7cbc
10
Makefile
10
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user