Skip to content

Commit 9de8141

Browse files
committed
Update logging strings
(cherry picked from commit 5b3bf06)
1 parent fb8ed5a commit 9de8141

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1937,7 +1937,7 @@ ProcessModule(ModuleSP module_sp, std::string m_description,
19371937
std::vector<std::string> &extra_clang_args) {
19381938
{
19391939
llvm::raw_string_ostream ss(m_description);
1940-
ss << "ProcessModule(" << '"';
1940+
ss << "::ProcessModule(" << '"';
19411941
module_sp->GetDescription(ss, eDescriptionLevelBrief);
19421942
ss << '"' << ')';
19431943
}

lldb/test/API/lang/swift/system_framework/TestSwiftSystemFramework.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_system_framework(self):
2626
neg = 0
2727
with open(log, "r") as logfile:
2828
for line in logfile:
29-
if ") rejecting framework path " in line:
29+
if "-- rejecting framework path " in line:
3030
pos += 1
3131
elif ("reflection metadata" not in line) and \
3232
("/System/Library/Frameworks" in line):

0 commit comments

Comments
 (0)