File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
test/integration-tests/debugger Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ import { expect } from "chai";
1515
1616import { WorkspaceContext } from "@src/WorkspaceContext" ;
1717import { getLLDBLibPath } from "@src/debugger/lldb" ;
18- import { IS_RUNNING_UNDER_DOCKER } from "@src/utilities/utilities" ;
1918import { Version } from "@src/utilities/version" ;
2019
2120import { 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 }
You can’t perform that action at this time.
0 commit comments