Bump version and fix test compile errors
This commit is contained in:
Родитель
add943cfc6
Коммит
a94f1cc8df
|
@ -2,7 +2,7 @@
|
|||
"name": "cmake-tools",
|
||||
"displayName": "CMake Tools",
|
||||
"description": "Extended CMake support in Visual Studio Code",
|
||||
"version": "0.9.2",
|
||||
"version": "0.9.3",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vector-of-bool/vscode-cmake-tools"
|
||||
|
|
|
@ -443,11 +443,11 @@ suite("Utility tests", () => {
|
|||
'--content', test_string,
|
||||
]
|
||||
});
|
||||
await pause(1000);
|
||||
await util.pause(1000);
|
||||
await cmt.debugTarget();
|
||||
// Debugging doesn't wait for it to finish. We must pause for a
|
||||
// while
|
||||
await pause(1000);
|
||||
await util.pause(1000);
|
||||
const content = (await async.readFile(outfile)).toString();
|
||||
assert.strictEqual(content, test_string);
|
||||
});
|
||||
|
@ -464,9 +464,9 @@ suite("Utility tests", () => {
|
|||
'--env', homedir_varname,
|
||||
]
|
||||
});
|
||||
await pause(1000);
|
||||
await util.pause(1000);
|
||||
await cmt.debugTarget();
|
||||
await pause(1000);
|
||||
await util.pause(1000);
|
||||
const content = (await async.readFile(outfile)).toString();
|
||||
assert.strictEqual(content, homedir_var);
|
||||
});
|
||||
|
@ -487,9 +487,9 @@ suite("Utility tests", () => {
|
|||
value: test_string,
|
||||
}]
|
||||
});
|
||||
await pause(1000);
|
||||
await util.pause(1000);
|
||||
await cmt.debugTarget();
|
||||
await pause(1000);
|
||||
await util.pause(1000);
|
||||
const content = (await async.readFile(outfile)).toString();
|
||||
assert.strictEqual(content, test_string);
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче