Skip to content

Commit 608182d

Browse files
disable LLDB contract test on Windows with Swift 6.2.1 (#1948)
1 parent 9cf2f5d commit 608182d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/integration-tests/debugger/lldb.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import { expect } from "chai";
1515

1616
import { WorkspaceContext } from "@src/WorkspaceContext";
1717
import { getLLDBLibPath } from "@src/debugger/lldb";
18-
import { IS_RUNNING_UNDER_DOCKER } from "@src/utilities/utilities";
1918
import { Version } from "@src/utilities/version";
2019

2120
import { activateExtensionForTest } from "../utilities/testutilities";
@@ -25,12 +24,13 @@ suite("lldb contract test suite", () => {
2524

2625
activateExtensionForTest({
2726
async setup(ctx) {
28-
// lldb.exe on Windows is not launching correctly, but only in Docker.
27+
// This test is failing due to toolchain issues starting with Swift 6.2.1
28+
// Will re-enable once that is resolved.
29+
//
30+
// https://github.com/swiftlang/vscode-swift/issues/1947
2931
if (
30-
IS_RUNNING_UNDER_DOCKER &&
3132
process.platform === "win32" &&
32-
ctx.globalToolchainSwiftVersion.isGreaterThanOrEqual(new Version(6, 0, 0)) &&
33-
ctx.globalToolchainSwiftVersion.isLessThan(new Version(6, 0, 2))
33+
ctx.globalToolchainSwiftVersion.isGreaterThanOrEqual(new Version(6, 2, 1))
3434
) {
3535
this.skip();
3636
}

0 commit comments

Comments
 (0)