aboutsummaryrefslogtreecommitdiff
path: root/test/common/seekablesubreadstream.h
diff options
context:
space:
mode:
authorMax Horn2008-09-16 11:57:45 +0000
committerMax Horn2008-09-16 11:57:45 +0000
commit9d96d9d3806c43107ffcf4173bd99c3d10eeb565 (patch)
tree65fb14a375b3b62b41b0fd97aea457edd6a82a4a /test/common/seekablesubreadstream.h
parent5a1c593bf288f93a777499619e51c60ea3f0fe48 (diff)
downloadscummvm-rg350-9d96d9d3806c43107ffcf4173bd99c3d10eeb565.tar.gz
scummvm-rg350-9d96d9d3806c43107ffcf4173bd99c3d10eeb565.tar.bz2
scummvm-rg350-9d96d9d3806c43107ffcf4173bd99c3d10eeb565.zip
Fix sign warnings in unit tests
svn-id: r34580
Diffstat (limited to 'test/common/seekablesubreadstream.h')
-rw-r--r--test/common/seekablesubreadstream.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/common/seekablesubreadstream.h b/test/common/seekablesubreadstream.h
index 24df380a60..68febc7fd6 100644
--- a/test/common/seekablesubreadstream.h
+++ b/test/common/seekablesubreadstream.h
@@ -17,7 +17,7 @@ class SeekableSubReadStreamTestSuite : public CxxTest::TestSuite {
for (i = start; i < end; ++i) {
TS_ASSERT( !ssrs.eos() );
- TS_ASSERT_EQUALS( uint32(i - start), ssrs.pos() );
+ TS_ASSERT_EQUALS( i - start, ssrs.pos() );
ssrs.read(&b, 1);
TS_ASSERT_EQUALS( i, b );
@@ -35,37 +35,37 @@ class SeekableSubReadStreamTestSuite : public CxxTest::TestSuite {
Common::SeekableSubReadStream ssrs(&ms, 1, 9);
byte b;
- TS_ASSERT_EQUALS( ssrs.pos(), (uint32)0 );
+ TS_ASSERT_EQUALS( ssrs.pos(), 0 );
ssrs.seek(1, SEEK_SET);
- TS_ASSERT_EQUALS( ssrs.pos(), (uint32)1 );
+ TS_ASSERT_EQUALS( ssrs.pos(), 1 );
b = ssrs.readByte();
TS_ASSERT_EQUALS( b, 2 );
ssrs.seek(5, SEEK_CUR);
- TS_ASSERT_EQUALS( ssrs.pos(), (uint32)7 );
+ TS_ASSERT_EQUALS( ssrs.pos(), 7 );
b = ssrs.readByte();
TS_ASSERT_EQUALS( b, 8 );
ssrs.seek(-3, SEEK_CUR);
- TS_ASSERT_EQUALS( ssrs.pos(), (uint32)5 );
+ TS_ASSERT_EQUALS( ssrs.pos(), 5 );
b = ssrs.readByte();
TS_ASSERT_EQUALS( b, 6 );
ssrs.seek(0, SEEK_END);
- TS_ASSERT_EQUALS( ssrs.pos(), (uint32)8 );
+ TS_ASSERT_EQUALS( ssrs.pos(), 8 );
TS_ASSERT( !ssrs.eos() );
b = ssrs.readByte();
TS_ASSERT( ssrs.eos() );
ssrs.seek(3, SEEK_END);
TS_ASSERT( !ssrs.eos() );
- TS_ASSERT_EQUALS( ssrs.pos(), (uint32)5 );
+ TS_ASSERT_EQUALS( ssrs.pos(), 5 );
b = ssrs.readByte();
TS_ASSERT_EQUALS( b, 6 );
ssrs.seek(8, SEEK_END);
- TS_ASSERT_EQUALS( ssrs.pos(), (uint32)0 );
+ TS_ASSERT_EQUALS( ssrs.pos(), 0 );
b = ssrs.readByte();
TS_ASSERT_EQUALS( b, 1 );
}