-
Notifications
You must be signed in to change notification settings - Fork 60
/
interop.mk
56 lines (42 loc) · 2.02 KB
/
interop.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-interop-dlog-t1
integration-tests-interop-dlog-t1:
make integration-tests-interop-dlog TEST_FILTER="T1"
.PHONY: integration-tests-interop-dlog-t2
integration-tests-interop-dlog-t2:
make integration-tests-interop-dlog TEST_FILTER="T2"
.PHONY: integration-tests-interop-dlog-t3
integration-tests-interop-dlog-t3:
make integration-tests-interop-dlog TEST_FILTER="T3"
.PHONY: integration-tests-interop-dlog-t4
integration-tests-interop-dlog-t4:
make integration-tests-interop-dlog TEST_FILTER="T4"
.PHONY: integration-tests-interop-dlog-t5
integration-tests-interop-dlog-t5:
make integration-tests-interop-dlog TEST_FILTER="T5"
.PHONY: integration-tests-interop-dlog-t6
integration-tests-interop-dlog-t6:
make integration-tests-interop-dlog TEST_FILTER="T6"
.PHONY: integration-tests-interop-dlog
integration-tests-interop-dlog:
cd ./integration/token/interop/dlog; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --label-filter="$(TEST_FILTER)" .
.PHONY: integration-tests-interop-fabtoken-t1
integration-tests-interop-fabtoken-t1:
make integration-tests-interop-fabtoken TEST_FILTER="T1"
.PHONY: integration-tests-interop-fabtoken-t2
integration-tests-interop-fabtoken-t2:
make integration-tests-interop-fabtoken TEST_FILTER="T2"
.PHONY: integration-tests-interop-fabtoken-t3
integration-tests-interop-fabtoken-t3:
make integration-tests-interop-fabtoken TEST_FILTER="T3"
.PHONY: integration-tests-interop-fabtoken-t4
integration-tests-interop-fabtoken-t4:
make integration-tests-interop-fabtoken TEST_FILTER="T4"
.PHONY: integration-tests-interop-fabtoken-t5
integration-tests-interop-fabtoken-t5:
make integration-tests-interop-fabtoken TEST_FILTER="T5"
.PHONY: integration-tests-interop-fabtoken-t6
integration-tests-interop-fabtoken-t6:
make integration-tests-interop-fabtoken TEST_FILTER="T6"
.PHONY: integration-tests-interop-fabtoken
integration-tests-interop-fabtoken:
cd ./integration/token/interop/fabtoken; export FAB_BINS=$(FAB_BINS); ginkgo $(GINKGO_TEST_OPTS) --label-filter="$(TEST_FILTER)" .