set -xe
if [ ! -e ../target/debug/examples/bogo_shim ] ; then
cargo test --no-run --features dangerous_configuration,quic
fi
if [ ! -e bogo/ ] ; then
./fetch-and-build
cp -v keys/* bogo/
fi
case $OSTYPE in darwin*) set +e ;; esac
( cd bogo && ./bogo.test -shim-path ../../target/debug/examples/bogo_shim \
-shim-config ../config.json \
-pipe -allow-unimplemented )
true