File tree 2 files changed +3
-2
lines changed
tests/baselines/reference/docker 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,9 @@ function stripRushStageNumbers(result: string): string {
185
185
* so we purge as much of the gulp output as we can
186
186
*/
187
187
function sanitizeUnimportantGulpOutput ( result : string ) : string {
188
- return result . replace ( / ^ .* ( \] ( S t a r t i n g ) | ( F i n i s h e d ) ) .* $ / gm, "" ) . replace ( / \n + / g, "\n" ) ;
188
+ return result . replace ( / ^ .* ( \] ( S t a r t i n g ) | ( F i n i s h e d ) ) .* $ / gm, "" ) // task start/end messages (nondeterministic order)
189
+ . replace ( / ^ .* \] R e s p a w n e d t o P I D : \d + .* $ / gm, "" ) // PID of child is OS and system-load dependent (likely stableish in a container but still dangerous)
190
+ . replace ( / \n + / g, "\n" ) ;
189
191
}
190
192
191
193
function sanitizeTimestamps ( result : string ) : string {
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ Standard output:
3
3
yarn run vX.X.X
4
4
$ gulp compile --max_old_space_size=4095
5
5
[XX:XX:XX] Node flags detected: --max_old_space_size=4095
6
- [XX:XX:XX] Respawned to PID: 29
7
6
[XX:XX:XX] Using gulpfile /vscode/gulpfile.js
8
7
[XX:XX:XX] Error: /vscode/src/vs/workbench/browser/parts/titlebar/titlebarPart.ts(560,5): Type 'null' is not assignable to type 'string'.
9
8
[XX:XX:XX] Error: /vscode/src/vs/base/browser/ui/menu/menubar.ts(742,7): Type '"underline" | null' is not assignable to type 'string'.
You can’t perform that action at this time.
0 commit comments