From 6faa07fac51c1c3fd4c6e41576f7717a2f185ff5 Mon Sep 17 00:00:00 2001 From: Tamas Berghammer Date: Mon, 12 Oct 2015 10:33:04 +0000 Subject: [PATCH] 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 --- .../TestValueOfVectorVariable.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/lldb/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py b/lldb/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py index 4aa07edad499..ec7bb379c29e 100644 --- a/lldb/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py +++ b/lldb/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py @@ -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()