#!/usr/bin/env bash

set -ex

mkdir -p bogo
pushd bogo

git init --initial-branch main
git config core.sparsecheckout 1
cat << EOF > .git/info/sparse-checkout
go.mod
go.sum
ssl/test/runner
util/testresult
EOF

# fix on a tested point of rustls-testing branch
COMMIT=92b3d4e221b4b4690dc9c3f8ada7e92df843e987
git fetch --depth=1 https://github.com/rustls/boringssl.git $COMMIT
git checkout $COMMIT
(cd ssl/test/runner && go test -c)

popd
