aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEran Messeri <eranm@google.com>2023-08-04 14:36:30 +0100
committerEran Messeri <eranm@google.com>2023-08-09 13:22:40 +0100
commit27396c150f72bb17abcda02bdc6c5fd939a389a8 (patch)
tree78003dfb9f5c17f1cb766b9e8e0c61d52b52fd92
parentd89919bab7a444fd2fc1cb7f60b7e8eaee289ead (diff)
downloadwycheproof-27396c150f72bb17abcda02bdc6c5fd939a389a8.tar.gz
Ignore long MAC tests
Long MAC tests might take a long time to run because of slow processors or inefficiencies in some IPC layer. Disable these tests until concrete performance requirements can be specified. Bug: 288588810 Bug: 292870100 Bug: 291706328 Bug: 289893151 Bug: 293261385 Test: atest CtsKeystoreWycheproofTestCases:com.google.security.wycheproof.MacTest Change-Id: Iee54e00f924651b6f3fd8275d7a282037ba9f799 Merged-In: Iee54e00f924651b6f3fd8275d7a282037ba9f799
-rw-r--r--keystore-cts/java/com/google/security/wycheproof/testcases/MacTest.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/keystore-cts/java/com/google/security/wycheproof/testcases/MacTest.java b/keystore-cts/java/com/google/security/wycheproof/testcases/MacTest.java
index 81be1bd..7e84a4f 100644
--- a/keystore-cts/java/com/google/security/wycheproof/testcases/MacTest.java
+++ b/keystore-cts/java/com/google/security/wycheproof/testcases/MacTest.java
@@ -331,6 +331,9 @@ public class MacTest {
}
@Test
+ // Long-running MAC tests expose inefficiencies on some devices. Ignore the test until
+ // performance requirements can be defined. See http://b/288588810#comment27
+ @Ignore
public void testLongMacSha1() throws Exception {
// b/244609904#comment64
KeyStoreUtil.assumeKeyMintV1OrNewer(false);
@@ -350,6 +353,9 @@ public class MacTest {
}
@Test
+ // Long-running MAC tests expose inefficiencies on some devices. Ignore the test until
+ // performance requirements can be defined. See http://b/288588810#comment27
+ @Ignore
public void testLongMacSha256() throws Exception {
// b/244609904#comment64
KeyStoreUtil.assumeKeyMintV1OrNewer(false);
@@ -379,6 +385,9 @@ public class MacTest {
}
@Test
+ // Long-running MAC tests expose inefficiencies on some devices. Ignore the test until
+ // performance requirements can be defined. See http://b/288588810#comment27
+ @Ignore
public void testLongMacSha384() throws Exception {
// b/244609904#comment64
KeyStoreUtil.assumeKeyMintV1OrNewer(false);
@@ -402,6 +411,9 @@ public class MacTest {
}
@Test
+ // Long-running MAC tests expose inefficiencies on some devices. Ignore the test until
+ // performance requirements can be defined. See http://b/288588810#comment27
+ @Ignore
public void testLongMacSha512() throws Exception {
// b/244609904#comment64
KeyStoreUtil.assumeKeyMintV1OrNewer(false);