65
65
const charts = {
66
66
...Object . fromEntries (
67
67
[ ] . concat (
68
- ...[ "test262" , "test262-jit" ] . map ( ( name ) => [
68
+ ...[ "test262" ] . map ( ( name ) => [
69
69
[
70
70
name ,
71
71
{
147
147
continue ;
148
148
}
149
149
150
- for ( const jitSuffix of [ "" , "-jit "] ) {
150
+ for ( const suffix of [ "" ] ) {
151
151
// chart-test262-performance
152
- const performanceTests = entry . tests [ `test262${ jitSuffix } ` ] ;
153
- const performanceChart = charts [ `test262${ jitSuffix } -performance` ] ;
152
+ const performanceTests = entry . tests [ `test262${ suffix } ` ] ;
153
+ const performanceChart = charts [ `test262${ suffix } -performance` ] ;
154
154
const performanceResults = performanceTests ?. results ;
155
155
if ( performanceResults ) {
156
156
performanceChart . metadata . push ( {
167
167
}
168
168
169
169
// chart-test262-performance-per-test
170
- const performancePerTestTests = entry . tests [ `test262${ jitSuffix } ` ] ;
170
+ const performancePerTestTests = entry . tests [ `test262${ suffix } ` ] ;
171
171
const performancePerTestChart =
172
- charts [ `test262${ jitSuffix } -performance-per-test` ] ;
172
+ charts [ `test262${ suffix } -performance-per-test` ] ;
173
173
const performancePerTestResults = performancePerTestTests ?. results ;
174
174
if ( performancePerTestResults ) {
175
175
performancePerTestChart . metadata . push ( {
@@ -394,21 +394,19 @@ test262@${test262Version}, test262-parser-tests@${test262ParserTestsVersion}`;
394
394
document . getElementById ( "chart-test262-parser-tests" ) ,
395
395
charts [ "test262-parser-tests" ]
396
396
) ;
397
- for ( const jitSuffix of [ "" , "-jit "] ) {
397
+ for ( const suffix of [ "" ] ) {
398
398
initializeChart (
399
- document . getElementById ( `chart-test262${ jitSuffix } ` ) ,
400
- charts [ `test262${ jitSuffix } ` ]
399
+ document . getElementById ( `chart-test262${ suffix } ` ) ,
400
+ charts [ `test262${ suffix } ` ]
401
401
) ;
402
402
initializeChart (
403
- document . getElementById ( `chart-test262${ jitSuffix } -performance` ) ,
404
- charts [ `test262${ jitSuffix } -performance` ] ,
403
+ document . getElementById ( `chart-test262${ suffix } -performance` ) ,
404
+ charts [ `test262${ suffix } -performance` ] ,
405
405
{ yAxisTitle : TestResultLabels [ TestResult . DURATION ] }
406
406
) ;
407
407
initializeChart (
408
- document . getElementById (
409
- `chart-test262${ jitSuffix } -performance-per-test`
410
- ) ,
411
- charts [ `test262${ jitSuffix } -performance-per-test` ] ,
408
+ document . getElementById ( `chart-test262${ suffix } -performance-per-test` ) ,
409
+ charts [ `test262${ suffix } -performance-per-test` ] ,
412
410
{ yAxisTitle : TestResultLabels [ TestResult . DURATION ] }
413
411
) ;
414
412
}
@@ -424,16 +422,6 @@ test262@${test262Version}, test262-parser-tests@${test262ParserTestsVersion}`;
424
422
) ;
425
423
}
426
424
427
- if ( "test262-jit" in last . tests ) {
428
- initializeSummary (
429
- document . getElementById ( "summary-test262-jit" ) ,
430
- last . run_timestamp ,
431
- last . versions . serenity ,
432
- last . tests [ "test262-jit" ] . duration ,
433
- last . tests [ "test262-jit" ] . results
434
- ) ;
435
- }
436
-
437
425
if ( "test262-parser-tests" in last . tests ) {
438
426
initializeSummary (
439
427
document . getElementById ( "summary-test262-parser-tests" ) ,
0 commit comments