From b8da6ed0c8009633cd10064a579367c5203359f8 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 6 Jul 2011 14:56:14 -0700 Subject: [PATCH] Build: run tests with -test.v in verbose mode. Change-Id: I83db9d88e4554e8523fbee2b546b32e1a0a496dd --- build.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.pl b/build.pl index 184745691..186c251af 100755 --- a/build.pl +++ b/build.pl @@ -286,7 +286,8 @@ sub test { die "Tests failed for $target\n"; } } else { - if (system("cd $target && gotest") != 0) { + my $testv = $opt_verbose ? "-test.v" : ""; + if (system("cd $target && gotest $testv") != 0) { die "gtest failed for $target\n"; } }