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

View File

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