diff options
Diffstat (limited to 'test/xdsserver_test.go')
-rw-r--r-- | test/xdsserver_test.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/xdsserver_test.go b/test/xdsserver_test.go index b8e98b5..89f73a6 100644 --- a/test/xdsserver_test.go +++ b/test/xdsserver_test.go @@ -47,6 +47,18 @@ var HTTPCli *common.HTTPClient var logDir string var sCli *IOSockClient +func Debug(t *testing.T, args ...interface{}) { + if os.Getenv("VERBOSE") != "" { + t.Log(args) + } +} + +func Debugf(t *testing.T, format string, args ...interface{}) { + if os.Getenv("VERBOSE") != "" { + t.Logf(format, args) + } +} + func Copy(src, dst string) error { in, err := os.Open(src) if err != nil { |