Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 419ed1d8 authored by Victor Hsieh's avatar Victor Hsieh
Browse files

Add block_device_writer to pts

Test: treehugger & atest locally on flame
Bug: 145573317
Change-Id: I9641a425b46abe775a21f1014f6f236586dd4c12
parent 458fbcba
Loading
Loading
Loading
Loading
+17 −1
Original line number Original line Diff line number Diff line
@@ -30,7 +30,23 @@ cc_test {
        "-g",
        "-g",
    ],
    ],
    shared_libs: ["libbase", "libutils"],
    shared_libs: ["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.
    multilib: {
        lib32: {
            suffix: "",
        },
        lib64: {
            suffix: "64",  // not really used
        },
    },


    test_suites: ["general-tests"],
    test_suites: ["general-tests", "pts"],
    gtest: false,
    gtest: false,
}
}