[Lldb-commits] [lldb] r250024 - Improve TestValueOfVectorVariable
Tamas Berghammer via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 12 03:33:04 PDT 2015
Author: tberghammer
Date: Mon Oct 12 05:33:04 2015
New Revision: 250024
URL: http://llvm.org/viewvc/llvm-project?rev=250024&view=rev
Log:
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
Modified:
lldb/trunk/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py
Modified: lldb/trunk/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py?rev=250024&r1=250023&r2=250024&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py (original)
+++ lldb/trunk/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py Mon Oct 12 05:33:04 2015
@@ -12,17 +12,10 @@ class TestValueOfVectorVariableTestCase(
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()
More information about the lldb-commits
mailing list