Merge "Skip unsupported hardware for testB141603906" am: accaf62b80

Original change: https://android-review.googlesource.com/c/platform/cts/+/1428811

Change-Id: I40e27213146cbb499d32b0836e3eca17edf24e13
This commit is contained in:
Treehugger Robot
2020-10-02 03:12:17 +00:00
committed by Automerger Merge Worker

View File

@@ -1023,6 +1023,9 @@ public class VpnTest extends InstrumentationTestCase {
} }
public void testB141603906() throws Exception { public void testB141603906() throws Exception {
if (!supportedHardware()) {
return;
}
final InetSocketAddress src = new InetSocketAddress(0); final InetSocketAddress src = new InetSocketAddress(0);
final InetSocketAddress dst = new InetSocketAddress(0); final InetSocketAddress dst = new InetSocketAddress(0);
final int NUM_THREADS = 8; final int NUM_THREADS = 8;