[Lldb-commits] [lldb] r370316 - [lldb][NFC] Try fixing TestCompletion.py on Windows
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 29 02:57:02 PDT 2019
Author: teemperor
Date: Thu Aug 29 02:57:02 2019
New Revision: 370316
URL: http://llvm.org/viewvc/llvm-project?rev=370316&view=rev
Log:
[lldb][NFC] Try fixing TestCompletion.py on Windows
Modified:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py?rev=370316&r1=370315&r2=370316&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py Thu Aug 29 02:57:02 2019
@@ -144,13 +144,12 @@ class CommandLineCompletionTestCase(Test
self.complete_from_to('log enable lldb expr -f ' + src_dir,
['main.cpp'])
- @skipIfWindows
@skipIfFreeBSD # timing out on the FreeBSD buildbot
def test_log_dir(self):
# Complete our source directory.
src_dir = os.path.dirname(os.path.realpath(__file__))
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>
@skipIfFreeBSD # timing out on the FreeBSD buildbot
More information about the lldb-commits
mailing list