Skip to content

Commit 4085409

Browse files
author
Kevin Frei
committed
Trying to get my head around Python again
1 parent dadfaac commit 4085409

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/test/API/debuginfod/TestDebuginfod.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99

1010

1111
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.
12+
# No need to try every flavor of debug inf.
1513
NO_DEBUG_INFO_TESTCASE = True
1614

1715
def test_stuff(self):
1816
"""This should test stuff."""
17+
print("I am in test_stuff")
1918
self.build()
2019
self.main_source_file = lldb.SBFileSpec("main.c")
2120
self.sample_test()
2221

2322
def setUp(self):
2423
# Call super's setUp().
24+
print("I am in setUp")
2525
TestBase.setUp(self)
2626
# Set up your test case here. If your test doesn't need any set up then
2727
# remove this method from your TestCase class.

0 commit comments

Comments
 (0)