diff --git a/tests/cts/net/src/android/net/wifi/cts/WifiManagerTest.java b/tests/cts/net/src/android/net/wifi/cts/WifiManagerTest.java index ea63f787cf..754336af98 100644 --- a/tests/cts/net/src/android/net/wifi/cts/WifiManagerTest.java +++ b/tests/cts/net/src/android/net/wifi/cts/WifiManagerTest.java @@ -801,7 +801,11 @@ public class WifiManagerTest extends AndroidTestCase { * Note: Location mode must be enabled for this test. */ public void testStartLocalOnlyHotspotSuccess() { - // first check that softap mode is supported by the device + if (!WifiFeature.isWifiSupported(getContext())) { + // skip the test if WiFi is not supported + return; + } + // check that softap mode is supported by the device if (!mWifiManager.isPortableHotspotSupported()) { return; } @@ -826,7 +830,11 @@ public class WifiManagerTest extends AndroidTestCase { * Note: Location mode must be enabled for this test. */ public void testSetWifiEnabledByAppDoesNotStopHotspot() { - // first check that softap mode is supported by the device + if (!WifiFeature.isWifiSupported(getContext())) { + // skip the test if WiFi is not supported + return; + } + // check that softap mode is supported by the device if (!mWifiManager.isPortableHotspotSupported()) { return; } @@ -850,7 +858,11 @@ public class WifiManagerTest extends AndroidTestCase { * Note: Location mode must be enabled for this test. */ public void testStartLocalOnlyHotspotSingleRequestByApps() { - // first check that softap mode is supported by the device + if (!WifiFeature.isWifiSupported(getContext())) { + // skip the test if WiFi is not supported + return; + } + // check that softap mode is supported by the device if (!mWifiManager.isPortableHotspotSupported()) { return; }