mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
Debug strace issue (#3706)
This commit is contained in:
parent
59c674fed5
commit
020898762f
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user