summaryrefslogtreecommitdiffstats
path: root/tools/qa/cppunit/test_streamstate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qa/cppunit/test_streamstate.cxx')
-rw-r--r--tools/qa/cppunit/test_streamstate.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/qa/cppunit/test_streamstate.cxx b/tools/qa/cppunit/test_streamstate.cxx
index c2a4be0c5e00..182ad6c45561 100644
--- a/tools/qa/cppunit/test_streamstate.cxx
+++ b/tools/qa/cppunit/test_streamstate.cxx
@@ -94,6 +94,9 @@ namespace
//yet, the read didn't succeed
CPPUNIT_ASSERT(!aMemStream.good());
+ //set things up so that there is only one byte available on an attempt
+ //to read a two-byte sal_uInt16. The byte should be consumed, but the
+ //operation should fail, and tools_b should remain unchanged,
sal_uInt16 tools_b = 0x1122;
aMemStream.SeekRel(-1);
CPPUNIT_ASSERT(!aMemStream.eof());
@@ -101,7 +104,7 @@ namespace
aMemStream >> tools_b;
CPPUNIT_ASSERT(!aMemStream.good());
CPPUNIT_ASSERT(aMemStream.eof());
-// CPPUNIT_ASSERT(tools_b == 0x1122); //nasty, real nasty
+ CPPUNIT_ASSERT(tools_b == 0x1122);
iss.clear();
iss.seekg(0);