forked from multiversx/mx-chain-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
89 lines (64 loc) · 2.76 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
CURRENT_DIRECTORY := $(shell pwd)
TESTS_TO_RUN := $(shell go list ./... | grep -v /integrationTests/ | grep -v /testscommon/ | grep -v mock | grep -v disabled)
build:
go build ./...
build-cmd:
(cd cmd/node && go build)
clean-test:
go clean -testcache ./...
clean: clean-test
go clean -cache ./...
go clean ./...
test: clean-test
go test ./...
test-v: clean-test
go test -v ./...
test-serial: clean-test
go test -p 1 ./...
test-short:
go test -short -count=1 ./...
test-short-v:
go test -short -v -count=1 ./...
test-race:
go test -short -race -count=1 ./...
test-memp2p-v:
go test -v -count=1 ./p2p/memp2p
test-consensusBLS-memp2p:
go test -count=1 --run=TestConsensusBLSFullTest ./integrationTests/consensus_memp2p/
test-consensusBLS-memp2p-v:
go test -v -count=1 --run=TestConsensusBLSFullTest ./integrationTests/consensus_memp2p/
test-consensusBLS-v:
go test -v -count=1 --run=TestConsensusBLSFullTest ./integrationTests/consensus/
test-consensusBLS:
go test -count=1 --run=TestConsensusBLSFullTest ./integrationTests/consensus/
test-miniblocks-memp2p-v:
go test -count=1 -v --run=TestShouldProcessBlocksInMultiShardArchitecture_withMemP2P ./integrationTests/multiShard/block_memp2p/
test-miniblocks-v:
go test -count=1 -v --run=TestShouldProcessBlocksInMultiShardArchitecture ./integrationTests/multiShard/block/
test-agario-join-reward:
go test -count=1 -v --run=TestShouldProcessBlocksWithScTxsJoinAndReward ./integrationTests/singleShard/block/
test-miniblocks-sc-v:
go test -count=1 -v ./integrationTests/multiShard/block/executingMiniblocksSc_test.go
test-arwen:
go test -count=1 -v ./integrationTests/vm/arwen/...
test-coverage:
@echo "Running unit tests"
CURRENT_DIRECTORY=$(CURRENT_DIRECTORY) go test -cover -coverprofile=coverage.txt -covermode=atomic -v ${TESTS_TO_RUN}
test-multishard-sc:
go test -count=1 -v ./integrationTests/multiShard/smartContract
benchmark-arwen:
go test -v -count=1 -test.bench 'Benchmark_VmDeployWithFibbonacciAndExecute' -test.run='noruns' ./integrationTests/vm/arwen
go test -v -count=1 -test.bench 'Benchmark_VmDeployWithCPUCalculateAndExecute' -test.run='noruns' ./integrationTests/vm/arwen
go test -v -count=1 -test.bench 'Benchmark_VmDeployWithStringConcatAndExecute' -test.run='noruns' ./integrationTests/vm/arwen
arwen:
ifndef ARWEN_PATH
$(error ARWEN_PATH is undefined)
endif
# When referencing a non-release version, add the commit hash, like this:
#go get github.com/ElrondNetwork/arwen-wasm-vm/cmd/arwen@...
#When referencing a released version, use this instead:
go get github.com/ElrondNetwork/arwen-wasm-vm/cmd/arwen@$(shell cat go.mod | grep arwen-wasm-vm | sed 's/.* //')
go build -o ${ARWEN_PATH} github.com/ElrondNetwork/arwen-wasm-vm/cmd/arwen
stat ${ARWEN_PATH}
cli-docs:
cd ./cmd && bash ./CLI.md.sh