~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/test_fn.c

  • Committer: Jay Pipes
  • Date: 2008-07-17 19:43:08 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717194308-l9i4ti57gikm2qbv
Phase 1 removal of DBUG in mysys

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
{
47
47
  const char **pos;
48
48
  char buff[FN_REFLEN],buff2[FN_REFLEN];
49
 
  DBUG_ENTER ("main");
50
 
  DBUG_PROCESS (argv[0]);
51
49
  MY_INIT(argv[0]);
52
50
 
53
 
  if (argv[1] && argv[1][1] == '#')
54
 
    DBUG_PUSH(argv[1]+2);
55
 
 
56
51
  for (pos=test_names; *pos ; pos++)
57
52
  {
58
53
    printf("org :   '%s'\n",*pos);
65
60
    }
66
61
    puts("");
67
62
  }
68
 
  DBUG_RETURN(0);
 
63
  return(0);
69
64
}