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.
1 parent e0db4f9 commit e9d0cb5Copy full SHA for e9d0cb5
lldb/test/API/debuginfod/TestDebuginfod.py
@@ -9,19 +9,19 @@
9
10
11
class DebugInfodTests(TestBase):
12
- # If your test case doesn't stress debug info, then
13
- # set this to true. That way it won't be run once for
14
- # each debug info format.
+ # No need to try every flavor of debug inf.
15
NO_DEBUG_INFO_TESTCASE = True
16
17
def test_stuff(self):
18
"""This should test stuff."""
+ print("I am in test_stuff")
19
self.build()
20
self.main_source_file = lldb.SBFileSpec("main.c")
21
self.sample_test()
22
23
def setUp(self):
24
# Call super's setUp().
+ print("I am in setUp")
25
TestBase.setUp(self)
26
# Set up your test case here. If your test doesn't need any set up then
27
# remove this method from your TestCase class.
0 commit comments