summaryrefslogtreecommitdiff
path: root/cppu/test
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-02-09 08:50:03 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-02-09 08:50:03 +0000
commit48eb493d362161b152cf5d997f2ba5d8b754675f (patch)
tree4e01563e9b6e561c51918954d0f2c4df73e0b80c /cppu/test
parent0d6822c4692761a07a4bfbf380b08b77084040dd (diff)
*** empty log message ***
Diffstat (limited to 'cppu/test')
-rw-r--r--cppu/test/testcppu.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/cppu/test/testcppu.cxx b/cppu/test/testcppu.cxx
index d43709f989c8..97230dd06831 100644
--- a/cppu/test/testcppu.cxx
+++ b/cppu/test/testcppu.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testcppu.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: mfe $ $Date: 2001-02-01 12:26:04 $
+ * last change: $Author: dbo $ $Date: 2001-02-09 09:50:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -520,6 +520,11 @@ nPos = (sal_Int32)&((Test3 *)0)->aAny;
aInt32Seq.realloc( 1 ); // reallocate mem
pArray = aInt32Seq.getConstArray();
OSL_ASSERT( pArray[0] == 1 );
+
+ Sequence<sal_Int32 > aInt32Seq2( aInt32Seq );
+ aInt32Seq.realloc( 0 );
+ aInt32Seq.realloc( 1 );
+ aInt32Seq.realloc( 0 );
}
class TestInterface : public XInterface