mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-11 05:35:11 +00:00
Remove SmallString::append_*int* unit tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79451 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
921be7a6f2
commit
d2a5661d32
@ -44,21 +44,5 @@ TEST_F(SmallStringTest, EmptyStringTest) {
|
||||
EXPECT_TRUE(theString.rbegin() == theString.rend());
|
||||
}
|
||||
|
||||
TEST_F(SmallStringTest, AppendUINT64_MAX) {
|
||||
SCOPED_TRACE("AppendUINT64_MAX");
|
||||
theString.clear();
|
||||
assertEmpty(theString);
|
||||
theString.append_uint(UINT64_MAX);
|
||||
EXPECT_TRUE(0 == strcmp(theString.c_str(),"18446744073709551615"));
|
||||
}
|
||||
|
||||
TEST_F(SmallStringTest, AppendINT64_MIN) {
|
||||
SCOPED_TRACE("AppendINT64_MIN");
|
||||
theString.clear();
|
||||
assertEmpty(theString);
|
||||
theString.append_sint(INT64_MIN);
|
||||
EXPECT_TRUE(0 == strcmp(theString.c_str(),"-9223372036854775808"));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user