Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1799)

Unified Diff: testing/android/java/src/org/chromium/native_test/ChromeNativeTestActivity.java

Issue 10938014: Android: uses a fifo rather than logcat for the test runner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: testing/android/java/src/org/chromium/native_test/ChromeNativeTestActivity.java
diff --git a/testing/android/java/src/org/chromium/native_test/ChromeNativeTestActivity.java b/testing/android/java/src/org/chromium/native_test/ChromeNativeTestActivity.java
index 86dc16001ab7d58fde6181dfb2aa3d7549ae7ae0..a93772a6594d7e81aa6341ebf07240816bda9277 100644
--- a/testing/android/java/src/org/chromium/native_test/ChromeNativeTestActivity.java
+++ b/testing/android/java/src/org/chromium/native_test/ChromeNativeTestActivity.java
@@ -69,13 +69,11 @@ public class ChromeNativeTestActivity extends Activity {
}
private void runTests() {
- Log.e(TAG, ">>nativeRunTests");
// This directory is used by build/android/pylib/test_package_apk.py.
File filesDir = new File(Environment.getExternalStorageDirectory(),
"native_tests/");
filesDir.mkdirs();
nativeRunTests(filesDir.getAbsolutePath(), getApplicationContext());
- Log.e(TAG, "<<nativeRunTests");
}
// Signal a failure of the native test loader to python scripts

Powered by Google App Engine
This is Rietveld 408576698