os/ossrv/glib/tests/dirname-test.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* GLIB - Library of useful routines for C programming
     2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
     3  * Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
     4  * This library is free software; you can redistribute it and/or
     5  * modify it under the terms of the GNU Lesser General Public
     6  * License as published by the Free Software Foundation; either
     7  * version 2 of the License, or (at your option) any later version.
     8  *
     9  * This library is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    12  * Lesser General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU Lesser General Public
    15  * License along with this library; if not, write to the
    16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    17  * Boston, MA 02111-1307, USA.
    18  */
    19 
    20 /*
    21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
    22  * file for a list of people on the GLib Team.  See the ChangeLog
    23  * files for a list of changes.  These files are distributed with
    24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
    25  */
    26 
    27 #undef G_DISABLE_ASSERT
    28 #undef G_LOG_DOMAIN
    29 
    30 #include <stdio.h>
    31 #include <string.h>
    32 #include "glib.h"
    33 
    34 #ifdef __SYMBIAN32__
    35 #include "mrt2_glib2_test.h"
    36 #endif /*__SYMBIAN32__*/
    37 
    38 int array[10000];
    39 gboolean failed = FALSE;
    40 
    41 #define	TEST(m,cond)	G_STMT_START { failed = !(cond); \
    42 if (failed) \
    43   { if (!m) \
    44       g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
    45     else \
    46       g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
    47   } \
    48 else \
    49   g_print ("."); fflush (stdout); \
    50 } G_STMT_END
    51 
    52 #define	C2P(c)		((gpointer) ((long) (c)))
    53 #define	P2C(p)		((gchar) ((long) (p)))
    54 
    55 #define GLIB_TEST_STRING "el dorado "
    56 #define GLIB_TEST_STRING_5 "el do"
    57 
    58 int
    59 main (int   argc,
    60       char *argv[])
    61 {
    62   gint i;
    63   struct {
    64     gchar *filename;
    65     gchar *dirname;
    66   } dirname_checks[] = {
    67     { "/", "/" },
    68     { "////", "/" },
    69     { ".////", "." },
    70     { ".", "." },
    71     { "..", "." },
    72     { "../", ".." },
    73     { "..////", ".." },
    74     { "", "." },
    75     { "a/b", "a" },
    76     { "a/b/", "a/b" },
    77     { "c///", "c" },
    78     { "/a/b", "/a" },
    79     { "/a/b/", "/a/b" },
    80 #ifdef G_OS_WIN32
    81     { "\\", "\\" },
    82     { ".\\\\\\\\", "." },
    83     { ".\\/\\/", "." },
    84     { ".", "." },
    85     { "..", "." },
    86     { "..\\", ".." },
    87     { "..\\\\\\\\", ".." },
    88     { "..\\//\\", ".." },
    89     { "", "." },
    90     { "a\\b", "a" },
    91     { "a\\b\\", "a\\b" },
    92     { "\\a\\b", "\\a" },
    93     { "\\a\\b\\", "\\a\\b" },
    94     { "c\\\\\\", "c" },
    95     { "c/\\\\", "c" },
    96     { "a:", "a:." },
    97     { "a:foo", "a:." },
    98     { "a:foo\\bar", "a:foo" },
    99     { "a:/foo", "a:/" },
   100     { "a:/foo/bar", "a:/foo" },
   101     { "a:/", "a:/" },
   102     { "a://", "a:/" },
   103     { "a:\\foo", "a:\\" },
   104     { "a:\\", "a:\\" },
   105     { "a:\\\\", "a:\\" },
   106     { "a:\\/", "a:\\" },
   107 #endif
   108   };
   109   guint n_dirname_checks = sizeof (dirname_checks) / sizeof (dirname_checks[0]);
   110 
   111   #ifdef __SYMBIAN32__
   112   g_log_set_handler (NULL,  G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
   113   g_set_print_handler(mrtPrintHandler);
   114   #endif /*__SYMBIAN32__*/
   115 	  
   116 
   117   for (i = 0; i < n_dirname_checks; i++)
   118     {
   119       gchar *dirname;
   120 
   121       dirname = g_path_get_dirname (dirname_checks[i].filename);
   122       if (strcmp (dirname, dirname_checks[i].dirname) != 0)
   123 	g_error ("%s returned %s, should return %s",
   124 		 dirname_checks[i].filename, dirname,
   125 		 dirname_checks[i].dirname);
   126       g_free (dirname);
   127     }
   128     
   129     #if __SYMBIAN32__
   130   	testResultXml("dirname-test");
   131   	#endif /* EMULATOR */
   132 
   133   return 0;
   134 }
   135