diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2020-02-12 00:55:32 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-02-12 00:55:32 +0000 |
commit | 7ef11494ea6bb027848402fddca8e78e237b33b6 (patch) | |
tree | e6732d5f9e8cabb9adbfdae55e4ac9a81a277b7f /startop | |
parent | 89580dc2edd934f02e55691ddb8f0de93bb7f873 (diff) | |
parent | 62416783e0aeee7ae1bc9bcac8db5a50f2464696 (diff) |
Merge "iorap: Disable iorap integration test temporarily."
Diffstat (limited to 'startop')
-rw-r--r-- | startop/iorap/tests/src/com/google/android/startop/iorap/IIorapIntegrationTest.kt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/startop/iorap/tests/src/com/google/android/startop/iorap/IIorapIntegrationTest.kt b/startop/iorap/tests/src/com/google/android/startop/iorap/IIorapIntegrationTest.kt index 460add897f2f..18c249136d05 100644 --- a/startop/iorap/tests/src/com/google/android/startop/iorap/IIorapIntegrationTest.kt +++ b/startop/iorap/tests/src/com/google/android/startop/iorap/IIorapIntegrationTest.kt @@ -16,6 +16,7 @@ package com.google.android.startop.iorap import android.net.Uri import android.os.ServiceManager +import androidx.test.filters.FlakyTest import androidx.test.filters.MediumTest import org.junit.Test import org.mockito.Mockito.argThat @@ -26,6 +27,7 @@ import org.mockito.Mockito.timeout // @Ignore("Test is disabled until iorapd is added to init and there's selinux policies for it") @MediumTest +@FlakyTest(bugId = 149098310) // Failing on cuttlefish with SecurityException. class IIorapIntegrationTest { /** * @throws ServiceManager.ServiceNotFoundException if iorapd service could not be found @@ -55,6 +57,9 @@ class IIorapIntegrationTest { private fun testAnyMethod(func: (RequestId) -> Unit) { val taskListener = spy(DummyTaskListener())!! + // FIXME: b/149098310 + return + try { iorapService.setTaskListener(taskListener) // Note: Binder guarantees total order for oneway messages sent to the same binder |