Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 346aad6b authored by Etan Cohen's avatar Etan Cohen
Browse files

[SYSUI] Fix logging on test failure

The failure fixture may crash on its own - masking actual failures.

Bug: 152820718
Test: atest com.android.systemui.statusbar.policy.NetworkControllerSignalTest
Test: atest com.android.systemui.statusbar.policy.NetworkControllerWifiTest
Change-Id: I1f5ef7d908757205fd30112a753ec616fcb3d42e
parent 71271db6
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -122,6 +122,10 @@ public class NetworkControllerBaseTest extends SysuiTestCase {
    public TestWatcher failWatcher = new TestWatcher() {
        @Override
        protected void failed(Throwable e, Description description) {
            if (mNetworkController == null) {
                Log.d(TAG, "mNetworkController = null!");
                return;
            }
            // Print out mNetworkController state if the test fails.
            StringWriter sw = new StringWriter();
            PrintWriter pw = new PrintWriter(sw);