Skip to content

Commit 031ed28

Browse files
author
Matej Košík
committed
update the tests
1 parent a0f1a1c commit 031ed28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/unittests/Symbol/TestTypeSystemClang.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ TEST_F(TestTypeSystemClang, TestGetBasicTypeFromName) {
159159
GetBasicQualType("unsigned long long"));
160160
EXPECT_EQ(GetBasicQualType(eBasicTypeUnsignedLongLong),
161161
GetBasicQualType("unsigned long long int"));
162-
EXPECT_EQ(GetBasicQualType(eBasicTypeInt128), GetBasicQualType("__int128_t"));
162+
EXPECT_EQ(GetBasicQualType(eBasicTypeInt128), GetBasicQualType("__int128"));
163163
EXPECT_EQ(GetBasicQualType(eBasicTypeUnsignedInt128),
164-
GetBasicQualType("__uint128_t"));
164+
GetBasicQualType("__uint128"));
165165
EXPECT_EQ(GetBasicQualType(eBasicTypeVoid), GetBasicQualType("void"));
166166
EXPECT_EQ(GetBasicQualType(eBasicTypeBool), GetBasicQualType("bool"));
167167
EXPECT_EQ(GetBasicQualType(eBasicTypeFloat), GetBasicQualType("float"));

0 commit comments

Comments
 (0)