blob: bba9e74e658ec1adc364c537ce8faa02f6e8314f [file] [log] [blame]
Jeff Gaston5097b4f2019-10-16 18:53:06 -04001#!/bin/bash
2set -e
3
Jeff Gaston868c5022020-06-16 17:32:18 -04004echo "Starting $0 at $(date)"
5
Owen Graya6247c32020-02-03 13:38:24 -05006cd "$(dirname $0)"
Jeff Gaston5097b4f2019-10-16 18:53:06 -04007
Aurimas Liutikas1c686ec2021-04-29 16:32:55 -07008impl/build.sh test \
Aurimas Liutikas2a9a1992020-04-02 14:51:01 -07009 -Pandroidx.ignoreTestFailures \
Jeff Gaston0b098712020-08-27 08:26:39 -040010 -Pandroidx.displayTestOutput=false \
Jeff Gaston27fcfa02021-01-15 15:32:37 -050011 "$@"
Owen Gray33b89662020-01-15 14:43:29 +000012
Jeff Gaston868c5022020-06-16 17:32:18 -040013echo "Completing $0 at $(date)"