Skip to content

Commit dff301e

Browse files
committed
Fixed incorrect uiautomator process killed detection
1 parent b2d72f7 commit dff301e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/dtmilano/android/viewclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3232,7 +3232,7 @@ def dump(self, window=-1, sleep=1):
32323232
print >>sys.stderr
32333233
print >>sys.stderr, repr(received)
32343234
print >>sys.stderr
3235-
onlyKilledRE = re.compile('[\n\S]*Killed[\n\r\S]*', re.MULTILINE)
3235+
onlyKilledRE = re.compile('Killed$')
32363236
if onlyKilledRE.search(received):
32373237
MONKEY = 'com.android.commands.monkey'
32383238
extraInfo = ''

0 commit comments

Comments
 (0)