Home | History | Annotate | Download | only in parser

Lines Matching refs:logcat

31     // FIXME: Make logcat file configurable.
32 private static final String LOGCAT_PATH = "/tmp/logcat.txt";
35 * A test that is intended to force Brillopad to parse a logcat. The purpose of this is to
36 * assist a developer in checking why a given logcat file might not be parsed correctly by
46 LogcatItem logcat = null;
49 logcat = new LogcatParser().parse(logcatReader);
51 System.out.println(String.format("Logcat took %d ms to parse.", stop - start));
63 assertNotNull(logcat);
64 assertNotNull(logcat.getStartTime());
65 assertNotNull(logcat.getStopTime());
67 System.out.println(String.format("Stats for logcat:\n" +
71 logcat.getStartTime().toString(),
72 logcat.getStopTime().toString(),
73 logcat.getAnrs().size(),
74 logcat.getJavaCrashes().size(),
75 logcat.getNativeCrashes().size()));