| Alan Viverette | 5f0e16f | 2021-08-20 15:38:19 -0400 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | set -e | ||||
| 3 | |||||
| 4 | echo "Starting $0 at $(date)" | ||||
| 5 | |||||
| 6 | SCRIPT_PATH="$(cd $(dirname $0) && pwd)" | ||||
| 7 | |||||
| 8 | $SCRIPT_PATH/impl/build-studio-and-androidx.sh test \ | ||||
| 9 | -Pandroidx.ignoreTestFailures \ | ||||
| 10 | -Pandroidx.displayTestOutput=false \ | ||||
| 11 | "$@" | ||||
| 12 | |||||
| 13 | echo "Completing $0 at $(date)" | ||||