From 1e1eb4d34a9efa4e7a23f1e95b226296b374a2dc Mon Sep 17 00:00:00 2001 From: Michael Klimushyn Date: Fri, 16 Aug 2019 16:25:59 -0700 Subject: [PATCH] Minor update to the Robolectric test harness (#11067) Make sure that any `android.util.Log`s during the tests are reported to stdout. --- testing/run_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/run_tests.py b/testing/run_tests.py index 89095d3f356..37951ed70be 100755 --- a/testing/run_tests.py +++ b/testing/run_tests.py @@ -246,6 +246,7 @@ def RunJavaTests(filter, android_variant='android_debug_unopt'): '-Drobolectric.offline=true', '-Drobolectric.dependency.dir=' + robolectric_dir, '-classpath', ':'.join(classpath), + '-Drobolectric.logging=stdout', 'org.junit.runner.JUnitCore', test_class ]