0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00
deno/tools/benchmark_test.py
2018-09-24 18:12:52 -04:00

10 lines
303 B
Python

import sys
import os
from benchmark import run_thread_count_benchmark
def benchmark_test(deno_path):
if "linux" in sys.platform:
thread_count_dict = run_thread_count_benchmark(deno_path)
assert "set_timeout" in thread_count_dict
assert thread_count_dict["set_timeout"] > 1