Skip to content

Commit

Permalink
[lldb][NFC] Test ModuleCompletion mode by completing the target modul…
Browse files Browse the repository at this point in the history
…es load argument
  • Loading branch information
Teemperor committed Feb 11, 2020
1 parent c69ec64 commit f65f9d3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lldb/test/API/functionalities/completion/TestCompletion.py
Expand Up @@ -356,6 +356,14 @@ def test_target_modules_dump_line_table(self):
self.complete_from_to('target modules dump line-table main.cp',
['main.cpp'])

@skipIfFreeBSD # timing out on the FreeBSD buildbot
def test_target_modules_load_aout(self):
"""Tests modules completion by completing the target modules load argument."""
self.build()
self.dbg.CreateTarget(self.getBuildArtifact("a.out"))
self.complete_from_to('target modules load a.ou',
['a.out'])

@skipIfFreeBSD # timing out on the FreeBSD buildbot
def test_target_create_dash_co(self):
"""Test that 'target create --co' completes to 'target variable --core '."""
Expand Down

0 comments on commit f65f9d3

Please sign in to comment.