Details
- Reviewers
wallace
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 46532 Build 49031: arc lint + arc unit
Event Timeline
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/TestVSCode_completions.py | ||
---|---|---|
26 ↗ | (On Diff #244547) | don't forget to remove the # |
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/environmentVariables/TestVSCode_environmentVariables.py | ||
20–25 | remove this | |
39–44 | you can write different tests:
| |
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py | ||
917–919 | inheritEnv should be passed here | |
lldb/tools/lldb-vscode/lldb-vscode.cpp | ||
1374–1387 | the env sent by the user in the launch.json config should have more priority than the inherited environment. For example, if env = ["X=A"] and the inherited env is ["X=Z", "Y=V"], then the resulting environment should be ["X=A", "Y=V"]. | |
1389 | remove this | |
2222–2223 | lol | |
lldb/tools/lldb-vscode/package.json | ||
89 | Inherit the debugger environment when launching a process. Only works for binaries launched directly by LLDB. |
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/environmentVariables/TestVSCode_environmentVariables.py | ||
---|---|---|
32–36 | this becomes more readable if you make it a function. That way you avoid having the mutable found variable and you can stop the for loop as soon as you return | |
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/environmentVariables/main.cpp | ||
11 | remove this comment | |
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/lldbvscode_testcase.py | ||
317 | try not to delete existing blank lines | |
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py | ||
917–919 | I think you need a comma here | |
918–919 | put the ) in line 906 | |
lldb/tools/lldb-vscode/lldb-vscode.cpp | ||
1395–1397 | in llvm, you don't need to use { } for one line ifs |
remove this