Skip to content

Commit 6eff73a

Browse files
committed
Init
1 parent dd495f1 commit 6eff73a

File tree

6 files changed

+3
-9
lines changed

6 files changed

+3
-9
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
CXX_SOURCES := main.cpp
22

3-
USE_LIBCPP := 1
4-
5-
CXXFLAGS_EXTRAS := -O0
63
include Makefile.rules
Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from lldbsuite.test import lldbutil
1010

1111

12-
class LibcxxVectorDataFormatterTestCase(TestBase):
12+
class StdVectorDataFormatterTestCase(TestBase):
1313
def check_numbers(self, var_name, show_ptr=False):
1414
patterns = []
1515
substrs = [
@@ -52,10 +52,8 @@ def check_numbers(self, var_name, show_ptr=False):
5252
self.expect("frame variable " + var_name + "[2]", substrs=["123"])
5353
self.expect("frame variable " + var_name + "[3]", substrs=["1234"])
5454

55-
@add_test_categories(["libc++"])
56-
def test_with_run_command(self):
55+
def do_test(self):
5756
"""Test that that file and class static variables display correctly."""
58-
self.build()
5957
(self.target, process, thread, bkpt) = lldbutil.run_to_source_breakpoint(
6058
self, "break here", lldb.SBFileSpec("main.cpp", False)
6159
)
@@ -170,8 +168,7 @@ def cleanup():
170168

171169
self.expect("frame variable strings", substrs=["vector has 0 items"])
172170

173-
@add_test_categories(["libc++"])
174-
def test_ref_and_ptr(self):
171+
def do_test_ref_and_ptr(self):
175172
"""Test that that file and class static variables display correctly."""
176173
self.build()
177174
(self.target, process, thread, bkpt) = lldbutil.run_to_source_breakpoint(

0 commit comments

Comments
 (0)