| #!/bin/bash | |
| set -e | |
| echo "Starting $0 at $(date)" | |
| SCRIPT_PATH="$(cd $(dirname $0) && pwd)" | |
| $SCRIPT_PATH/impl/build-studio-and-androidx.sh test \ | |
| --ci \ | |
| -Pandroidx.ignoreTestFailures \ | |
| -Pandroidx.displayTestOutput=false \ | |
| "$@" | |
| echo "Completing $0 at $(date)" |