Increase timeout of CtsLibcoreWycheproofBCTestCases
The test uses generateSafePrimes() which loops and tries until
it gets suitable value, however, it takes an unpredictable
amount of time.
On less powerful devices, the test timeout of 10mins might not be
enough, leading to test timeouts. Bump the timeout for thist test to
3600mins.
bug: 115712670
Change-Id: Ic86b4cb406ed6c02219b56e89059f692ff716d26
Signed-off-by: Xinghua Yang <xinghua.yang@mediatek.com>
diff --git a/tests/libcore/wycheproof-bc/AndroidTest.xml b/tests/libcore/wycheproof-bc/AndroidTest.xml
index 8fc584f..badcaec 100644
--- a/tests/libcore/wycheproof-bc/AndroidTest.xml
+++ b/tests/libcore/wycheproof-bc/AndroidTest.xml
@@ -30,8 +30,8 @@
<option name="instrumentation-arg" key="filter"
value="com.android.cts.core.runner.ExpectationBasedFilter" />
<option name="core-expectation" value="/knownfailures.txt" />
- <option name="runtime-hint" value="10m"/>
- <option name="test-timeout" value="600000" />
+ <option name="runtime-hint" value="16m"/>
+ <option name="test-timeout" value="3600000" />
<option name="hidden-api-checks" value="false" />
</test>
</configuration>