diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-09-20 13:41:34 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-09-20 13:41:34 +0000 |
commit | f3d2b8a43f9fc5f056ef30eb01d0b7e7ed9f9096 (patch) | |
tree | d9b8a43e1cf392f907690b90a26e504094b82769 /io/test | |
parent | 678e23d8329f8f57b84b3a33a0bf15ae4e9d3562 (diff) |
INTEGRATION: CWS os2port01 (1.9.28); FILE MERGED
2007/07/17 11:39:00 obr 1.9.28.2: RESYNC: (1.9-1.10); FILE MERGED
2006/12/28 15:00:39 ydario 1.9.28.1: OS/2 initial import.
Diffstat (limited to 'io/test')
-rw-r--r-- | io/test/stm/datatest.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/io/test/stm/datatest.cxx b/io/test/stm/datatest.cxx index 1d55f3e03534..fe12720e73d3 100644 --- a/io/test/stm/datatest.cxx +++ b/io/test/stm/datatest.cxx @@ -4,9 +4,9 @@ * * $RCSfile: datatest.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: obo $ $Date: 2006-09-16 23:45:12 $ + * last change: $Author: vg $ $Date: 2007-09-20 14:41:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -301,8 +301,8 @@ void ODataStreamTest::testSimple( const Reference < XDataInputStream > &rInput rOutput->writeDouble( (double) 42.42 ); ERROR_ASSERT( rInput->readDouble() == 42.42 , "double read/write mismatch" ); - rOutput->writeHyper( 0x123456789abcdef ); - ERROR_ASSERT( rInput->readHyper() == 0x123456789abcdef , "int64 read/write mismatch" ); + rOutput->writeHyper( 0x123456789abcdefLL ); + ERROR_ASSERT( rInput->readHyper() == 0x123456789abcdefLL , "int64 read/write mismatch" ); rOutput->writeUTF( OUString::createFromAscii("Live long and prosper !") ); ERROR_ASSERT( rInput->readUTF() == OUString::createFromAscii("Live long and prosper !") , |