diff options
-rw-r--r-- | test/odsign/test-src/com/android/tests/odsign/CompOsTestUtils.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/odsign/test-src/com/android/tests/odsign/CompOsTestUtils.java b/test/odsign/test-src/com/android/tests/odsign/CompOsTestUtils.java index 4521b6fa59..91a6276845 100644 --- a/test/odsign/test-src/com/android/tests/odsign/CompOsTestUtils.java +++ b/test/odsign/test-src/com/android/tests/odsign/CompOsTestUtils.java @@ -120,7 +120,8 @@ public class CompOsTestUtils { // We have to have kernel support for a VM. assumeTrue("Need an actual TestDevice", mDevice instanceof TestDevice); TestDevice testDevice = (TestDevice) mDevice; - assumeTrue("Requires VM support", testDevice.supportsMicrodroid()); + assumeTrue("Requires protected VM support", + testDevice.supportsMicrodroid(true /* protectedVm*/)); // And the CompOS APEX must be present. assumeTrue(mDevice.doesFileExist("/apex/com.android.compos/")); |