sqllogictest

Check-in [7a52c0f372]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Send summary line to stderr.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7a52c0f372cf7b482ea3f691867658e296ee896d
User & Date: shaneh 2008-12-08 00:54:36.000
Context
2008-12-08
00:57
Consistent line endings. check-in: 3200dc168f user: shaneh tags: trunk
00:54
Send summary line to stderr. check-in: 7a52c0f372 user: shaneh tags: trunk
2008-12-06
02:37
Update the about.wiki page to talk about the new skipif and onlyif modifiers and how to use them to work around database incompatibilities. check-in: 816758c2ee user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/sqllogictest.c.
729
730
731
732
733
734
735
736
737
738
739
740
741
    fprintf(stderr, "%s: disconnection from database failed\n", argv[0]);
    nErr++;
  }

  /* Report the number of errors and quit.
  */
  if( verifyMode || nErr || nSkipped){
    printf("%s: %d errors out of %d SQL statement.  %d skipped.\n",
           zScriptFile, nErr, nCmd, nSkipped);
  }
  free(zScript);
  return nErr; 
}







|





729
730
731
732
733
734
735
736
737
738
739
740
741
    fprintf(stderr, "%s: disconnection from database failed\n", argv[0]);
    nErr++;
  }

  /* Report the number of errors and quit.
  */
  if( verifyMode || nErr || nSkipped){
    fprintf(stderr, "%s: %d errors out of %d SQL statement.  %d skipped.\n",
           zScriptFile, nErr, nCmd, nSkipped);
  }
  free(zScript);
  return nErr; 
}