~brianaker/libdrizzle/install-html-fix

« back to all changes in this revision

Viewing changes to tests/unit/binlog.c

  • Committer: Andrew Hutchings
  • Date: 2012-12-21 08:10:08 UTC
  • mfrom: (43.2.14 5.0)
  • Revision ID: andrew@linuxjedi.co.uk-20121221081008-nwvhyxhn1s9omsn0
Merge 5.0 changes into 5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
#include <stdio.h>
43
43
#include <stdlib.h>
44
44
 
 
45
#ifndef EXIT_SKIP
 
46
# define EXIT_SKIP 77
 
47
#endif
 
48
 
45
49
int main(int argc, char *argv[])
46
50
{
47
51
  (void) argc;
67
71
  if (ret != DRIZZLE_RETURN_OK)
68
72
  {
69
73
    printf("Drizzle connection failure\n");
70
 
    return EXIT_FAILURE;
 
74
    return EXIT_SKIP;
71
75
  }
72
76
 
73
77
  result= drizzle_start_binlog(con, 0, "", 0, &ret);