diff options
author | Mukesh Agrawal <quiche@google.com> | 2017-04-17 22:10:43 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2017-04-17 22:10:44 +0000 |
commit | ecb8769f841e4d15bc2d9658a3f5849d89c59587 (patch) | |
tree | c313706edfc0254855d49297895d5b4ed46f2fab | |
parent | 28d35c0211b3fa707f1cdd22e99470d85d13dd0d (diff) | |
parent | ae829a76b6ed814e94ae44403360331521e89411 (diff) |
Merge "WifiDiagnostics: disable some size-sensitive tests"
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/WifiDiagnosticsTest.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/WifiDiagnosticsTest.java b/tests/wifitests/src/com/android/server/wifi/WifiDiagnosticsTest.java index 41453d6a7..b31d07b1d 100644 --- a/tests/wifitests/src/com/android/server/wifi/WifiDiagnosticsTest.java +++ b/tests/wifitests/src/com/android/server/wifi/WifiDiagnosticsTest.java @@ -236,7 +236,7 @@ public class WifiDiagnosticsTest { /** * Verifies that we discard extraneous ring-buffer data. */ - @Test + // TODO(b/36811399): re-enabled this @Test public void loggerDiscardsExtraneousData() throws Exception { final boolean verbosityToggle = false; mWifiDiagnostics.startLogging(verbosityToggle); @@ -594,7 +594,7 @@ public class WifiDiagnosticsTest { } /** Verifies that the default size of our ring buffers is small. */ - @Test + // TODO(b/36811399): re-enable this @Test public void ringBufferSizeIsSmallByDefault() throws Exception { final boolean verbosityToggle = false; mWifiDiagnostics.startLogging(verbosityToggle); @@ -605,7 +605,7 @@ public class WifiDiagnosticsTest { } /** Verifies that we use small ring buffers by default, on userdebug builds. */ - @Test + // TODO(b/36811399): re-enable this @Test public void ringBufferSizeIsSmallByDefaultOnUserdebugBuilds() throws Exception { final boolean verbosityToggle = false; when(mBuildProperties.isUserdebugBuild()).thenReturn(true); @@ -619,7 +619,7 @@ public class WifiDiagnosticsTest { } /** Verifies that we use small ring buffers by default, on eng builds. */ - @Test + // TODO(b/36811399): re-enable this @Test public void ringBufferSizeIsSmallByDefaultOnEngBuilds() throws Exception { final boolean verbosityToggle = false; when(mBuildProperties.isEngBuild()).thenReturn(true); @@ -655,7 +655,7 @@ public class WifiDiagnosticsTest { } /** Verifies that we use small ring buffers when switched from verbose to normal mode. */ - @Test + // TODO(b/36811399): re-enabled this @Test public void startLoggingShrinksRingBuffersIfNeeded() throws Exception { mWifiDiagnostics.startLogging(true /* verbose enabled */); mWifiDiagnostics.onRingBufferData( |