Chelsea Cassanova c73e5e3e20
[lldb][scripts] Fix bugs in framework fix script (#145961)
The script used to fix up LLDB's header for use in the macOS framework
contained 2 bugs that this commit addreses:

1. The output contents were appended to the output file multiple times
instead of only being written once.
2. The script was not considering LLDB includes that were *not* from the
SB API.

This commit addresses and fixes both of these bugs and updates the
corresponding test to match.
2025-06-26 15:06:37 -07:00

15 lines
493 B
C

// This is a truncated version of an SB API file
// used to test framework-header-fix.py to make sure the includes are correctly fixed
// up for the LLDB.framework.
// Local includes must be changed to framework level includes.
// e.g. #include "lldb/API/SBDefines.h" -> #include <LLDB/SBDefines.h>
#include "lldb/API/SBDefines.h"
#include "lldb/API/SBModule.h"
#include "lldb/lldb-types.h"
// Any include guards specified at the command line must be removed.
#ifndef SWIG
int a = 10
#endif