Merge pull request #16747 from vdemeester/docs-testdirs

Update test-and-docs with TESTDIRS
This commit is contained in:
Tianon Gravi
2015-10-05 10:39:56 -07:00
2 changed files with 24 additions and 1 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ go_run_test_dir() {
TESTS_FAILED=()
while read dir; do
echo
echo '+ go test' $TESTFLAGS "${DOCKER_PKG}${dir#.}"
echo '+ go test' $TESTFLAGS "${DOCKER_PKG}/${dir#./}"
precompiled="$ABS_DEST/precompiled/$dir.test$(binary_extension)"
if ! ( cd "$dir" && test_env "$precompiled" $TESTFLAGS ); then
TESTS_FAILED+=("$dir")