1/* 2 * List of test cases known to fail on a virtual device. 3 * 4 * Many are because of the network environment used by some or all of the 5 * virtual devices during CTS runs. 6 * 7 * See: https://cloud.google.com/vpc/docs/vpc 8 * As of 2019-05: "VPC networks only support IPv4 unicast traffic. They do not 9 * support broadcast, multicast, or IPv6 traffic within the network: VMs in the 10 * VPC network can only send to IPv4 destinations and only receive traffic from 11 * IPv4 sources. 12 */ 13[ 14{ 15 description: "IPv6 connectivity not yet supported in virtual device testing infra", 16 result: EXEC_FAILED, 17 name: "libcore.java.net.SocketTest#testSocketTestAllAddresses", 18 bug: 30965313 19}, 20{ 21 description: "Virtual devices do not implement the SELinux policy (forbid hard link) asserted by this test", 22 name: "libcore.java.nio.file.Files2Test#test_createLink", 23 bug: 35670953 24}, 25{ 26 description: "multicast not supported in virtual device testing infra", 27 names: ["org.apache.harmony.tests.java.net.MulticastSocketTest", 28 "libcore.java.net.MulticastSocketTest#testGroupReceiveIPv6", 29 "libcore.java.nio.channels.DatagramChannelMulticastTest#test_joinAnySource_IPv4", 30 "libcore.java.nio.channels.DatagramChannelMulticastTest#test_joinAnySource_multicastLoopOption_IPv4", 31 "libcore.java.nio.channels.DatagramChannelMulticastTest#test_joinSourceSpecific_anyBind_ipv6" 32 ], 33 bug: 35922755 34}, 35{ 36 description: "DNS lookups of {1.2.3.4.} do not reliably fail on GCE networks", 37 names: ["libcore.java.net.InetAddressTest#test_getByName_invalid[1]"], 38 bug: 35922755 39}, 40{ 41 description: "Kernels between 4.4 and 4.9 interpret the backlog parameter differently than we 42 expect, causing this test to fail, and our emulators currently use those kernel 43 versions. See b/31960002 for a full discussion and references to the upstream 44 changes.", 45 name: "libcore.javax.net.ServerSocketFactoryTest#testCreateServerSocketWithPortNoBacklog", 46 bug: 73535217 47} 48] 49