diff --git a/src/tools/interop/idt/capture/ecosystem/play_services/config.py b/src/tools/interop/idt/capture/ecosystem/play_services/config.py index 4247ebcbc286f8..a3e6194953e78f 100644 --- a/src/tools/interop/idt/capture/ecosystem/play_services/config.py +++ b/src/tools/interop/idt/capture/ecosystem/play_services/config.py @@ -15,4 +15,4 @@ # limitations under the License. # -enable_foyer_probers = True +enable_foyer_probers = False diff --git a/src/tools/interop/idt/capture/platform/android/config.py b/src/tools/interop/idt/capture/platform/android/config.py index 2e9380e69d2dd6..a8c8d38a63d59d 100644 --- a/src/tools/interop/idt/capture/platform/android/config.py +++ b/src/tools/interop/idt/capture/platform/android/config.py @@ -16,4 +16,4 @@ # enable_build_push_tcpdump = True -enable_bug_report = True +enable_bug_report = False diff --git a/src/tools/interop/idt/capture/platform/android/streams/screen/screen.py b/src/tools/interop/idt/capture/platform/android/streams/screen/screen.py index d412fdf1d24a44..b696493f1f278c 100644 --- a/src/tools/interop/idt/capture/platform/android/streams/screen/screen.py +++ b/src/tools/interop/idt/capture/platform/android/streams/screen/screen.py @@ -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: @@ -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