mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-28 15:56:49 +00:00
Merge "More logging for LogEventChecker appearing to skip events" into ub-launcher3-rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
dfd8c4806f
@@ -79,6 +79,7 @@ public class LogEventChecker {
|
||||
final String id = UUID.randomUUID().toString();
|
||||
mStartCommand = START_PREFIX + id;
|
||||
mFinishCommand = FINISH_PREFIX + id;
|
||||
Log.d(SKIP_EVENTS_TAG, "Expected finish command: " + mFinishCommand);
|
||||
Log.d(TestProtocol.TAPL_EVENTS_TAG, mStartCommand);
|
||||
}
|
||||
|
||||
@@ -95,8 +96,7 @@ public class LogEventChecker {
|
||||
// Skip everything before the next start command.
|
||||
for (; ; ) {
|
||||
final String event = reader.readLine();
|
||||
if (event.contains(TestProtocol.TAPL_EVENTS_TAG)
|
||||
&& event.contains(mStartCommand)) {
|
||||
if (event.contains(mStartCommand)) {
|
||||
Log.d(SKIP_EVENTS_TAG, "Read start: " + event);
|
||||
break;
|
||||
}
|
||||
@@ -105,18 +105,18 @@ public class LogEventChecker {
|
||||
// Store all actual events until the finish command.
|
||||
for (; ; ) {
|
||||
final String event = reader.readLine();
|
||||
if (event.contains(TestProtocol.TAPL_EVENTS_TAG)) {
|
||||
if (event.contains(mFinishCommand)) {
|
||||
mFinished.countDown();
|
||||
Log.d(SKIP_EVENTS_TAG, "Read finish: " + event);
|
||||
break;
|
||||
if (event.contains(mFinishCommand)) {
|
||||
mFinished.countDown();
|
||||
Log.d(SKIP_EVENTS_TAG, "Read finish: " + event);
|
||||
break;
|
||||
} else {
|
||||
final Matcher matcher = EVENT_LOG_ENTRY.matcher(event);
|
||||
if (matcher.find()) {
|
||||
mEvents.add(matcher.group("sequence"), matcher.group("event"));
|
||||
Log.d(SKIP_EVENTS_TAG, "Read event: " + event);
|
||||
mEventsCounter.release();
|
||||
} else {
|
||||
final Matcher matcher = EVENT_LOG_ENTRY.matcher(event);
|
||||
if (matcher.find()) {
|
||||
mEvents.add(matcher.group("sequence"), matcher.group("event"));
|
||||
Log.d(SKIP_EVENTS_TAG, "Read event: " + event);
|
||||
mEventsCounter.release();
|
||||
}
|
||||
Log.d(SKIP_EVENTS_TAG, "Read something unexpected: " + event);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user