summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities/data-formatter
diff options
context:
space:
mode:
authorYing Chen <chying@google.com>2015-04-21 01:15:47 +0000
committerYing Chen <chying@google.com>2015-04-21 01:15:47 +0000
commit7091c2ca3ff63acd4671d92eedb075a100eea9b2 (patch)
tree644b5d6e1057ce2c4d271656469c99d70e64ef59 /lldb/test/functionalities/data-formatter
parentb6b5aaad9836302ed5ab7c936b527dcae667f1d0 (diff)
downloadbcm5719-llvm-7091c2ca3ff63acd4671d92eedb075a100eea9b2.tar.gz
bcm5719-llvm-7091c2ca3ff63acd4671d92eedb075a100eea9b2.zip
XFAIL tests that are failed on linux with gcc-4.9.2
Summary: - add decorator functions to xfail and skip test on specific os, architecture and version of comipler - xfail failing test with gcc-4.9.2 on linux - add one usage of skipIf function Test Plan: Run tests with different archs, and version of compilers to verify decorator function working as expected Run tests with gcc-4.9.2 and no failure reported Reviewers: sivachandra, ovyalov, vharron, chaoren Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D8851 llvm-svn: 235368
Diffstat (limited to 'lldb/test/functionalities/data-formatter')
-rw-r--r--lldb/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py1
-rw-r--r--lldb/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py b/lldb/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
index f6aeaa9de4d..48217103aa8 100644
--- a/lldb/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
+++ b/lldb/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
@@ -20,6 +20,7 @@ class SynthDataFormatterTestCase(TestBase):
self.data_formatter_commands()
@dwarf_test
+ @expectedFailureAll("llvm.org/pr23139", oslist=["linux"], compiler="gcc", compiler_version=[">=","4.9"], archs=["x86_64","i386"])
def test_with_dwarf_and_run_command(self):
"""Test data formatter commands."""
self.buildDwarf()
diff --git a/lldb/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py b/lldb/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
index a006875ec96..3def101c608 100644
--- a/lldb/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
+++ b/lldb/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
@@ -22,7 +22,7 @@ class VectorTypesFormattingTestCase(TestBase):
# rdar://problem/14035604
@dwarf_test
- @skipIfGcc # gcc don't have ext_vector_type extension
+ @skipIf(compiler='gcc') # gcc don't have ext_vector_type extension
def test_with_dwarf_and_run_command(self):
"""Check that vector types format properly"""
self.buildDwarf()
OpenPOWER on IntegriCloud