Improve TestValueOfVectorVariable

* XFAIL it for android arm/aarch64 as watchpoints aren't supported there
* Remove the dwarf/dsym test separation as they will be generated automatically

llvm-svn: 250024
This commit is contained in:
Tamas Berghammer
2015-10-12 10:33:04 +00:00
parent 233b9ce8bf
commit 6faa07fac5

View File

@@ -12,17 +12,10 @@ class TestValueOfVectorVariableTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@dsym_test
def test_value_of_vector_variable_with_dsym_using_watchpoint_set(self):
@expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported
def test_value_of_vector_variable_using_watchpoint_set(self):
"""Test verify displayed value of vector variable."""
self.buildDsym(dictionary=self.d)
self.setTearDownCleanup(dictionary=self.d)
self.value_of_vector_variable_with_watchpoint_set()
@dwarf_test
def test_value_of_vector_variable_with_dwarf_using_watchpoint_set(self):
"""Test verify displayed value of vector variable."""
self.buildDwarf(dictionary=self.d)
self.build(dictionary=self.d)
self.setTearDownCleanup(dictionary=self.d)
self.value_of_vector_variable_with_watchpoint_set()