Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve record_adb.py and combine-videos-side-by-side.sh for startup comparisons #41

Merged
merged 6 commits into from
May 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix python3 error.
mstange committed May 8, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit d1d0d4be192afa8d0b46e3ea740ed284e3a854fc
2 changes: 1 addition & 1 deletion record_adb.py
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ def check_for_existing_process():
adb_ps_command.wait()
packages_found = mozilla_processes.decode('utf-8').split('\n')
for package in packages_found:
if package is '':
if package == '':
continue
kill_process = subprocess.Popen(['adb', 'shell', 'am', 'force-stop'] + [package])
kill_process.wait()