all repos — mgba @ cf3c275daf08fd89095302cff18d4c3e3b09bd67

mGBA Game Boy Advance Emulator

tools: Fix profiling with -N on a remote
Vicki Pfau vi@endrift.com
Mon, 02 Apr 2018 13:21:58 -0700
commit

cf3c275daf08fd89095302cff18d4c3e3b09bd67

parent

97e94610e6e8a2e4b38f77224f5702a8f93edcfe

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M tools/perf.pytools/perf.py

@@ -89,8 +89,10 @@ server_command = list(self.command)

else: server_command = [os.path.join(os.getcwd(), PerfTest.EXECUTABLE)] server_command.extend(['--', '-PD', '0']) - if (hasattr(test, "frames")): - server_command.extend(['-F', str(test.frames)]) + if hasattr(test, "frames"): + server_command.extend(['-F', str(test.frames)]) + if test.renderer != "software": + server_command.append('-N') subprocess.check_call(server_command) time.sleep(4) self.socket = socket.create_connection(self.address, timeout=1000)