File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -526,6 +526,13 @@ class Driver {
526
526
}
527
527
}
528
528
529
+ dumpTestList ( )
530
+ {
531
+ for ( const benchmark of this . benchmarks ) {
532
+ console . log ( benchmark . name ) ;
533
+ }
534
+ }
535
+
529
536
async reportScoreToRunBenchmarkRunner ( )
530
537
{
531
538
if ( ! isInBrowser )
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ if ("--help" in cliFlags) {
83
83
console . log ( " --iteration-count: Set the default iteration count." ) ;
84
84
console . log ( " --worst-case-count: Set the default worst-case count" ) ;
85
85
console . log ( " --dump-json-results: Print summary json to the console." ) ;
86
+ console . log ( " --dump-test-list: Print test list instead of running." ) ;
86
87
console . log ( " --ramification: Enable ramification support. See RAMification.py for more details." ) ;
87
88
console . log ( " --no-prefetch: Do not prefetch resources. Will add network overhead to measurements!" ) ;
88
89
console . log ( "" ) ;
@@ -97,6 +98,8 @@ if ("--help" in cliFlags) {
97
98
const benchmarkNames = BENCHMARKS . map ( b => b . name ) . sort ( ) ;
98
99
for ( const benchmark of benchmarkNames )
99
100
console . log ( " " , benchmark ) ;
101
+ } else if ( "--dump-test-list" in cliFlags ) {
102
+ JetStream . dumpTestList ( ) ;
100
103
} else {
101
104
runJetStream ( ) ;
102
105
}
You can’t perform that action at this time.
0 commit comments