Update of /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv11498/libs/libsxmlstream/tests
Modified Files:
BinaryStreamTest.h TextStreamTest.h
Log Message:
Bugfixes, bugfixes.. descendants in SXmlNode now is not a pointer. Binary
stream test still fails, but IMHO the problem is in the test itself.
2Yurii: please have a look at libs/libsxmlstream/tests/BinaryStreamTest.h
Index: BinaryStreamTest.h
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/tests/BinaryStreamTest.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- BinaryStreamTest.h 3 Feb 2003 06:30:49 -0000 1.2
+++ BinaryStreamTest.h 3 Feb 2003 18:59:39 -0000 1.3
@@ -26,6 +26,7 @@
void tearDown()
{
+ delete _stream;
}
void test_output()
Index: TextStreamTest.h
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/tests/TextStreamTest.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- TextStreamTest.h 3 Feb 2003 06:30:50 -0000 1.5
+++ TextStreamTest.h 3 Feb 2003 18:59:39 -0000 1.6
@@ -26,6 +26,7 @@
void tearDown()
{
+ delete _stream;
}
void test_output()
|