summaryrefslogtreecommitdiff
path: root/tools/benchmark.py
diff options
context:
space:
mode:
authorLuka Hartwig <mail@lukahartwig.de>2020-02-02 22:55:22 +0100
committerGitHub <noreply@github.com>2020-02-02 16:55:22 -0500
commitf168597b7ab81afda3bf4749a81c360d364e7cf1 (patch)
tree4082e9eebf03cc7b3b653822c52a54a62e308d15 /tools/benchmark.py
parente8df66c12cbb3e51f8776aa91e6db41bbfdcae5e (diff)
Remove //tests symlink (#3849)
Diffstat (limited to 'tools/benchmark.py')
-rwxr-xr-xtools/benchmark.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/benchmark.py b/tools/benchmark.py
index a0e12fa48..c29ca3e8c 100755
--- a/tools/benchmark.py
+++ b/tools/benchmark.py
@@ -20,13 +20,13 @@ import http_server
# The list of the tuples of the benchmark name and arguments
exec_time_benchmarks = [
- ("hello", ["tests/002_hello.ts"]),
- ("relative_import", ["tests/003_relative_import.ts"]),
- ("error_001", ["tests/error_001.ts"]),
- ("cold_hello", ["--reload", "tests/002_hello.ts"]),
- ("cold_relative_import", ["--reload", "tests/003_relative_import.ts"]),
- ("workers_startup", ["tests/workers_startup_bench.ts"]),
- ("workers_round_robin", ["tests/workers_round_robin_bench.ts"]),
+ ("hello", ["cli/tests/002_hello.ts"]),
+ ("relative_import", ["cli/tests/003_relative_import.ts"]),
+ ("error_001", ["cli/tests/error_001.ts"]),
+ ("cold_hello", ["--reload", "cli/tests/002_hello.ts"]),
+ ("cold_relative_import", ["--reload", "cli/tests/003_relative_import.ts"]),
+ ("workers_startup", ["cli/tests/workers_startup_bench.ts"]),
+ ("workers_round_robin", ["cli/tests/workers_round_robin_bench.ts"]),
("text_decoder", ["cli/tests/text_decoder_perf.js"]),
("text_encoder", ["cli/tests/text_encoder_perf.js"]),
]