Skip to content

Commit

Permalink
Multi-root support (#958)
Browse files Browse the repository at this point in the history
  • Loading branch information
xisui-MSFT authored and bobbrow committed Jan 16, 2020
1 parent 7ea6226 commit 4fa7e03
Show file tree
Hide file tree
Showing 63 changed files with 3,173 additions and 1,418 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ package-lock.json
**/nls.*.json
**/*.nls.json
**/*.nls.*.json
test.txt
88 changes: 84 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"HasVs": "true"
},
"preLaunchTask": "build-tests-with-tsc-watch"
// "smartStep": true
},
{
"name": "Launch Extension Tests (without-cmakelist-file)",
Expand Down Expand Up @@ -81,7 +80,6 @@
"HasVs": "false"
}
}
// "smartStep": true
},
{
"name": "Launch Extension Tests (successful-build)",
Expand Down Expand Up @@ -124,7 +122,90 @@
"HasVs": "false"
}
}
// "smartStep": true
},
{
"name": "Launch Extension Tests (single-root-UI)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"${workspaceFolder}/test/extension-tests/single-root-UI/project-folder",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/extension-tests/single-root-UI"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/*",
"${workspaceFolder}/out/src/*",
"${workspaceFolder}/out/test/*",
"${workspaceFolder}/out/test/extension-tests/single-root-UI/*",
"${workspaceFolder}/out/test/extension-tests/single-root-UI/test/*"
],
"preLaunchTask": "build-tests-with-tsc-watch",
"windows": {
"env": {
"CMT_TESTING": "1",
"CMT_QUIET_CONSOLE": "1",
"HasVs": "true"
}
},
"linux": {
"env": {
"CMT_TESTING": "1",
"CMT_QUIET_CONSOLE": "1",
"HasVs": "false"
}
},
"osx": {
"env": {
"CMT_TESTING": "1",
"CMT_QUIET_CONSOLE": "1",
"HasVs": "false"
}
}
},
{
"name": "Launch Extension Tests (multi-root-UI)",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"${workspaceFolder}/test/extension-tests/multi-root-UI/project-workspace.code-workspace",
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/extension-tests/multi-root-UI"
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/*",
"${workspaceFolder}/out/src/*",
"${workspaceFolder}/out/test/*",
"${workspaceFolder}/out/test/extension-tests/multi-root-UI/*",
"${workspaceFolder}/out/test/extension-tests/multi-root-UI/test/*"
],
"preLaunchTask": "build-tests-with-tsc-watch",
"windows": {
"env": {
"CMT_TESTING": "1",
"CMT_QUIET_CONSOLE": "1",
"HasVs": "true"
}
},
"linux": {
"env": {
"CMT_TESTING": "1",
"CMT_QUIET_CONSOLE": "1",
"HasVs": "false"
}
},
"osx": {
"env": {
"CMT_TESTING": "1",
"CMT_QUIET_CONSOLE": "1",
"HasVs": "false"
}
}
},
{
"name": "Launch Extension Tests (vs-preferred-gen)",
Expand Down Expand Up @@ -160,7 +241,6 @@
"HasVs": "false"
}
}
// "smartStep": true
},
{
"type": "node",
Expand Down
Loading

0 comments on commit 4fa7e03

Please sign in to comment.