-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathfungible.mk
130 lines (99 loc) · 4.63 KB
/
fungible.mk
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.PHONY: integration-tests-dlog-fabric-t1
integration-tests-dlog-fabric-t1:
make integration-tests-dlog-fabric TEST_FILTER="T1"
.PHONY: integration-tests-dlog-fabric-t2
integration-tests-dlog-fabric-t2:
make integration-tests-dlog-fabric TEST_FILTER="T2"
.PHONY: integration-tests-dlog-fabric-t3
integration-tests-dlog-fabric-t3:
make integration-tests-dlog-fabric TEST_FILTER="T3"
.PHONY: integration-tests-dlog-fabric-t4
integration-tests-dlog-fabric-t4:
make integration-tests-dlog-fabric TEST_FILTER="T4"
.PHONY: integration-tests-dlog-fabric-t5
integration-tests-dlog-fabric-t5:
make integration-tests-dlog-fabric TEST_FILTER="T5"
.PHONY: integration-tests-dlog-fabric-t6
integration-tests-dlog-fabric-t6:
make integration-tests-dlog-fabric TEST_FILTER="T6"
.PHONY: integration-tests-dlog-fabric-t7
integration-tests-dlog-fabric-t7:
make integration-tests-dlog-fabric TEST_FILTER="T7"
.PHONY: integration-tests-dlog-fabric-t8
integration-tests-dlog-fabric-t8:
make integration-tests-dlog-fabric TEST_FILTER="T8"
.PHONY: integration-tests-dlog-fabric-t9
integration-tests-dlog-fabric-t9:
make integration-tests-dlog-fabric TEST_FILTER="T9"
.PHONY: integration-tests-dlog-fabric-t10
integration-tests-dlog-fabric-t10:
make integration-tests-dlog-fabric TEST_FILTER="T10"
.PHONY: integration-tests-dlog-fabric-t11
integration-tests-dlog-fabric-t11:
make integration-tests-dlog-fabric TEST_FILTER="T11"
.PHONY: integration-tests-dlog-fabric-t12
integration-tests-dlog-fabric-t12:
make integration-tests-dlog-fabric TEST_FILTER="T12"
.PHONY: integration-tests-dlog-fabric
integration-tests-dlog-fabric:
cd ./integration/token/fungible/dlog; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --label-filter="$(TEST_FILTER)" .
.PHONY: integration-tests-fabtoken-dlog-fabric
integration-tests-fabtoken-dlog-fabric:
cd ./integration/token/fungible/mixed; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) .
.PHONY: integration-tests-dloghsm-fabric-t1
integration-tests-dloghsm-fabric-t1:
make integration-tests-dloghsm-fabric TEST_FILTER="T1"
.PHONY: integration-tests-dloghsm-fabric-t2
integration-tests-dloghsm-fabric-t2:
make integration-tests-dloghsm-fabric TEST_FILTER="T2"
.PHONY: integration-tests-dloghsm-fabric
integration-tests-dloghsm-fabric: install-softhsm
@echo "Setup SoftHSM"
@./ci/scripts/setup_softhsm.sh
@echo "Start Integration Test"
cd ./integration/token/fungible/dloghsm; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --tags pkcs11 --label-filter="$(TEST_FILTER)" .
.PHONY: integration-tests-fabtoken-fabric-t1
integration-tests-fabtoken-fabric-t1:
make integration-tests-fabtoken-fabric TEST_FILTER="T1"
.PHONY: integration-tests-fabtoken-fabric-t2
integration-tests-fabtoken-fabric-t2:
make integration-tests-fabtoken-fabric TEST_FILTER="T2"
.PHONY: integration-tests-fabtoken-fabric-t3
integration-tests-fabtoken-fabric-t3:
make integration-tests-fabtoken-fabric TEST_FILTER="T3"
.PHONY: integration-tests-fabtoken-fabric-t4
integration-tests-fabtoken-fabric-t4:
make integration-tests-fabtoken-fabric TEST_FILTER="T4"
.PHONY: integration-tests-fabtoken-fabric-t5
integration-tests-fabtoken-fabric-t5:
make integration-tests-fabtoken-fabric TEST_FILTER="T5"
.PHONY: integration-tests-fabtoken-fabric
integration-tests-fabtoken-fabric:
cd ./integration/token/fungible/fabtoken; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --tags pkcs11 --label-filter="$(TEST_FILTER)" .
.PHONY: integration-tests-dlog-orion
integration-tests-dlog-orion:
cd ./integration/token/fungible/odlog; ginkgo $(GINKGO_TEST_OPTS) .
.PHONY: integration-tests-fabtoken-orion
integration-tests-fabtoken-orion:
cd ./integration/token/fungible/ofabtoken; ginkgo $(GINKGO_TEST_OPTS) .
.PHONY: integration-tests-update-t1
integration-tests-update-t1:
make integration-tests-update TEST_FILTER="T1"
.PHONY: integration-tests-update-t2
integration-tests-update-t2:
make integration-tests-update TEST_FILTER="T2"
.PHONY: integration-tests-update-t3
integration-tests-update-t3:
make integration-tests-update TEST_FILTER="T3"
.PHONY: integration-tests-update
integration-tests-update:
cd ./integration/token/fungible/update; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --label-filter="$(TEST_FILTER)" .
.PHONY: integration-tests-dlogstress-t1
integration-tests-dlogstress-t1:
make integration-tests-dlogstress TEST_FILTER="T1"
.PHONY: integration-tests-dlogstress-t2
integration-tests-dlogstress-t2:
make integration-tests-dlogstress TEST_FILTER="T2"
.PHONY: integration-tests-dlogstress
integration-tests-dlogstress:
cd ./integration/token/fungible/dlogstress; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --label-filter="$(TEST_FILTER)" .