Build: run tests with -test.v in verbose mode.

Change-Id: I83db9d88e4554e8523fbee2b546b32e1a0a496dd
This commit is contained in:
Brad Fitzpatrick 2011-07-06 14:56:14 -07:00
parent 40c4e2e1f0
commit b8da6ed0c8
1 changed files with 2 additions and 1 deletions

View File

@ -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";
}
}