test_fn.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

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