summaryrefslogtreecommitdiff
path: root/support/go-test
blob: e4f87b731fd1c303e7bbdd1c503817a6cd09d881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env ruby

require_relative 'go_build'
include GoBuild

def main
  create_fresh_build_dir
  run!(GO_ENV, %W[go test #{GO_PACKAGE}/...])
  puts 'OK'
end

main