mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-12 01:45:10 +00:00
![Ben Riegel](/assets/img/avatar_default.png)
This PR adds tests for #2219 by changing the `compilation_on_android_ubuntu.yml` workflow. The first run will take about two hours, since LLDB is built from scratch. Later, the build is cached and the whole job should not take more than three minutes. Core of the PR is an integration test that boots up vscode and lets it debug a test WASM file.
27 lines
893 B
JSON
27 lines
893 B
JSON
// A launch configuration that compiles the extension and then opens it inside a new window
|
|
|
|
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Extension",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
|
|
"outFiles": ["${workspaceFolder}/out/**/*.js"],
|
|
"preLaunchTask": "${defaultBuildTask}"
|
|
},
|
|
{
|
|
"name": "Launch Extension Tests",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": [
|
|
"--extensionDevelopmentPath=${workspaceFolder}",
|
|
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
|
|
],
|
|
"outFiles": ["${workspaceFolder}/out/test/**/*.js"]
|
|
}
|
|
]
|
|
}
|