diff options
author | Martin Thomson <martin.thomson@gmail.com> | 2018-08-27 13:36:00 +1000 |
---|---|---|
committer | Martin Thomson <martin.thomson@gmail.com> | 2018-08-27 13:36:00 +1000 |
commit | 3d2eb094dde31d386f6a63576ecaa68adddbadb3 (patch) | |
tree | 5c1e007c81cab37123eab52a252481eb32346af9 /tests | |
parent | 2e5e5692326dda658ab1cdedb33468e208b82c58 (diff) | |
download | nss-hg-3d2eb094dde31d386f6a63576ecaa68adddbadb3.tar.gz |
Bug 1483129 - Update bogo tests, a=bustage
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/bogo/bogo.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/bogo/bogo.sh b/tests/bogo/bogo.sh index 1038b864a..e3e9c32df 100755 --- a/tests/bogo/bogo.sh +++ b/tests/bogo/bogo.sh @@ -25,7 +25,7 @@ bogo_init() BORING=${BORING:=boringssl} if [ ! -d "$BORING" ]; then git clone -q https://boringssl.googlesource.com/boringssl "$BORING" - git -C "$BORING" checkout -q 9af1edbe2201e6c6d58e5e484bf56281d8c751d9 + git -C "$BORING" checkout -q 7f4f41fa81c03e0f8ef1ab5b3d1d566b5968f107 fi SCRIPTNAME="bogo.sh" @@ -39,9 +39,9 @@ bogo_cleanup() . common/cleanup.sh } -cd ../ -cwd=$(cd $(dirname $0); pwd -P) -SOURCE_DIR="$cwd"/.. +cd "$(dirname "$0")" +cwd=$(pwd -P) +SOURCE_DIR="$(cd "$cwd"/../..; pwd -P)" bogo_init (cd "$BORING"/ssl/test/runner; GOPATH="$cwd" go test -pipe -shim-path "${BINDIR}"/nss_bogo_shim \ |