diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-05-14 21:19:22 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-05-14 21:19:22 +0000 |
commit | 9d383858610141f9080b74bb2aba46b16abf8a73 (patch) | |
tree | 2f94e44ec04c31e139fca9d7850816554631dda4 | |
parent | d4da8728baeaf722ff0c53c8b8d3b49c53486111 (diff) | |
download | bcm5719-llvm-9d383858610141f9080b74bb2aba46b16abf8a73.tar.gz bcm5719-llvm-9d383858610141f9080b74bb2aba46b16abf8a73.zip |
Remove XFAIL from tests affected by llvm.org/pr-14637
- unable to repro locally, much like many people commenting on the issue
llvm-svn: 181833
3 files changed, 0 insertions, 3 deletions
diff --git a/lldb/test/functionalities/completion/TestCompletion.py b/lldb/test/functionalities/completion/TestCompletion.py index 0e0e5c166e1..2017a3090f4 100644 --- a/lldb/test/functionalities/completion/TestCompletion.py +++ b/lldb/test/functionalities/completion/TestCompletion.py @@ -34,7 +34,6 @@ class CommandLineCompletionTestCase(TestBase): 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\\', diff --git a/lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py b/lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py index 4625098935e..3861ceb44ec 100644 --- a/lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py +++ b/lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py @@ -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() diff --git a/lldb/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py b/lldb/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py index 3d6544e90bf..eb7abc27653 100644 --- a/lldb/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py +++ b/lldb/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py @@ -23,7 +23,6 @@ class SingleQuoteInCommandLineTestCase(TestBase): 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() |