Skip to content

Commit 0086c10

Browse files
committed
Update to remove debug print statements
1 parent ea4daa7 commit 0086c10

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

demos/copilot/src/tests/wrap-qemu.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
def isWatchedStr(str_to_watch, output):
77
if str_to_watch in output:
8-
print(f" >>>>>>>> Found the string: [{str_to_watch}] <<<<<<<<")
98
return True
109
return False
1110

@@ -68,7 +67,6 @@ def run_qemu_with_watch(str_to_exit_on, timeout, commands):
6867

6968
if str_to_exit_on in output:
7069
print(output.strip())
71-
print(f" >>>>>>>> Found the string: [{str_to_exit_on}] <<<<<<<< SUCCESSFUL sequence of output checking")
7270
qemu_process.terminate()
7371
if outputFile:
7472
outputFile.close()
@@ -89,7 +87,6 @@ def run_qemu_with_watch(str_to_exit_on, timeout, commands):
8987
qemu_process.stdin.flush()
9088
qemu_process.stdin.write('\n')
9189
qemu_process.stdin.flush()
92-
print(f"Sent command: root")
9390
command_index += 1
9491
loginPrompt = False
9592
except BrokenPipeError:
@@ -104,7 +101,6 @@ def run_qemu_with_watch(str_to_exit_on, timeout, commands):
104101
try:
105102
qemu_process.stdin.write(commands[command_index] + '\n')
106103
qemu_process.stdin.flush()
107-
print(f"Sent command: {commands[command_index]}")
108104
command_index += 1
109105
except BrokenPipeError:
110106
print("QEMU stdin is not ready. Retrying...")

0 commit comments

Comments
 (0)