[Lldb-commits] [lldb] r246570 - Un-XFAIL a couple tests that are now passing.
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Tue Sep 1 11:25:05 PDT 2015
Author: zturner
Date: Tue Sep 1 13:25:05 2015
New Revision: 246570
URL: http://llvm.org/viewvc/llvm-project?rev=246570&view=rev
Log:
Un-XFAIL a couple tests that are now passing.
Modified:
lldb/trunk/test/settings/quoting/TestQuoting.py
Modified: lldb/trunk/test/settings/quoting/TestQuoting.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/settings/quoting/TestQuoting.py?rev=246570&r1=246569&r2=246570&view=diff
==============================================================================
--- lldb/trunk/test/settings/quoting/TestQuoting.py (original)
+++ lldb/trunk/test/settings/quoting/TestQuoting.py Tue Sep 1 13:25:05 2015
@@ -38,7 +38,6 @@ class SettingsCommandTestCase(TestBase):
def test_double_quote_escape2(self):
self.do_test_args('"a b\\\\" c', 'a b\\\0c\0')
- @expectedFailureWindows("http://llvm.org/pr24557")
def test_single_in_double(self):
self.do_test_args('"a\'b"', "a'b\0")
@@ -49,7 +48,6 @@ class SettingsCommandTestCase(TestBase):
def test_combined(self):
self.do_test_args('"a b"c\'d e\'', 'a bcd e\0')
- @expectedFailureWindows("http://llvm.org/pr24557")
def test_bare_single(self):
self.do_test_args("a\\'b", "a'b\0")
More information about the lldb-commits
mailing list