Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lldb/unittests/TestingSupport/TestUtilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ using namespace lldb_private;

extern const char *TestMainArgv0;

std::once_flag TestUtilities::g_debugger_initialize_flag;
std::string lldb_private::GetInputFilePath(const llvm::Twine &name) {
llvm::SmallString<128> result = llvm::sys::path::parent_path(TestMainArgv0);
llvm::sys::fs::make_absolute(result);
Expand Down
7 changes: 6 additions & 1 deletion lldb/unittests/TestingSupport/TestUtilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
namespace lldb_private {
std::string GetInputFilePath(const llvm::Twine &name);

class TestUtilities {
public:
static std::once_flag g_debugger_initialize_flag;
};

class TestFile {
public:
static llvm::Expected<TestFile> fromYaml(llvm::StringRef Yaml);
Expand All @@ -51,6 +56,6 @@ class TestFile {

std::string Buffer;
};
}
} // namespace lldb_private

#endif