blob: 58a73db87bea8083a22ecf2ce6c87feacc3c26d0 [file] [log] [blame]
#!/bin/bash
# Helper script to unlock the keychain in the same session
# as the test runner script.
set -e
if [ -f /usr/local/bin/unlock_login_keychain.sh ]
then
/usr/local/bin/unlock_login_keychain.sh
else
echo "This bot does not support codesigning"
fi
args=( "$@" )
dart bin/test_runner.dart test "${args[@]}"