summaryrefslogtreecommitdiff
path: root/sal/qa/ByteSequence/ByteSequence.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/qa/ByteSequence/ByteSequence.cxx')
-rw-r--r--sal/qa/ByteSequence/ByteSequence.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sal/qa/ByteSequence/ByteSequence.cxx b/sal/qa/ByteSequence/ByteSequence.cxx
index cd19b98f2a05..f39b6035367b 100644
--- a/sal/qa/ByteSequence/ByteSequence.cxx
+++ b/sal/qa/ByteSequence/ByteSequence.cxx
@@ -81,10 +81,10 @@ class ctor : public CppUnit::TestFixture
sal_Int8 * pElements = &kTestByte4;
sal_Int32 len = kTestByteCount1;
::rtl::ByteSequence aByteSeq( pElements, len);
- printf("the kTestByte4 is %d\n", kTestByte4);
- printf("the aByteSeq[0] is %d\n", aByteSeq[0]);
- printf("the aByteSeq[1] is %d\n", aByteSeq[1]);
- printf("the aByteSeq[2] is %d\n", aByteSeq[2]);
+ printf("# the kTestByte4 is %d\n", kTestByte4);
+ printf("# the aByteSeq[0] is %d\n", aByteSeq[0]);
+ printf("# the aByteSeq[1] is %d\n", aByteSeq[1]);
+ printf("# the aByteSeq[2] is %d\n", aByteSeq[2]);
//printf("ctor004\n");
CPPUNIT_ASSERT_MESSAGE
(
@@ -526,10 +526,10 @@ public:
{
::rtl::ByteSequence aByteSeq( &kTestByteSeq3 );
sal_Int8 nValue = aByteSeq[0];
- printf("the kTestChar3 is %d\n", kTestChar3);
- printf("the aByteSeq[0] is %d\n", aByteSeq[0]);
- printf("the aByteSeq[1] is %d\n", aByteSeq[1]);
- printf("the aByteSeq[2] is %d\n", aByteSeq[2]);
+ printf("# the kTestChar3 is %d\n", kTestChar3);
+ printf("# the aByteSeq[0] is %d\n", aByteSeq[0]);
+ printf("# the aByteSeq[1] is %d\n", aByteSeq[1]);
+ printf("# the aByteSeq[2] is %d\n", aByteSeq[2]);
CPPUNIT_ASSERT_MESSAGE
(
"Obtains a reference to byte indexed at given position: reference count = 1",