aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2022-01-31 13:11:11 -0800
committerBob Badour <bbadour@google.com>2022-01-31 14:14:27 -0800
commit91af68b1e10daa8ca1cf2433430eafe5c079a36f (patch)
treef03ef235cb135f2b7080162a96861cd1799c7adc
parentafe22b9a74172a021cf97b2ba9e531087896c32c (diff)
downloadbuild-91af68b1e10daa8ca1cf2433430eafe5c079a36f.tar.gz
Fix copy+paste error.
The tool under test is dumpresolutions not listshare. Test: m dumpresolutions; out/soong/host/linux-x85/dumpresolutions ... where ... is the path to the .meta_lic file for the system image. In my case if $ export PRODUCT=$(realpath $ANDROID_PRODUCT_OUT --relative-to=$PWD) ... can be expressed as: ${PRODUCT}/gen/META/lic_intermediates/${PRODUCT}/system.img.meta_lic Change-Id: Id3d6e701ebd3dab03f407116d85a5e2aab8c5c59
-rw-r--r--tools/compliance/cmd/dumpresolutions/dumpresolutions_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/compliance/cmd/dumpresolutions/dumpresolutions_test.go b/tools/compliance/cmd/dumpresolutions/dumpresolutions_test.go
index b698bf20a8..b7ccdc5f10 100644
--- a/tools/compliance/cmd/dumpresolutions/dumpresolutions_test.go
+++ b/tools/compliance/cmd/dumpresolutions/dumpresolutions_test.go
@@ -919,7 +919,7 @@ func Test_plaintext(t *testing.T) {
for len(outList) > startLine && len(expectedList) > startLine && outList[startLine] == expectedList[startLine] {
startLine++
}
- t.Errorf("listshare: gotStdout = %v, want %v, somewhere near line %d Stdout = %v, want %v",
+ t.Errorf("dumpresoliutions: gotStdout = %v, want %v, somewhere near line %d Stdout = %v, want %v",
out, expected, startLine+1, outList[startLine], expectedList[startLine])
}
})