commit | ae3412405d68d0a49bebf6cc2e57162c6bf6c84d | [log] [tgz] |
---|---|---|
author | Josh Yang <yzj@google.com> | Fri Sep 11 15:32:43 2020 -0700 |
committer | Josh Yang <yzj@google.com> | Thu Sep 17 00:27:59 2020 +0000 |
tree | 48fcd862225d9bb47e546722bba1b0c3953b9a84 | |
parent | 1684245304e147d0f082e0769038455e8a99d50b [diff] |
Skip unsupported hardware for testB141603906 Bug: 168748249 Fix: 168748249 Test: local cts passed. Change-Id: I8af0d5f9716a510322b2bfb0cdf6f05f94b12604
diff --git a/tests/cts/hostside/app/src/com/android/cts/net/hostside/VpnTest.java b/tests/cts/hostside/app/src/com/android/cts/net/hostside/VpnTest.java index a451ea8..d312f18 100755 --- a/tests/cts/hostside/app/src/com/android/cts/net/hostside/VpnTest.java +++ b/tests/cts/hostside/app/src/com/android/cts/net/hostside/VpnTest.java
@@ -1009,6 +1009,9 @@ } public void testB141603906() throws Exception { + if (!supportedHardware()) { + return; + } final InetSocketAddress src = new InetSocketAddress(0); final InetSocketAddress dst = new InetSocketAddress(0); final int NUM_THREADS = 8;