Former-commit-id: 8db9c7650c
This commit is contained in:
Jarred Sumner
2021-05-02 16:25:14 -07:00
parent 97cb54de2e
commit 320e0460e0
5 changed files with 237 additions and 94 deletions

11
.vscode/launch.json vendored
View File

@@ -1,6 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"program": "${workspaceFolder}/zig-cache/bin/test",
"preLaunchTask": "test",
"args": ["/usr/local/bin/zig"],
"cwd": "${workspaceFolder}",
"console": "internalConsole"
}
]
}

12
.vscode/tasks.json vendored
View File

@@ -23,9 +23,17 @@
},
{
"label": "test",
"type": "process",
"type": "shell",
"command": "zig",
"args": ["test", "${file}", "--main-pkg-path", "${workspaceFolder}"],
"args": [
"test",
"${file}",
"--main-pkg-path",
"${workspaceFolder}",
"-femit-bin=${workspaceFolder}/zig-cache/bin/test",
";",
"true"
],
"group": {
"kind": "test",