In the script that's used by RPC to convert LLDB headers to LLDB RPC headers, there's a bug with how it converts namespace usage. An overeager regex pattern caused *all* text before any `lldb::` namespace usage to get replaced with `lldb_rpc::` instead of just the namespace itself. This commit changes that regex pattern to be less overeager and modifies one of the shell tests for this script to actually check that the namespace usage replacement is working correctly. rdar://154126268
21 lines
864 B
Plaintext
21 lines
864 B
Plaintext
RUN: mkdir -p %t/Outputs
|
|
|
|
# Run the convert script on lldb-enumerations.h.
|
|
RUN: %python %p/../../../../../scripts/convert-lldb-header-to-rpc-header.py %p/Inputs/lldb-enumerations.h %t/Outputs/lldb-rpc-enumerations.h
|
|
|
|
# Check the output
|
|
RUN: cat %t/Outputs/lldb-rpc-enumerations.h | FileCheck %s
|
|
|
|
# The include guards must change from LLDB_LLDB_ENUMERATIONS_H to LLDB_RPC_ENUMERATIONS_H.
|
|
CHECK: #ifndef LLDB_RPC_ENUMERATIONS_H
|
|
CHECK: #define LLDB_RPC_ENUMERATIONS_H
|
|
|
|
# Change the namespace to lldb_rpc. Also, the comment that closes the namespace should match the namespace.
|
|
CHECK: namespace lldb_rpc {} // namespace lldb_rpc
|
|
|
|
# When the lldb namespace is used, the namespace must be replaced with lldb_rpc.
|
|
CHECK: void dummyFunction(lldb_rpc::addr_t) {}
|
|
|
|
# The comment that closes the include guard should match the guard.
|
|
CHECK: #endif // LLDB_RPC_ENUMERATIONS_H
|