smoke - print running tasks after smoke test run

This commit is contained in:
Benjamin Pasero 2021-11-29 10:12:42 +01:00
parent 12178a4cf7
commit 687521092d
No known key found for this signature in database
GPG key ID: E6380CC4C8219E65
3 changed files with 10 additions and 2 deletions

View file

@ -0,0 +1,3 @@
echo "------------------------------------"
tasklist
echo "------------------------------------"

View file

@ -234,6 +234,11 @@ steps:
timeoutInMinutes: 10
condition: and(succeeded(), eq(variables['VSCODE_STEP_ON_IT'], 'false'), ne(variables['VSCODE_ARCH'], 'arm64'))
- powershell: |
. build/azure-pipelines/win32/exec.ps1
exec {.\build\azure-pipelines\win32\listprocesses.bat }
displayName: List tasks after smoke test run
- task: PublishPipelineArtifact@0
inputs:
artifactName: crash-dump-windows-$(VSCODE_ARCH)

View file

@ -26,8 +26,8 @@ const optimist = require('optimist')
const TEST_GLOB = '**/test/**/*.test.js';
const excludeGlob = '**/{browser,electron-sandbox,electron-browser,electron-main,editor/contrib}/**/*.test.js';
const excludeModules = [
'vs/platform/environment/test/node/nativeModules.test.js',
'vs/base/parts/storage/test/node/storage.test.js',
'vs/platform/environment/test/node/nativeModules.test.js', // native modules are compiled against Electron and this test would fail with node.js
'vs/base/parts/storage/test/node/storage.test.js', // same as above, due to direct dependency to sqlite native module
'vs/workbench/contrib/testing/test/common/testResultStorage.test.js', // TODO@connor4312 https://github.com/microsoft/vscode/issues/137853
'vs/workbench/contrib/testing/test/common/testResultService.test.js', // TODO@connor4312 https://github.com/microsoft/vscode/issues/137853
'vs/platform/files/test/common/files.test.js' // TODO@bpasero enable once we ship Electron 16