Tools: Remove implicit -- from server command line

This commit is contained in:
Vicki Pfau 2020-08-05 17:56:03 -07:00
parent cee1a3e08c
commit dafb5c599a
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class PerfServer(object):
server_command = list(self.command)
else:
server_command = [os.path.join(os.getcwd(), PerfTest.EXECUTABLE)]
server_command.extend(['--', '-PD'])
server_command.extend(['-PD'])
if hasattr(test, "frames"):
server_command.extend(['-F', str(test.frames)])
if not test.renderer: