Skip to content

Commit 95d9f29

Browse files
authored
Fix TOTAL_MEMORY usage in benchmarks (#9273)
Broken by #9207.
1 parent ee0c6db commit 95d9f29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_benchmark.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def build(self, parent, filename, args, shared_args, emcc_args, native_args, nat
190190
cmd = [
191191
PYTHON, EMCC, filename,
192192
OPTIMIZATIONS,
193-
'-s', 'TOTAL_MEMORY=256*1024*1024',
193+
'-s', 'TOTAL_MEMORY=256MB',
194194
'-s', 'FILESYSTEM=0',
195195
'--closure', '1',
196196
'-s', 'MINIMAL_RUNTIME=0',

0 commit comments

Comments
 (0)