1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 12:58:54 -05:00

Debug strace issue (#3706)

This commit is contained in:
Ry Dahl 2020-01-18 04:20:10 -05:00 committed by Bartek Iwańczuk
parent 59c674fed5
commit 020898762f

View file

@ -119,7 +119,14 @@ def strace_parse(summary_text):
def get_strace_summary(test_args):
return strace_parse(get_strace_summary_text(test_args))
s = get_strace_summary_text(test_args)
try:
return strace_parse(s)
except ValueError:
print "error parsing strace"
print "----- <strace> -------"
print s
print "----- </strace> ------"
def run_throughput(deno_exe):