Skip to content

Commit 73f0106

Browse files
committed
[lldb][NFC] Give added test method a unique name
Otherwise dotest doesn't run the test and just lets it always pass. Also update the comment to explain that we do directory and not file completion. llvm-svn: 370047
1 parent aec6884 commit 73f0106

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ def test_log_file(self):
138138
['main.cpp'])
139139

140140
@skipIfFreeBSD # timing out on the FreeBSD buildbot
141-
def test_log_file(self):
142-
# Complete in our source directory which contains a 'main.cpp' file.
141+
def test_log_dir(self):
142+
# Complete our source directory.
143143
src_dir = os.path.dirname(os.path.realpath(__file__))
144144
self.complete_from_to('log enable lldb expr -f ' + src_dir,
145145
[src_dir + "/"])

0 commit comments

Comments
 (0)