Add non MTS marking to NoIV tests.
Change-Id: I32d27b658bf44a361acff27d3f42b5d911ac4b61
Test: atest test_PBKDF2WITHHMACSHA1_SKFactory_and_PBEAESCBC_Cipher_noIV
Bug: 306151427
diff --git a/luni/src/test/java/libcore/javax/crypto/CipherTest.java b/luni/src/test/java/libcore/javax/crypto/CipherTest.java
index 69b8efc..87bc94e 100644
--- a/luni/src/test/java/libcore/javax/crypto/CipherTest.java
+++ b/luni/src/test/java/libcore/javax/crypto/CipherTest.java
@@ -24,6 +24,7 @@
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
+import dalvik.annotation.compat.VersionCodes;
import java.nio.charset.StandardCharsets;
import java.security.AlgorithmParameters;
import java.security.InvalidAlgorithmParameterException;
@@ -44,7 +45,9 @@
import junit.framework.TestCase;
import libcore.java.security.StandardNames;
import libcore.test.annotation.NonCts;
+import libcore.test.annotation.NonMts;
import libcore.test.reasons.NonCtsReasons;
+import libcore.test.reasons.NonMtsReasons;
import org.junit.Assume;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -617,6 +620,8 @@
* mixing them is not recommended.
*/
@NonCts(bug = 290912610, reason = NonCtsReasons.NON_BREAKING_BEHAVIOR_FIX)
+ @NonMts(reason = NonMtsReasons.ICU_VERSION_DEPENDENCY,
+ disabledUntilSdk = VersionCodes.UPSIDE_DOWN_CAKE)
@Test
public void test_PBKDF2WITHHMACSHA1_SKFactory_and_PBEAESCBC_Cipher_noIV() throws Exception {
Assume.assumeNotNull(Security.getProvider("BC"));