[Lldb-commits] [lldb] r181833 - Remove XFAIL from tests affected by llvm.org/pr-14637
Daniel Malea
daniel.malea at intel.com
Tue May 14 14:19:22 PDT 2013
Author: dmalea
Date: Tue May 14 16:19:22 2013
New Revision: 181833
URL: http://llvm.org/viewvc/llvm-project?rev=181833&view=rev
Log:
Remove XFAIL from tests affected by llvm.org/pr-14637
- unable to repro locally, much like many people commenting on the issue
Modified:
lldb/trunk/test/functionalities/completion/TestCompletion.py
lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py
lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py
Modified: lldb/trunk/test/functionalities/completion/TestCompletion.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/completion/TestCompletion.py?rev=181833&r1=181832&r2=181833&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/completion/TestCompletion.py (original)
+++ lldb/trunk/test/functionalities/completion/TestCompletion.py Tue May 14 16:19:22 2013
@@ -34,7 +34,6 @@ class CommandLineCompletionTestCase(Test
self.complete_from_to('process attach --con', 'process attach --continue ')
# <rdar://problem/11052829>
- @skipOnLinux # PR-14637: this test case fails (with GCC 4.6 but not clang) because the input prompt "(lldb)" is missing
def test_infinite_loop_while_completing(self):
"""Test that 'process print hello\' completes to itself and does not infinite loop."""
self.complete_from_to('process print hello\\', 'process print hello\\',
Modified: lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py?rev=181833&r1=181832&r2=181833&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py (original)
+++ lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py Tue May 14 16:19:22 2013
@@ -18,7 +18,6 @@ class ConvenienceVariablesCase(TestBase)
self.convenience_variables()
@dwarf_test
- @skipOnLinux # PR-14637: this test case fails sometimes because the input prompt "(lldb)" is missing
def test_with_dwarf_and_run_commands(self):
"""Test convenience variables lldb.debugger, lldb.target, lldb.process, lldb.thread, and lldb.frame."""
self.buildDwarf()
Modified: lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py?rev=181833&r1=181832&r2=181833&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py (original)
+++ lldb/trunk/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py Tue May 14 16:19:22 2013
@@ -23,7 +23,6 @@ class SingleQuoteInCommandLineTestCase(T
except:
pass
- @skipOnLinux # PR-14637: this test case fails sometimes because the input prompt "(lldb)" is missing
def test_lldb_invocation_with_single_quote_in_filename(self):
"""Test that 'lldb my_file_name' works where my_file_name is a string with a single quote char in it."""
self.buildDefault()
More information about the lldb-commits
mailing list