This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"key": "<keyboard shortcut>", | |
"command": "workbench.action.tasks.runTask", | |
"args": "<task name>" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"label": "Ninja Build (Swift)", | |
"type": "shell", | |
"command": "ninja", | |
"args": [ | |
"swift" | |
], | |
"options": { | |
"cwd": "${env:SWIFT_BUILD_DIR}" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"label": "Run Test", | |
"type": "shell", | |
"command": "${LLVM_LIT_DIR}/lit.py", | |
"args": [ | |
"-sv", | |
"--param", | |
"swift_site_config=${SWIFT_BUILD_DIR}/test-macosx-x86_64/lit.site.cfg", | |
"${fileDirname}", | |
"--filter=${fileBasename}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "testFilter", | |
"type": "promptString", | |
"description": "Runs the specified lit tests." | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Ninja Build (Swift)", | |
"type": "shell", | |
"command": "ninja", | |
"args": [ | |
"swift" | |
], |
OlderNewer