Skip to content

Commit

Permalink
Increase timeout value for fixes https://github.com/microsoft/vscode-…
Browse files Browse the repository at this point in the history
  • Loading branch information
lygstate committed Jan 25, 2022
1 parent 225544d commit 9784603
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/unit-tests/driver/driver-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export function makeDriverTestsuite(driverName: string, driver_generator: (cmake
} else {
expect(allTargetName).to.eq('all');
}
}).timeout(60000);
}).timeout(60000 * 2);

test('Check binary dir', async () => {
const config = ConfigurationReader.create();
Expand Down
2 changes: 1 addition & 1 deletion test/unit-tests/kit-scan.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ suite('Kits scan test', async () => {

// Don't care about the result, just check that we don't throw during the test
await kit.scanForKits(cmt, { ignorePath: process.platform === 'win32' });
}).timeout(120000); // Compiler detection can run a little slow
}).timeout(120000 * 2); // Compiler detection can run a little slow

test('Detect a GCC compiler file', async () => {
const compiler = path.join(fakebin, 'gcc-42.1');
Expand Down

0 comments on commit 9784603

Please sign in to comment.