mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-01 11:58:21 +00:00
4b465c007f
Change-Id: Ib2e96183b99deddbbd3132cd2ca6fa34a25994c6 Reviewed-on: https://go-review.googlesource.com/c/164645 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
9 lines
276 B
Bash
Executable File
9 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2018 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
go test -v -timeout 60m integration_test.go "$@" -regenerate
|
|
exit $?
|