blob: 7a0dfb08fcfe74f798ecbfbbbac7afaab7049410 [file] [log] [blame]
Peter Qiu601964b2016-09-26 13:14:13 -07001#!/usr/bin/env bash
2
3if [ -z $ANDROID_BUILD_TOP ]; then
4 echo "You need to source and lunch before you can use this script"
5 exit 1
6fi
7
8echo "Running tests"
9
10set -e # fail early
11
12echo "+ mmma -j32 $ANDROID_BUILD_TOP/frameworks/base/wifi/tests"
13# NOTE Don't actually run the command above since this shell doesn't inherit functions from the
14# caller.
xshu855a1062019-08-02 15:47:51 -070015$ANDROID_BUILD_TOP/build/soong/soong_ui.bash --make-mode MODULES-IN-frameworks-base-wifi-tests
Peter Qiu601964b2016-09-26 13:14:13 -070016
17set -x # print commands
18
19adb root
20adb wait-for-device
21
Otto Seiskarif4422632019-04-12 13:16:14 +030022TARGET_ARCH=$($ANDROID_BUILD_TOP/build/soong/soong_ui.bash --dumpvar-mode TARGET_ARCH)
23adb install -r -g "$OUT/testcases/FrameworksWifiApiTests/$TARGET_ARCH/FrameworksWifiApiTests.apk"
Peter Qiu601964b2016-09-26 13:14:13 -070024
Rebecca Silberstein3f26ff22018-04-23 15:54:36 -070025adb shell am instrument --no-hidden-api-checks -w "$@" \
KOUSHIK PANUGANTIc9f79d82018-12-18 18:43:13 -080026 'android.net.wifi.test/androidx.test.runner.AndroidJUnitRunner'