mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Remove SmallString::append_*int* unit tests.
llvm-svn: 79451
This commit is contained in:
parent
07444dd862
commit
15b0649d13
@ -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…
x
Reference in New Issue
Block a user