diff options
author | 2022-11-08 12:57:11 +0000 | |
---|---|---|
committer | 2022-11-09 12:53:21 +0000 | |
commit | 8a5c2f398227f464d69d2102d668961baf87ad7b (patch) | |
tree | 9ee857108fe0186cf54498610069777c6c20a5f6 | |
parent | 6bd1cd18d4d3949a73f3f1cd6868ac98ade63e55 (diff) |
Drop org.apache.harmony.luni.internal.net tests on fugu
We have libcrypto issues with these tests on fugu due to lack of
getrandom(2).
Bug: 258171768
Test: art/tools/run-libcore-tests.sh --dry-run --no-getrandom \
--mode target --variant X32
Change-Id: I4f1dd3ca96ff5cdd3670e23661197e335aea5032
-rwxr-xr-x | tools/run-libcore-tests.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/run-libcore-tests.py b/tools/run-libcore-tests.py index 19529ece45..0f8eb59374 100755 --- a/tools/run-libcore-tests.py +++ b/tools/run-libcore-tests.py @@ -92,7 +92,10 @@ LIBCORE_TEST_NAMES = [ "libcore.sun.util", "libcore.xml", "org.apache.harmony.annotation", - "org.apache.harmony.luni", + "org.apache.harmony.luni.tests.internal.net.www.protocol.http.HttpURLConnection", + "org.apache.harmony.luni.tests.internal.net.www.protocol.https.HttpsURLConnection", + "org.apache.harmony.luni.tests.java.io", + "org.apache.harmony.luni.tests.java.net", "org.apache.harmony.nio", "org.apache.harmony.regex", "org.apache.harmony.testframework", @@ -264,6 +267,8 @@ DISABLED_GCSTRESS_DEBUG_TESTS = { } DISABLED_FUGU_TESTS = { + "org.apache.harmony.luni.tests.internal.net.www.protocol.http.HttpURLConnection", + "org.apache.harmony.luni.tests.internal.net.www.protocol.https.HttpsURLConnection", "test.java.awt", "test.java.io.ByteArrayInputStream", "test.java.io.ByteArrayOutputStream", |