aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-10-11 15:24:42 +0000
committerMike Buland <eichlan@xagasoft.com>2006-10-11 15:24:42 +0000
commitdf6f199b4e158d1d6cfb99d45258efa22afee715 (patch)
tree05b623c1711826d94ff0c8633ca789b1bae4146d /src/test
parent67c0930cbe7d0646cf4e4dee157ea553ee8a045a (diff)
downloadlibbu++-df6f199b4e158d1d6cfb99d45258efa22afee715.tar.gz
libbu++-df6f199b4e158d1d6cfb99d45258efa22afee715.tar.bz2
libbu++-df6f199b4e158d1d6cfb99d45258efa22afee715.tar.xz
libbu++-df6f199b4e158d1d6cfb99d45258efa22afee715.zip
Fixed a wierd bug that caused each element of any part of a copied node tree to
be partially cross-linked to the node that was the root of the copy. Also fixed a bug in the xmlfilewriter that should make it both faster, and not mess up % style replacements.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/xmlwritetest/xmlwritetest.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/test/xmlwritetest/xmlwritetest.cpp b/src/test/xmlwritetest/xmlwritetest.cpp
index fc93510..54c7a80 100644
--- a/src/test/xmlwritetest/xmlwritetest.cpp
+++ b/src/test/xmlwritetest/xmlwritetest.cpp
@@ -30,19 +30,19 @@ int main()
30{ 30{
31 printf("Testing XmlWriter...\n"); 31 printf("Testing XmlWriter...\n");
32 32
33 XmlStringReader *xsr = new XmlStringReader("<stuff/>"); 33 //XmlStringReader *xsr = new XmlStringReader("<stuff/>");
34 34
35 printf("%08X\n%08X\n%08X\n", xsr, (XmlReader *)xsr, (XmlDocument *)xsr ); 35 //printf("%08X\n%08X\n%08X\n", xsr, (XmlReader *)xsr, (XmlDocument *)xsr );
36 36
37 delete (XmlDocument *)xsr; 37 //delete (XmlDocument *)xsr;
38 //XmlFileWriter wf("test.xml", "\t"); 38 XmlFileWriter wf("test.xml", "\t");
39 39
40 //fillItIn( wf ); 40 fillItIn( wf );
41 41
42 //XmlStringWriter ws("\t"); 42 XmlStringWriter ws("\t");
43 //fillItIn( ws ); 43 fillItIn( ws );
44 44
45 //printf("Now the string version:\n\n%s\n", ws.getString().c_str() ); 45 printf("Now the string version:\n\n%s\n", ws.getString().c_str() );
46 46
47 return 0; 47 return 0;
48} 48}