Diff for /embedaddon/libxml2/doc/examples/testWriter.c between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2013/07/22 01:22:27 version 1.1.1.3, 2014/06/15 19:53:37
Line 7 Line 7
  *          do encoding string conversions too. The resulting   *          do encoding string conversions too. The resulting
  *          documents are then serialized.   *          documents are then serialized.
  * usage: testWriter   * usage: testWriter
 * test: testWriter ; for i in 1 2 3 4 ; do diff writer.xml writer$$i.res ; done ; rm writer*.res * test: testWriter && for i in 1 2 3 4 ; do diff $(srcdir)/writer.xml writer$$i.tmp || break ; done
  * author: Alfred Mickautsch   * author: Alfred Mickautsch
  * copy: see Copyright for the status of this software.   * copy: see Copyright for the status of this software.
  */   */
Line 37  main(void) Line 37  main(void)
     LIBXML_TEST_VERSION      LIBXML_TEST_VERSION
   
     /* first, the file version */      /* first, the file version */
    testXmlwriterFilename("writer1.res");    testXmlwriterFilename("writer1.tmp");
   
     /* next, the memory version */      /* next, the memory version */
    testXmlwriterMemory("writer2.res");    testXmlwriterMemory("writer2.tmp");
   
     /* next, the DOM version */      /* next, the DOM version */
    testXmlwriterDoc("writer3.res");    testXmlwriterDoc("writer3.tmp");
   
     /* next, the tree version */      /* next, the tree version */
    testXmlwriterTree("writer4.res");    testXmlwriterTree("writer4.tmp");
   
     /*      /*
      * Cleanup function for the XML library.       * Cleanup function for the XML library.

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>