diff options
author | Michael Plass <mplass@google.com> | 2019-09-23 16:00:17 -0700 |
---|---|---|
committer | Michael Plass <mplass@google.com> | 2019-09-23 16:00:17 -0700 |
commit | bdeb1a33f2326339a01896865a5f5906c99a792c (patch) | |
tree | 0bcece2a048aea35351375b838fe7f5cd1a3fe52 /tests | |
parent | 111e4e3a6f5dd590dd354a55ea06a0320a42b99c (diff) |
[Wifi coverage.sh] Correct the classfiles parameter
The previous change introduced a separate output directory for the
coverage run. When reporting, get the classfiles from there instead of
the usual place.
Bug: 140647378
Test: m clean && frameworks/opt/net/wifi/tests/wifitests/coverage.sh /tmp/cov
Change-Id: Ide6025684090b77cba122fdc8056a720112c6bea
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/wifitests/coverage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wifitests/coverage.sh b/tests/wifitests/coverage.sh index 770f057d7..22c681439 100755 --- a/tests/wifitests/coverage.sh +++ b/tests/wifitests/coverage.sh @@ -70,7 +70,7 @@ adb pull $REMOTE_COVERAGE_OUTPUT_FILE $COVERAGE_OUTPUT_FILE java -jar $REPORTER_JAR \ report \ - --classfiles $ANDROID_BUILD_TOP/out/soong/.intermediates/frameworks/opt/net/wifi/service/wifi-service/android_common/javac/classes/ \ + --classfiles $BUILD_OUT_DIR/soong/.intermediates/frameworks/opt/net/wifi/service/wifi-service/android_common/javac/classes/ \ --html $OUTPUT_DIR \ --sourcefiles $ANDROID_BUILD_TOP/frameworks/opt/net/wifi/tests/wifitests/src \ --sourcefiles $ANDROID_BUILD_TOP/frameworks/opt/net/wifi/service/java \ |