Details
- Reviewers
wallace
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 46522 Build 49019: arc lint + arc unit
Event Timeline
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/completions/TestVSCode_completions.py | ||
---|---|---|
26 | 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 | ||
905–907 | inheritEnv should be passed here | |
lldb/tools/lldb-vscode/lldb-vscode.cpp | ||
1397–1410 | 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"]. | |
1402 | remove this | |
2245–2246 | 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 | ||
---|---|---|
31–35 | 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 | ||
10 | remove this comment | |
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/lldbvscode_testcase.py | ||
315 | try not to delete existing blank lines | |
lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py | ||
905 | I think you need a comma here | |
906–907 | put the ) in line 906 | |
lldb/tools/lldb-vscode/lldb-vscode.cpp | ||
1408–1410 | in llvm, you don't need to use { } for one line ifs |
don't forget to remove the #