Use "set -euo pipefail" in test-no_std.sh.

This makes it consistent with other shell scripts in the repo.
This commit is contained in:
Dan Gohman
2018-04-20 11:11:38 -07:00
parent 9249080ce8
commit 653c11d580

View File

@@ -1,11 +1,9 @@
#!/bin/bash
set -euo pipefail
# This is the test script for testing the no_std configuration of
# packages which support it.
# Exit immediately on errors.
set -e
# Repository top-level directory.
cd $(dirname "$0")
topdir=$(pwd)