1#!/usr/bin/env bash 2# 3# Entry point for Dockerfile for running a go test. 4# 5set -eux 6 7# Prep files. 8cd /src 9rm -f test.suite 10cp -r $HOME/install ./install 11 12export PATH="$MONGODB_BINARIES:$PATH" 13 14# Run the test. 15bash ./.evergreen/run-tests.sh