aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-08-27 09:29:36 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-08-27 09:29:36 +0000
commitafa2cad2115a8d10a90b9df7a2f9b5a4a3dbb015 (patch)
treee3eda8a27c15d50826634228f7a53ca776e6d82c
parenta11a517804921336187b3b6e55698e4530f2c4d1 (diff)
parent5eee5ef21fee5c8ae1b2ba4494ce63162ed3ad09 (diff)
downloadwycheproof-afa2cad2115a8d10a90b9df7a2f9b5a4a3dbb015.tar.gz
Snap for 10722291 from 5eee5ef21fee5c8ae1b2ba4494ce63162ed3ad09 to mainline-documentsui-releaseaml_doc_341510050aml_doc_341312010aml_doc_341112000
Change-Id: I81f02bf772280ff9401bd37c37fe13131c6d1776
-rw-r--r--keystore-cts/java/com/google/security/wycheproof/testcases/MacTest.java15
1 files changed, 15 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 7e84a4f..5e02de9 100644
--- a/keystore-cts/java/com/google/security/wycheproof/testcases/MacTest.java
+++ b/keystore-cts/java/com/google/security/wycheproof/testcases/MacTest.java
@@ -209,16 +209,25 @@ 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/296367623
+ @Ignore
public void testHmacSha1() throws Exception {
testMac("HMACSHA1", 20);
}
@Test
+ // Long-running MAC tests expose inefficiencies on some devices. Ignore the test until
+ // performance requirements can be defined. See http://b/296367623
+ @Ignore
public void testHmacSha224() throws Exception {
testMac("HMACSHA224", 28);
}
@Test
+ // Long-running MAC tests expose inefficiencies on some devices. Ignore the test until
+ // performance requirements can be defined. See http://b/296367623
+ @Ignore
public void testHmacSha256() throws Exception {
testMac("HMACSHA256", 32);
}
@@ -231,11 +240,17 @@ 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/296367623
+ @Ignore
public void testHmacSha384() throws Exception {
testMac("HMACSHA384", 48);
}
@Test
+ // Long-running MAC tests expose inefficiencies on some devices. Ignore the test until
+ // performance requirements can be defined. See http://b/296367623
+ @Ignore
public void testHmacSha512() throws Exception {
testMac("HMACSHA512", 64);
}