@@ -740,7 +740,7 @@ class Benchmark {
740
740
__benchmark.runIteration();
741
741
let end = performance.now();
742
742
743
- // performance.measure(iterationMarkLabel, iterationMarkLabel);
743
+ performance.measure(iterationMarkLabel, iterationMarkLabel);
744
744
745
745
${ this . postIterationCode }
746
746
@@ -1233,7 +1233,7 @@ class AsyncBenchmark extends DefaultBenchmark {
1233
1233
await __benchmark.runIteration();
1234
1234
let end = performance.now();
1235
1235
1236
- // performance.measure(iterationMarkLabel, iterationMarkLabel);
1236
+ performance.measure(iterationMarkLabel, iterationMarkLabel);
1237
1237
1238
1238
${ this . postIterationCode }
1239
1239
@@ -1314,7 +1314,7 @@ class WSLBenchmark extends Benchmark {
1314
1314
benchmark.buildStdlib();
1315
1315
results.push(performance.now() - start);
1316
1316
1317
- // performance.measure(markLabel, markLabel);
1317
+ performance.measure(markLabel, markLabel);
1318
1318
}
1319
1319
1320
1320
{
@@ -1325,7 +1325,7 @@ class WSLBenchmark extends Benchmark {
1325
1325
benchmark.run();
1326
1326
results.push(performance.now() - start);
1327
1327
1328
- // performance.measure(markLabel, markLabel);
1328
+ performance.measure(markLabel, markLabel);
1329
1329
}
1330
1330
1331
1331
top.currentResolve(results);
@@ -2068,6 +2068,7 @@ let BENCHMARKS = [
2068
2068
iterations : 15 ,
2069
2069
worstCaseCount : 2 ,
2070
2070
tags : [ "Wasm" ] ,
2071
+ disabledByDefault : true ,
2071
2072
} ) ,
2072
2073
new WasmEMCCBenchmark ( {
2073
2074
name : "Dart-flute-todomvc-wasm" ,
@@ -2078,7 +2079,7 @@ let BENCHMARKS = [
2078
2079
jsModule : "./Dart/build/flute.todomvc.dart2wasm.mjs" ,
2079
2080
wasmBinary : "./Dart/build/flute.todomvc.dart2wasm.wasm" ,
2080
2081
} ,
2081
- iterations : 15 ,
2082
+ iterations : 30 ,
2082
2083
worstCaseCount : 2 ,
2083
2084
tags : [ "Default" , "Wasm" ] ,
2084
2085
} ) ,
0 commit comments