summaryrefslogtreecommitdiff
path: root/tools/benchmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/benchmark.py')
-rwxr-xr-xtools/benchmark.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/benchmark.py b/tools/benchmark.py
index 000d12993..ce08c8ea3 100755
--- a/tools/benchmark.py
+++ b/tools/benchmark.py
@@ -60,10 +60,16 @@ def get_binary_sizes(build_dir):
"deno": os.path.join(build_dir, "deno" + executable_suffix),
"main.js": os.path.join(build_dir, "gen/bundle/main.js"),
"main.js.map": os.path.join(build_dir, "gen/bundle/main.js.map"),
- "snapshot_deno.bin": os.path.join(build_dir, "gen/snapshot_deno.bin")
+ "compiler.js": os.path.join(build_dir, "gen/bundle/compiler.js"),
+ "compiler.js.map": os.path.join(build_dir,
+ "gen/bundle/compiler.js.map"),
+ "snapshot_deno.bin": os.path.join(build_dir, "gen/snapshot_deno.bin"),
+ "snapshot_compiler.bin": os.path.join(build_dir,
+ "gen/snapshot_compiler.bin")
}
sizes = {}
for name, path in path_dict.items():
+ assert os.path.exists(path)
sizes[name] = os.path.getsize(path)
return sizes