summaryrefslogtreecommitdiff
path: root/vendor/github.com/hpcloud/tail/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hpcloud/tail/Makefile')
-rw-r--r--vendor/github.com/hpcloud/tail/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/hpcloud/tail/Makefile b/vendor/github.com/hpcloud/tail/Makefile
new file mode 100644
index 000000000..6591b24fc
--- /dev/null
+++ b/vendor/github.com/hpcloud/tail/Makefile
@@ -0,0 +1,11 @@
+default: test
+
+test: *.go
+ go test -v -race ./...
+
+fmt:
+ gofmt -w .
+
+# Run the test in an isolated environment.
+fulltest:
+ docker build -t hpcloud/tail .