summaryrefslogtreecommitdiff
path: root/support/go-test
diff options
context:
space:
mode:
Diffstat (limited to 'support/go-test')
-rwxr-xr-xsupport/go-test4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/go-test b/support/go-test
index e4f87b7..0c043f6 100755
--- a/support/go-test
+++ b/support/go-test
@@ -4,8 +4,8 @@ require_relative 'go_build'
include GoBuild
def main
- create_fresh_build_dir
- run!(GO_ENV, %W[go test #{GO_PACKAGE}/...])
+ ensure_build_dir_exists
+ run!(GO_ENV, %w[go test ./...], chdir: GO_DIR)
puts 'OK'
end