@@ -38,7 +38,7 @@ class TestRunner {
3838 await del ( [ path . join ( tmpFolder , '**' ) ] ) ;
3939 await this . extractLatestExtension ( publishedExtensionPath ) ;
4040
41- const timesToLoadEachVersion = 3 ;
41+ const timesToLoadEachVersion = 2 ;
4242 const devLogFiles : string [ ] = [ ] ;
4343 const releaseLogFiles : string [ ] = [ ] ;
4444 const newAnalysisEngineLogFiles : string [ ] = [ ] ;
@@ -47,20 +47,24 @@ class TestRunner {
4747 await this . enableNewAnalysisEngine ( false ) ;
4848
4949 const devLogFile = path . join ( logFilesPath , `dev_loadtimes${ i } .txt` ) ;
50+ console . log ( `Start Performance Tests: Counter ${ i } , for Dev version with Jedi` ) ;
5051 await this . capturePerfTimes ( Version . Dev , devLogFile ) ;
5152 devLogFiles . push ( devLogFile ) ;
5253
5354 const releaseLogFile = path . join ( logFilesPath , `release_loadtimes${ i } .txt` ) ;
55+ console . log ( `Start Performance Tests: Counter ${ i } , for Release version with Jedi` ) ;
5456 await this . capturePerfTimes ( Version . Release , releaseLogFile ) ;
5557 releaseLogFiles . push ( releaseLogFile ) ;
5658
5759 // New Analysis engine.
5860 await this . enableNewAnalysisEngine ( true ) ;
5961 const newAnalysisEngineLogFile = path . join ( logFilesPath , `newAnalysisEngine_loadtimes${ i } .txt` ) ;
62+ console . log ( `Start Performance Tests: Counter ${ i } , for Release version with Analysis Engine` ) ;
6063 await this . capturePerfTimes ( Version . Release , newAnalysisEngineLogFile ) ;
6164 newAnalysisEngineLogFiles . push ( newAnalysisEngineLogFile ) ;
6265 }
6366
67+ console . log ( 'Compare Performance Results' ) ;
6468 await this . runPerfTest ( devLogFiles , releaseLogFiles , newAnalysisEngineLogFiles ) ;
6569 }
6670 private async enableNewAnalysisEngine ( enable : boolean ) {
0 commit comments