We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e8e81d4 + bdf645b commit d2d9f8eCopy full SHA for d2d9f8e
lldb/test/API/functionalities/tsan/basic/TestTsanBasic.py
@@ -63,11 +63,11 @@ def tsan_tests(self):
63
substrs=["1 match found"],
64
)
65
66
- # We should be stopped in __tsan_on_report
+ # We should not be stopped in the sanitizer library.
67
process = self.dbg.GetSelectedTarget().process
68
thread = process.GetSelectedThread()
69
frame = thread.GetSelectedFrame()
70
- self.assertIn("__tsan_on_report", frame.GetFunctionName())
+ self.assertIn("f2", frame.GetFunctionName())
71
72
# The stopped thread backtrace should contain either line1 or line2
73
# from main.c.
0 commit comments