home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / test_fn.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  71 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. #include "mysys_priv.h"
  19.  
  20. const char *test_names[]=
  21. {
  22.   "/usr/my/include/srclib/myfunc/dbug/test",
  23.   "test",
  24.   "dbug/test",
  25.   "/usr/my/srclib/myfunc/dbug/test",
  26.   "/usr/monty/oldcopy/jazz/setupp.frm",
  27.   "~/monty.tst",
  28.   "~/dbug/monty.tst",
  29.   "./hejsan",
  30.   "./dbug/test",
  31.   "../dbug/test",
  32.   "../myfunc/test",
  33.   "../../monty/rutedit",
  34.   "/usr/monty//usr/monty/rutedit",
  35.   "/usr/./monty/rutedit",
  36.   "/usr/my/../monty/rutedit",
  37.   "/usr/my/~/rutedit",
  38.   "~/../my",
  39.   "~/../my/srclib/myfunc/test",
  40.   "~/../my/srclib/myfunc/./dbug/test",
  41.   "/../usr/my/srclib/dbug",
  42.   "c/../my",
  43.   "/c/../my",
  44.   NullS,
  45. };
  46.  
  47. int main(int argc __attribute__((unused)), char **argv)
  48. {
  49.   const char **pos;
  50.   char buff[FN_REFLEN],buff2[FN_REFLEN];
  51.   DBUG_ENTER ("main");
  52.   DBUG_PROCESS (argv[0]);
  53.   MY_INIT(argv[0]);
  54.  
  55.   if (argv[1] && argv[1][1] == '#')
  56.     DBUG_PUSH(argv[1]+2);
  57.  
  58.   for (pos=test_names; *pos ; pos++)
  59.   {
  60.     printf("org :   '%s'\n",*pos);
  61.     printf("pack:   '%s'\n",fn_format(buff,*pos,"","",8));
  62.     printf("unpack: '%s'\n",fn_format(buff2,*pos,"","",4));
  63.     if (strcmp(unpack_filename(buff,buff),buff2) != 0)
  64.     {
  65.       printf("error on cmp: '%s' != '%s'\n",buff,buff2);
  66.     }
  67.     puts("");
  68.   }
  69.   DBUG_RETURN(0);
  70. }
  71.