blob: 34d4f029ccfc93ac4189bb83e6ec09718791cbcb [file] [log] [blame]
Alan Viverette5f0e16f2021-08-20 15:38:19 -04001#!/bin/bash
2set -e
3
4echo "Starting $0 at $(date)"
5
6SCRIPT_PATH="$(cd $(dirname $0) && pwd)"
7
8$SCRIPT_PATH/impl/build-studio-and-androidx.sh test \
Aurimas Liutikas41c58e02022-06-09 08:54:18 -07009 --ci \
Alan Viverette5f0e16f2021-08-20 15:38:19 -040010 -Pandroidx.ignoreTestFailures \
11 -Pandroidx.displayTestOutput=false \
12 "$@"
13
14echo "Completing $0 at $(date)"