Skip to content

Commit

Permalink
OK
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed Oct 20, 2023
1 parent 2b3db4d commit 1239a90
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# limitations under the License.
#

enable_foyer_probers = True
enable_foyer_probers = False
2 changes: 1 addition & 1 deletion src/tools/interop/idt/capture/platform/android/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
#

enable_build_push_tcpdump = True
enable_bug_report = True
enable_bug_report = False
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,13 @@ async def prepare_screen_recording(self) -> None:

def update_commands(self) -> None:
self.screen_artifact = create_standard_log_name("screencast" + str(self.file_counter),
"mp4",
parent=self.platform.artifact_dir)
"mp4",
parent=self.platform.artifact_dir)
self.screen_phone_out_path = f"/sdcard/Movies/{os.path.basename(self.screen_artifact)}"
self.screen_command = f"shell screenrecord --bugreport {self.screen_phone_out_path}"
screen_pull_command = f"pull {self.screen_phone_out_path} {self.screen_artifact}"
self.pull_commands.append(screen_pull_command)
# Need to write these to a file instead, to be shared between processes
self.file_counter += 1

def run_recorder(self) -> None:
Expand Down Expand Up @@ -100,4 +101,3 @@ async def stop(self):
if self.screen_proc is not None:
self.screen_proc.kill()
await self.pull_screen_recording()
# TODO stitch together

0 comments on commit 1239a90

Please sign in to comment.