diff options
author | 2022-07-04 14:37:49 +0100 | |
---|---|---|
committer | 2022-07-04 18:55:46 +0000 | |
commit | 38cb5adb8d48c6fbefd89bbdfc3b64054cf814d5 (patch) | |
tree | 6cc179d6469c9dea17f023c5d1d20a00898f7de6 | |
parent | 1d1d25eea72cf22aed802352a82588d97403f7b6 (diff) |
Fix hash typos run-libcore-tests.py for fugu
Bug: 237780683
Test: art/tools/run-libcore-tests.sh --mode=device \
--variant=X32 --no-getrandom
Change-Id: I3505bba7d7ce73d73c2ac5da30909979a342d96a
-rwxr-xr-x | tools/run-libcore-tests.py | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/tools/run-libcore-tests.py b/tools/run-libcore-tests.py index 848916e70d..9456601bc5 100755 --- a/tools/run-libcore-tests.py +++ b/tools/run-libcore-tests.py @@ -280,11 +280,11 @@ DISABLED_FUGU_TESTS = { "test.java.lang.StrictMath.Expm1Tests", "test.java.lang.StrictMath.ExpTests", "test.java.lang.StrictMath.HyperbolicTests", - "test.java.lang.StrictMath.HypotTests_testAgainstTranslit_shard1", - "test.java.lang.StrictMath.HypotTests_testAgainstTranslit_shard2", - "test.java.lang.StrictMath.HypotTests_testAgainstTranslit_shard3", - "test.java.lang.StrictMath.HypotTests_testAgainstTranslit_shard4", - "test.java.lang.StrictMath.HypotTests_testHypot", + "test.java.lang.StrictMath.HypotTests#testAgainstTranslit_shard1", + "test.java.lang.StrictMath.HypotTests#testAgainstTranslit_shard2", + "test.java.lang.StrictMath.HypotTests#testAgainstTranslit_shard3", + "test.java.lang.StrictMath.HypotTests#testAgainstTranslit_shard4", + "test.java.lang.StrictMath.HypotTests#testHypot", "test.java.lang.StrictMath.Log1pTests", "test.java.lang.StrictMath.Log10Tests", "test.java.lang.StrictMath.MultiplicationTests", @@ -299,25 +299,25 @@ DISABLED_FUGU_TESTS = { "test.java.lang.ref.ReferenceCloneTest", "test.java.lang.ref.ReferenceEnqueuePendingTest", "test.java.math.BigDecimal", - "test.java.math.BigInteger_testArithmetic", - "test.java.math.BigInteger_testBitCount", - "test.java.math.BigInteger_testBitLength", - "test.java.math.BigInteger_testbitOps", - "test.java.math.BigInteger_testBitwise", - "test.java.math.BigInteger_testByteArrayConv", - "test.java.math.BigInteger_testConstructor", - "test.java.math.BigInteger_testDivideAndReminder", - "test.java.math.BigInteger_testDivideLarge", - "test.java.math.BigInteger_testModExp", - "test.java.math.BigInteger_testMultiplyLarge", - "test.java.math.BigInteger_testNextProbablePrime", - "test.java.math.BigInteger_testPow", - "test.java.math.BigInteger_testSerialize", - "test.java.math.BigInteger_testShift", - "test.java.math.BigInteger_testSquare", - "test.java.math.BigInteger_testSquareLarge", - "test.java.math.BigInteger_testSquareRootAndReminder", - "test.java.math.BigInteger_testStringConv_generic", + "test.java.math.BigInteger#testArithmetic", + "test.java.math.BigInteger#testBitCount", + "test.java.math.BigInteger#testBitLength", + "test.java.math.BigInteger#testbitOps", + "test.java.math.BigInteger#testBitwise", + "test.java.math.BigInteger#testByteArrayConv", + "test.java.math.BigInteger#testConstructor", + "test.java.math.BigInteger#testDivideAndReminder", + "test.java.math.BigInteger#testDivideLarge", + "test.java.math.BigInteger#testModExp", + "test.java.math.BigInteger#testMultiplyLarge", + "test.java.math.BigInteger#testNextProbablePrime", + "test.java.math.BigInteger#testPow", + "test.java.math.BigInteger#testSerialize", + "test.java.math.BigInteger#testShift", + "test.java.math.BigInteger#testSquare", + "test.java.math.BigInteger#testSquareLarge", + "test.java.math.BigInteger#testSquareRootAndReminder", + "test.java.math.BigInteger#testStringConv_generic", "test.java.math.RoundingMode", "test.java.net.DatagramSocket", "test.java.net.Socket", @@ -329,7 +329,7 @@ DISABLED_FUGU_TESTS = { "test.java.nio.file", "test.java.security.cert", "test.java.security.KeyAgreement.KeyAgreementTest", - "test.java.security.KeyAgreement.KeySizeTest_testECDHKeySize", + "test.java.security.KeyAgreement.KeySizeTest#testECDHKeySize", "test.java.security.KeyAgreement.KeySpecTest", "test.java.security.KeyAgreement.MultiThreadTest", "test.java.security.KeyAgreement.NegativeTest", |