diff options
| author | Siva Chandra <sivachandra@google.com> | 2015-04-14 00:13:28 +0000 |
|---|---|---|
| committer | Siva Chandra <sivachandra@google.com> | 2015-04-14 00:13:28 +0000 |
| commit | ed62034df885f1b11d0e6af1f02efa80689873bc (patch) | |
| tree | ef4183865fb214773e9125b1b92ff8f6ad2d0c87 | |
| parent | d610a96d158601917b7deeb47f4ff8f9217ce852 (diff) | |
| download | bcm5719-llvm-ed62034df885f1b11d0e6af1f02efa80689873bc.tar.gz bcm5719-llvm-ed62034df885f1b11d0e6af1f02efa80689873bc.zip | |
[TestPluginCommands] Add skipIfGcc at the right place.
Summary:
The decorator @expectedFailureGcc was at the wrong place skipping this
test all together. This patch removes it and adds skipIfGcc at the right
place.
Test Plan: dotest.py -C <gcc|clang> -p TestPluginCommands
Reviewers: chying, chaoren
Reviewed By: chaoren
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D9010
llvm-svn: 234821
| -rw-r--r-- | lldb/test/functionalities/plugins/commands/TestPluginCommands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/plugins/commands/TestPluginCommands.py b/lldb/test/functionalities/plugins/commands/TestPluginCommands.py index 3ccff1cfa51..4fbb7a677d8 100644 --- a/lldb/test/functionalities/plugins/commands/TestPluginCommands.py +++ b/lldb/test/functionalities/plugins/commands/TestPluginCommands.py @@ -9,7 +9,6 @@ import lldb from lldbtest import * import lldbutil -@expectedFailureGcc #xfail to get buildbot green, test failed with gcc4.8.2 class PluginCommandTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) @@ -22,6 +21,7 @@ class PluginCommandTestCase(TestBase): @expectedFailureFreeBSD('llvm.org/pr17430') @skipIfi386 # This test links against liblldb.so. Thus, the test requires a 32-bit liblldb.so. + @skipIfGcc # llvm.org/pr23221 @skipIfNoSBHeaders def test_load_plugin(self): """Test that plugins that load commands work correctly.""" |

