Compare commits

...

4 commits

Author SHA1 Message Date
Tyler Leonhardt 5386fbb292
add logging and go back to latest 2021-11-24 10:57:57 -08:00
Tyler James Leonhardt a7a6ad0086
try using windows-2019 2021-11-24 09:29:07 -08:00
Tyler James Leonhardt 425cc47b15
remove old tar flag 2021-11-24 09:29:07 -08:00
Tyler James Leonhardt 0154979b1f
update to windows latest 2021-11-24 09:29:06 -08:00
4 changed files with 13 additions and 3 deletions

View file

@ -152,7 +152,7 @@ stages:
dependsOn:
- Compile
pool:
vmImage: VS2017-Win2016
vmImage: windows-latest
jobs:
- ${{ if eq(parameters.VSCODE_BUILD_WIN32, true) }}:
- job: Windows

View file

@ -35,7 +35,7 @@ stages:
- stage: Windows
condition: eq(variables.SCAN_WINDOWS, 'true')
pool:
vmImage: VS2017-Win2016
vmImage: windows-latest
jobs:
- job: WindowsJob
timeoutInMinutes: 0

View file

@ -24,7 +24,7 @@ steps:
- powershell: |
. build/azure-pipelines/win32/exec.ps1
$ErrorActionPreference = "Stop"
exec { tar --force-local -xzf $(Build.ArtifactStagingDirectory)/compilation.tar.gz }
exec { tar -xzf $(Build.ArtifactStagingDirectory)/compilation.tar.gz }
displayName: Extract compilation output
- powershell: |

View file

@ -11,6 +11,7 @@ import { URI } from 'vs/base/common/uri';
import { IFolderQuery, QueryType, IRawFileMatch } from 'vs/workbench/services/search/common/search';
import { Engine as FileSearchEngine, FileWalker } from 'vs/workbench/services/search/node/fileSearch';
import { flakySuite, getPathFromAmdModule } from 'vs/base/test/node/testUtils';
import { readdirSync } from 'fs';
const TEST_FIXTURES = path.normalize(getPathFromAmdModule(require, './fixtures'));
const EXAMPLES_FIXTURES = URI.file(path.join(TEST_FIXTURES, 'examples'));
@ -482,6 +483,15 @@ flakySuite('FileSearchEngine', () => {
includePattern: { '**/üm laut汉语/*': true }
});
console.log('log thing');
readdirSync(TEST_FIXTURES).forEach(function (fixtureFolder) {
console.log('1: ' + fixtureFolder);
});
readdirSync(`${TEST_FIXTURES}\\üm laut汉语`).forEach(function (fixtureFolder) {
console.log('2: ' + fixtureFolder);
});
let count = 0;
engine.search((result) => {
if (result) {