summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/hashicorp/memberlist/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/memberlist/Makefile')
-rw-r--r--vendor/github.com/hashicorp/memberlist/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/memberlist/Makefile b/vendor/github.com/hashicorp/memberlist/Makefile
new file mode 100644
index 000000000..56ef6c28c
--- /dev/null
+++ b/vendor/github.com/hashicorp/memberlist/Makefile
@@ -0,0 +1,14 @@
+test: subnet
+ go test ./...
+
+integ: subnet
+ INTEG_TESTS=yes go test ./...
+
+subnet:
+ ./test/setup_subnet.sh
+
+cov:
+ gocov test github.com/hashicorp/memberlist | gocov-html > /tmp/coverage.html
+ open /tmp/coverage.html
+
+.PNONY: test cov integ