forked from multiversx/mx-chain-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (36 loc) · 1.33 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
build:
go build ./...
build-cmd:
(cd cmd/node && go build)
clean-test:
go clean -testcache ./...
clean: clean-test
go clean ./...
test: clean-test
go test ./...
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
cross:
./cross_build.sh