forked from hyperledger-labs/fabric-token-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfungible.mk
56 lines (45 loc) · 2.45 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
.PHONY: integration-tests-dlog-fabric
integration-tests-dlog-fabric:
cd ./integration/token/fungible/dlog; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) .
.PHONY: integration-tests-dlog-fabric-t1
integration-tests-dlog-fabric-t1:
cd ./integration/token/fungible/dlog; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --focus "T1" .
.PHONY: integration-tests-dlog-fabric-t1-extras
integration-tests-dlog-fabric-t1-extras:
cd ./integration/token/fungible/dlog; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --focus "Extras" .
.PHONY: integration-tests-dlog-fabric-t2
integration-tests-dlog-fabric-t2:
cd ./integration/token/fungible/dlog; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --focus "T2" .
.PHONY: integration-tests-dlog-fabric-t3
integration-tests-dlog-fabric-t3:
cd ./integration/token/fungible/dlog; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --focus "T3" .
.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
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) .
.PHONY: integration-tests-dloghsm-fabric-t1
integration-tests-dloghsm-fabric-t1: 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) --focus "Fungible with HSM" .
.PHONY: integration-tests-dloghsm-fabric-t2
integration-tests-dloghsm-fabric-t2: 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) --focus "Fungible with Auditor = Issuer with HSM" .
.PHONY: integration-tests-fabtoken-fabric
integration-tests-fabtoken-fabric:
cd ./integration/token/fungible/fabtoken; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) .
.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) .