Skip to content

Commit 5d2953d

Browse files
authored
Temporarily disable failing CodeLLDB tests on linux (#1978)
CodeLLDB is failing to debug on nightlies, likely this is an interaction between its LLDB and the toolchain; doesn't look like an extension issue. Temporarily skip until its resolved.
1 parent 8b1bcf9 commit 5d2953d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/integration-tests/testexplorer/TestExplorerIntegration.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,11 @@ tag("large").suite("Test Explorer Suite", function () {
160160
let resetSettings: (() => Promise<void>) | undefined;
161161
beforeEach(async function () {
162162
// CodeLLDB on windows doesn't print output and so cannot be parsed
163-
if (process.platform === "win32") {
163+
if (
164+
process.platform === "win32" ||
165+
(process.platform === "linux" &&
166+
folderContext.swiftVersion.isGreaterThanOrEqual(new Version(6, 2, 0)))
167+
) {
164168
this.skip();
165169
}
166170

0 commit comments

Comments
 (0)