From 921da951ef1b7846826803ceb6485c170f23ef1d Mon Sep 17 00:00:00 2001 From: Victor Hsieh Date: Thu, 23 Jun 2022 09:52:54 -0700 Subject: Reland: Remove workarounds by data_device_bins This reverts commit 4e2e4c93379fbb53f88a09147d17caefdcf850fd, plus replacing data_device_bins with data_device_bins_both. Previously, the test has dirty hacks that force building the device executable in correct name. Switch to the proper solution now that we have it. Bug: 228775576 Test: atest ApkVerityTest Test: lunch cf_x86_64_tv-eng; atest ApkVerityTest (against cf_x86_tv VM) Change-Id: Iccb457131d74a83b9f5cb8457833d7c5ea495b05 Merged-In: Iccb457131d74a83b9f5cb8457833d7c5ea495b05 (cherry picked from commit 3b6c701cc7b0ed470bbd32d2173de5d56d546a89) --- tests/ApkVerityTest/Android.bp | 4 ++-- tests/ApkVerityTest/AndroidTest.xml | 10 +++++++++- tests/ApkVerityTest/block_device_writer/Android.bp | 20 ++++---------------- .../android/blockdevicewriter/BlockDeviceWriter.java | 5 +++-- 4 files changed, 18 insertions(+), 21 deletions(-) diff --git a/tests/ApkVerityTest/Android.bp b/tests/ApkVerityTest/Android.bp index 62e16a5b83de..f026bea80470 100644 --- a/tests/ApkVerityTest/Android.bp +++ b/tests/ApkVerityTest/Android.bp @@ -37,8 +37,8 @@ java_test_host { "general-tests", "vts", ], - target_required: [ - "block_device_writer_module", + data_device_bins_both: [ + "block_device_writer", ], data: [ ":ApkVerityTestCertDer", diff --git a/tests/ApkVerityTest/AndroidTest.xml b/tests/ApkVerityTest/AndroidTest.xml index 55704eda905e..39b75cc27acb 100644 --- a/tests/ApkVerityTest/AndroidTest.xml +++ b/tests/ApkVerityTest/AndroidTest.xml @@ -31,10 +31,18 @@ + + + + diff --git a/tests/ApkVerityTest/block_device_writer/Android.bp b/tests/ApkVerityTest/block_device_writer/Android.bp index fdfa41fd4ca9..0002447d17f2 100644 --- a/tests/ApkVerityTest/block_device_writer/Android.bp +++ b/tests/ApkVerityTest/block_device_writer/Android.bp @@ -24,12 +24,7 @@ package { } cc_test { - // Depending on how the test runs, the executable may be uploaded to different location. - // Before the bug in the file pusher is fixed, workaround by making the name unique. - // See b/124718249#comment12. - name: "block_device_writer_module", - stem: "block_device_writer", - + name: "block_device_writer", srcs: ["block_device_writer.cpp"], cflags: [ "-D_FILE_OFFSET_BITS=64", @@ -42,20 +37,13 @@ cc_test { "libbase", "libutils", ], - // For some reasons, cuttlefish (x86) uses x86_64 test suites for testing. Unfortunately, when - // the uploader does not pick up the executable from correct output location. The following - // workaround allows the test to: - // * upload the 32-bit exectuable for both 32 and 64 bits devices to use - // * refer to the same executable name in Java - // * no need to force the Java test to be archiecture specific. - // - // See b/145573317 for details. + compile_multilib: "both", multilib: { lib32: { - suffix: "", + suffix: "32", }, lib64: { - suffix: "64", // not really used + suffix: "64", }, }, diff --git a/tests/ApkVerityTest/block_device_writer/src/com/android/blockdevicewriter/BlockDeviceWriter.java b/tests/ApkVerityTest/block_device_writer/src/com/android/blockdevicewriter/BlockDeviceWriter.java index 5c2c15b22bb0..9be02ec3be86 100644 --- a/tests/ApkVerityTest/block_device_writer/src/com/android/blockdevicewriter/BlockDeviceWriter.java +++ b/tests/ApkVerityTest/block_device_writer/src/com/android/blockdevicewriter/BlockDeviceWriter.java @@ -32,11 +32,12 @@ import java.util.ArrayList; *

To use this class, please push block_device_writer binary to /data/local/tmp. * 1. In Android.bp, add: *

- *     target_required: ["block_device_writer_module"],
+ *      data_device_bins_both: ["block_device_writer"],
  * 
* 2. In AndroidText.xml, add: *
- *     
+ *     
+ *         
  * 
-- cgit v1.2.3-59-g8ed1b