diff options
author | Aron Xu <aron@debian.org> | 2014-07-09 04:01:07 +0800 |
---|---|---|
committer | Aron Xu <aron@debian.org> | 2014-07-09 04:01:07 +0800 |
commit | 7042e17490515a990a45aa7237d11bc49ab0eaf0 (patch) | |
tree | 62b661911406394bbeaca8951d660bb6d8aac0de /doc/examples/testWriter.c | |
parent | 2c8fe012ef1ff6e0613480dd182dec099aa9636e (diff) | |
download | libxml2-7042e17490515a990a45aa7237d11bc49ab0eaf0.tar.gz |
Imported Upstream version 2.8.0+dfsg1
Diffstat (limited to 'doc/examples/testWriter.c')
-rw-r--r-- | doc/examples/testWriter.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/examples/testWriter.c b/doc/examples/testWriter.c index f662f76..9bf590f 100644 --- a/doc/examples/testWriter.c +++ b/doc/examples/testWriter.c @@ -7,7 +7,7 @@ * do encoding string conversions too. The resulting * documents are then serialized. * usage: testWriter - * test: testWriter && for i in 1 2 3 4 ; do diff $(srcdir)/writer.xml writer$$i.tmp || break ; done + * test: testWriter ; for i in 1 2 3 4 ; do diff writer.xml writer$$i.res ; done ; rm writer*.res * author: Alfred Mickautsch * copy: see Copyright for the status of this software. */ @@ -37,16 +37,16 @@ main(void) LIBXML_TEST_VERSION /* first, the file version */ - testXmlwriterFilename("writer1.tmp"); + testXmlwriterFilename("writer1.res"); /* next, the memory version */ - testXmlwriterMemory("writer2.tmp"); + testXmlwriterMemory("writer2.res"); /* next, the DOM version */ - testXmlwriterDoc("writer3.tmp"); + testXmlwriterDoc("writer3.res"); /* next, the tree version */ - testXmlwriterTree("writer4.tmp"); + testXmlwriterTree("writer4.res"); /* * Cleanup function for the XML library. |