blob: 1109086cf731c21f7ef6935164b06415ad63f4c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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
|