File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
test/Shell/RPC/Scripts/TestConvertScript Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 2727LLDB_NAMESPACE_DEFINITION_REGEX = re .compile (
2828 r"(?P<comment_marker>//\s*){,1}namespace lldb\s{1}" , re .M
2929)
30- LLDB_NAMESPACE_REGEX = re .compile (r"\s*.+ lldb::\s*" , re .M )
30+ LLDB_NAMESPACE_REGEX = re .compile (r"lldb::\s*" , re .M )
3131
3232
3333def main ():
Original file line number Diff line number Diff line change @@ -13,5 +13,8 @@ CHECK: #define LLDB_RPC_ENUMERATIONS_H
1313# Change the namespace to lldb_rpc. Also, the comment that closes the namespace should match the namespace.
1414CHECK: namespace lldb_rpc {} // namespace lldb_rpc
1515
16+ # When the lldb namespace is used, the namespace must be replaced with lldb_rpc.
17+ CHECK: void dummyFunction(lldb_rpc::addr_t) {}
18+
1619# The comment that closes the include guard should match the guard.
1720CHECK: #endif // LLDB_RPC_ENUMERATIONS_H
Original file line number Diff line number Diff line change 1111// namespace lldb -> namespace lldb_rpc
1212namespace lldb {} // namespace lldb
1313
14+ // When the lldb namespace is used, the namespace must be replaced with lldb_rpc.
15+ void dummyFunction (lldb::addr_t ) {}
16+
1417// The comment that closes the include guard must change in the same way
1518// the original guard did:
1619// #endif // LLDB_LLDB_ENUMERATIONS_H -> #endif // LLDB_RPC_ENUMERATIONS_H
You can’t perform that action at this time.
0 commit comments