blob: 439ed55d09e35986f8fa7f9b679672956a7d27c1 [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 \
9 -Pandroidx.ignoreTestFailures \
10 -Pandroidx.displayTestOutput=false \
11 "$@"
12
13echo "Completing $0 at $(date)"