From 3997b8a923c3e95c14237657f0e2c9301fc5f66d Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Tue, 15 Oct 2013 23:07:26 +0000 Subject: [PATCH] hack: don't set DEBUG when running tests --- hack/make/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make/test b/hack/make/test index 732eb7839..44f8bd6c3 100644 --- a/hack/make/test +++ b/hack/make/test @@ -16,7 +16,7 @@ bundle_test() { for test_dir in $(find_test_dirs); do ( set -x cd $test_dir - DEBUG=1 go test -v -ldflags "$LDFLAGS" $BUILDFLAGS $TESTFLAGS + go test -v -ldflags "$LDFLAGS" $BUILDFLAGS $TESTFLAGS ) done } 2>&1 | tee $DEST/test.log }