blob: dda97945f9b2367077fa16cc1514ea2b564fc16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# coding=utf8
"""
Test std::u8string summary.
"""
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class StdU8StringDataFormatterTestCase(TestBase):
TEST_WITH_PDB_DEBUG_INFO = True
def do_test(self):
lldbutil.run_to_source_breakpoint(
self, "Set break point at this line.", lldb.SBFileSpec("main.cpp")
)
string_name = (
"std::basic_string<char8_t, std::char_traits<char8_t>, std::allocator<char8_t>>"
if self.getDebugInfo() == "pdb"
else "std::u8string"
)
self.expect(
"frame variable",
substrs=[
f'({string_name}) u8_string_small = u8"🍄"',
f'({string_name}) u8_string = u8"❤️👍📄📁😃🧑🌾"',
f'({string_name}) u8_empty = u8""',
f'({string_name}) u8_text = u8"ABCd"',
],
)
@expectedFailureAll(bugnumber="No libc++ formatters for std::u8string yet.")
@add_test_categories(["libc++"])
def test_libcxx(self):
self.build(dictionary={"USE_LIBCPP": 1})
self.do_test()
@expectedFailureAll(bugnumber="No libstdc++ formatters for std::u8string yet.")
@add_test_categories(["libstdcxx"])
def test_libstdcxx(self):
self.build(dictionary={"USE_LIBSTDCPP": 1})
self.do_test()
@add_test_categories(["msvcstl"])
def test_msvc(self):
self.build()
self.do_test()
|