Skip to content

Commit 76cc6b7

Browse files
committed
More output cleanups.
1 parent 181a15b commit 76cc6b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

iOS/testbed/__main__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ async def log_stream_task(initial_devices):
145145

146146
async def xcode_test(location, simulator, verbose):
147147
# Run the test suite on the named simulator
148+
print("Starting xcodebuild...")
148149
args = [
149150
"xcodebuild",
150151
"test",
@@ -259,8 +260,9 @@ def update_plist(testbed_path, args):
259260

260261
async def run_testbed(simulator: str, args: list[str], verbose: bool=False):
261262
location = Path(__file__).parent
262-
print("Updating plist...")
263+
print("Updating plist...", end="", flush=True)
263264
update_plist(location, args)
265+
print(" done.")
264266

265267
# Get the list of devices that are booted at the start of the test run.
266268
# The simulator started by the test suite will be detected as the new

0 commit comments

Comments
 (0)