diff options
Diffstat (limited to 'tools/benchmark.py')
-rwxr-xr-x | tools/benchmark.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/benchmark.py b/tools/benchmark.py index 4055eca44..ec233afda 100755 --- a/tools/benchmark.py +++ b/tools/benchmark.py @@ -120,6 +120,9 @@ def run_syscall_count_benchmark(deno_path): syscall_count_map = {} syscall_count_map["hello"] = get_strace_summary( [deno_path, "tests/002_hello.ts", "--reload"])["total"]["calls"] + syscall_count_map["fetch_deps"] = get_strace_summary( + [deno_path, "tests/fetch_deps.ts", "--reload", + "--allow-net"])["total"]["calls"] return syscall_count_map |