From 5a9f4e58683b6a59e0c0d997bd9817e8ee7fcd52 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Mon, 19 Feb 2018 11:31:04 -0800 Subject: [PATCH] Frameworks: Disable two recoverablekeystore tests Disable failing tests. Bug: 73513670 Bug: 73609806 Test: atest PersistentKeyChainSnapshotTest Test: m javac-check RUN_ERROR_PRONE=true Change-Id: I86c37b6d9875c7380fb90aa1ab94b4fbb311ada7 --- .../storage/PersistentKeyChainSnapshotTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/PersistentKeyChainSnapshotTest.java b/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/PersistentKeyChainSnapshotTest.java index dcc6910e296a5..353a68f34a901 100644 --- a/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/PersistentKeyChainSnapshotTest.java +++ b/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/storage/PersistentKeyChainSnapshotTest.java @@ -27,6 +27,7 @@ import android.security.keystore.recovery.KeyChainProtectionParams; import android.support.test.filters.SmallTest; import android.support.test.runner.AndroidJUnit4; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; @@ -175,6 +176,7 @@ public class PersistentKeyChainSnapshotTest { () -> reader.readProtectionParams()); } + @Ignore("Investigate why this is broken. b/73609806") @Test public void testKeyChainSnapshot() throws Exception { PersistentKeyChainSnapshot writer = new PersistentKeyChainSnapshot(); @@ -235,6 +237,7 @@ public class PersistentKeyChainSnapshotTest { verifyDeserialize(snapshot); } + @Ignore("Investigate why this is broken. b/73609806") @Test public void testKeyChainSnapshot_withManyKeysAndProtectionParams() throws Exception { PersistentKeyChainSnapshot writer = new PersistentKeyChainSnapshot();