aboutsummaryrefslogtreecommitdiff
path: root/test/common/bufferedseekablereadstream.h
diff options
context:
space:
mode:
authorMax Horn2009-03-05 20:37:53 +0000
committerMax Horn2009-03-05 20:37:53 +0000
commit05b4370c21b3abf7a1ff6aa83194cf95ab73579c (patch)
treea4d2cecedc5735d3205489e50610f85ca57be348 /test/common/bufferedseekablereadstream.h
parent2017d1c9ea12968e80a7aaeed1d9289f39c3a96e (diff)
downloadscummvm-rg350-05b4370c21b3abf7a1ff6aa83194cf95ab73579c.tar.gz
scummvm-rg350-05b4370c21b3abf7a1ff6aa83194cf95ab73579c.tar.bz2
scummvm-rg350-05b4370c21b3abf7a1ff6aa83194cf95ab73579c.zip
Fix for bug #2664460: Various SeekableReadStream::seek() implementations (as well as our unit tests, ouch) handled SEEK_END incorrectly (using -offset instead of offset), contrary to what the docs said and what fseek does. Hopefully I found and fixed all affected parts, but still watch out for regressions
svn-id: r39135
Diffstat (limited to 'test/common/bufferedseekablereadstream.h')
-rw-r--r--test/common/bufferedseekablereadstream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/common/bufferedseekablereadstream.h b/test/common/bufferedseekablereadstream.h
index f039acd2a8..b91a27d221 100644
--- a/test/common/bufferedseekablereadstream.h
+++ b/test/common/bufferedseekablereadstream.h
@@ -56,13 +56,13 @@ class BufferedSeekableReadStreamTestSuite : public CxxTest::TestSuite {
b = ssrs.readByte();
TS_ASSERT( ssrs.eos() );
- ssrs.seek(3, SEEK_END);
+ ssrs.seek(-3, SEEK_END);
TS_ASSERT( !ssrs.eos() );
TS_ASSERT_EQUALS( ssrs.pos(), 7 );
b = ssrs.readByte();
TS_ASSERT_EQUALS( b, 7 );
- ssrs.seek(8, SEEK_END);
+ ssrs.seek(-8, SEEK_END);
TS_ASSERT_EQUALS( ssrs.pos(), 2 );
b = ssrs.readByte();
TS_ASSERT_EQUALS( b, 2 );