examples: enable debugging to help determine why tests are hanging (#3166)

This commit is contained in:
Doug Fawley 2019-11-08 09:53:16 -08:00 committed by GitHub
parent 6071e7015f
commit caaa764950
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 23 deletions

View File

@ -15,7 +15,7 @@
# limitations under the License.
#
set +e
set +e -x
export TMPDIR=$(mktemp -d)
trap "rm -rf ${TMPDIR}" EXIT
@ -145,4 +145,3 @@ for example in ${EXAMPLES[@]}; do
clean
done