forked from OSchip/llvm-project
[lldb][NFC] Try fixing TestCompletion.py on Windows
llvm-svn: 370316
This commit is contained in:
parent
a884a06c92
commit
250cef2c7d
|
@ -144,13 +144,12 @@ class CommandLineCompletionTestCase(TestBase):
|
||||||
self.complete_from_to('log enable lldb expr -f ' + src_dir,
|
self.complete_from_to('log enable lldb expr -f ' + src_dir,
|
||||||
['main.cpp'])
|
['main.cpp'])
|
||||||
|
|
||||||
@skipIfWindows
|
|
||||||
@skipIfFreeBSD # timing out on the FreeBSD buildbot
|
@skipIfFreeBSD # timing out on the FreeBSD buildbot
|
||||||
def test_log_dir(self):
|
def test_log_dir(self):
|
||||||
# Complete our source directory.
|
# Complete our source directory.
|
||||||
src_dir = os.path.dirname(os.path.realpath(__file__))
|
src_dir = os.path.dirname(os.path.realpath(__file__))
|
||||||
self.complete_from_to('log enable lldb expr -f ' + src_dir,
|
self.complete_from_to('log enable lldb expr -f ' + src_dir,
|
||||||
[src_dir + "/"])
|
[src_dir + os.sep], turn_off_re_match=True)
|
||||||
|
|
||||||
# <rdar://problem/11052829>
|
# <rdar://problem/11052829>
|
||||||
@skipIfFreeBSD # timing out on the FreeBSD buildbot
|
@skipIfFreeBSD # timing out on the FreeBSD buildbot
|
||||||
|
|
Loading…
Reference in New Issue