mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-25 17:20:48 +00:00
MemoryBufer: add a test: check that a file with size that is a multiple of the
page size can be null terminated correctly by MemoryBuffer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189965 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -65,6 +65,28 @@ TEST_F(MemoryBufferTest, get) {
|
|||||||
EXPECT_EQ("this is some data", data);
|
EXPECT_EQ("this is some data", data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_F(MemoryBufferTest, NullTerminator4K) {
|
||||||
|
// Test that a file with size that is a multiple of the page size can be null
|
||||||
|
// terminated correctly by MemoryBuffer.
|
||||||
|
int TestFD;
|
||||||
|
SmallString<64> TestPath;
|
||||||
|
sys::fs::createTemporaryFile("MemoryBufferTest_NullTerminator4K", "temp",
|
||||||
|
TestFD, TestPath);
|
||||||
|
raw_fd_ostream OF(TestFD, true, /*unbuffered=*/true);
|
||||||
|
for (unsigned i = 0; i < 4096 / 16; ++i) {
|
||||||
|
OF << "0123456789abcdef";
|
||||||
|
}
|
||||||
|
OF.close();
|
||||||
|
|
||||||
|
OwningPtr<MemoryBuffer> MB;
|
||||||
|
error_code EC = MemoryBuffer::getFile(TestPath, MB);
|
||||||
|
ASSERT_FALSE(EC);
|
||||||
|
|
||||||
|
const char *BufData = MB->getBufferStart();
|
||||||
|
EXPECT_EQ('f', BufData[4095]);
|
||||||
|
EXPECT_EQ('\0', BufData[4096]);
|
||||||
|
}
|
||||||
|
|
||||||
TEST_F(MemoryBufferTest, copy) {
|
TEST_F(MemoryBufferTest, copy) {
|
||||||
// copy with no name
|
// copy with no name
|
||||||
OwningBuffer MBC1(MemoryBuffer::getMemBufferCopy(data));
|
OwningBuffer MBC1(MemoryBuffer::getMemBufferCopy(data));
|
||||||
|
Reference in New Issue
Block a user