Skip to content

Commit

Permalink
Attempt running UDK silently
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 12, 2023
1 parent 00ce18c commit 7959890
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tests/UDKTests/setup_udk_build_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,14 @@ async def run_udk_build(
if use_shell:
proc = await asyncio.create_subprocess_shell(
cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" '
f'-ArgumentList "make","-useunpublished","-log","-UNATTENDED"',
f'-ArgumentList "make","-useunpublished","-silent","-UNATTENDED",'
f'"-VERBOSE","-WAITFORDEBUGSERVER","-NOPAUSE","-FORCELOGFLUSH","-DEBUG",'
f'"-ResX=0","-ResY=0"',
)
else:
proc = await asyncio.create_subprocess_exec(
udk_exe,
*["make", "-useunpublished", "-log"],
*["make", "-useunpublished", "-log", "-UNATTENDED"],
)

print(f"proc: {proc}")
Expand Down Expand Up @@ -309,7 +311,9 @@ async def run_udk_server(
if use_shell:
test_proc = await asyncio.create_subprocess_shell(
cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" '
f'-ArgumentList "server","{udk_args}","-log","-UNATTENDED"',
f'-ArgumentList "server","{udk_args}","-silent","-UNATTENDED",'
f'"-VERBOSE","-WAITFORDEBUGSERVER","-NOPAUSE","-FORCELOGFLUSH","-DEBUG",'
f'"-ResX=0","-ResY=0"',
)
else:
test_proc = await asyncio.create_subprocess_exec(
Expand Down

0 comments on commit 7959890

Please sign in to comment.