summaryrefslogtreecommitdiff
path: root/support/go-test
diff options
context:
space:
mode:
Diffstat (limited to 'support/go-test')
-rwxr-xr-xsupport/go-test12
1 files changed, 0 insertions, 12 deletions
diff --git a/support/go-test b/support/go-test
deleted file mode 100755
index 0c043f6..0000000
--- a/support/go-test
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env ruby
-
-require_relative 'go_build'
-include GoBuild
-
-def main
- ensure_build_dir_exists
- run!(GO_ENV, %w[go test ./...], chdir: GO_DIR)
- puts 'OK'
-end
-
-main