Skip to content

Commit

Permalink
change "swift-lldb" debug configs to "swift" in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbastien committed Feb 13, 2025
1 parent bd64d77 commit 09ce6ac
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions assets/test/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"configurations": [
{
"type": "swift-lldb",
"type": "swift",
"request": "launch",
"name": "Debug PackageExe (defaultPackage)",
"program": "${workspaceFolder:test}/defaultPackage/.build/debug/PackageExe",
Expand All @@ -12,7 +12,7 @@
"initCommands": ["settings set target.disable-aslr false"],
},
{
"type": "swift-lldb",
"type": "swift",
"request": "launch",
"name": "Release PackageExe (defaultPackage)",
"program": "${workspaceFolder:test}/defaultPackage/.build/release/PackageExe",
Expand Down
3 changes: 2 additions & 1 deletion assets/test/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"-DTEST_ARGUMENT_SET_VIA_TEST_BUILD_ARGUMENTS_SETTING"
],
"lldb.verboseLogging": true,
"swift.backgroundCompilation": false
"swift.backgroundCompilation": false,
"swift.pluginPermissions": {}
}
4 changes: 2 additions & 2 deletions assets/test/defaultPackage/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"configurations": [
{
"type": "swift-lldb",
"type": "swift",
"request": "launch",
"name": "Debug package1",
"program": "${workspaceFolder:defaultPackage}/.build/debug/package1",
Expand All @@ -10,7 +10,7 @@
"preLaunchTask": "swift: Build Debug package1"
},
{
"type": "swift-lldb",
"type": "swift",
"request": "launch",
"name": "Release package1",
"program": "${workspaceFolder:defaultPackage}/.build/release/package1",
Expand Down
8 changes: 4 additions & 4 deletions assets/test/diagnostics/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"configurations": [
{
"type": "swift-lldb",
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:diagnostics}",
Expand All @@ -10,7 +10,7 @@
"preLaunchTask": "swift: Build Debug diagnostics"
},
{
"type": "swift-lldb",
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:diagnostics}",
Expand All @@ -19,7 +19,7 @@
"preLaunchTask": "swift: Build Release diagnostics"
},
{
"type": "swift-lldb",
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:diagnostics}",
Expand All @@ -28,7 +28,7 @@
"preLaunchTask": "swift: Build Debug diagnostics"
},
{
"type": "swift-lldb",
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:diagnostics}",
Expand Down

0 comments on commit 09ce6ac

Please sign in to comment.