applied patch from Andreas Persenius <ndap@swipnet.se> that updates the
[platform/upstream/glib.git] / tests / dirname-test.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
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_LOG_DOMAIN
28
29 #include <stdio.h>
30 #include <string.h>
31 #include "glib.h"
32
33 int array[10000];
34 gboolean failed = FALSE;
35
36 #define TEST(m,cond)    G_STMT_START { failed = !(cond); \
37 if (failed) \
38   { if (!m) \
39       g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
40     else \
41       g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
42   } \
43 else \
44   g_print ("."); fflush (stdout); \
45 } G_STMT_END
46
47 #define C2P(c)          ((gpointer) ((long) (c)))
48 #define P2C(p)          ((gchar) ((long) (p)))
49
50 #define GLIB_TEST_STRING "el dorado "
51 #define GLIB_TEST_STRING_5 "el do"
52
53 int
54 main (int   argc,
55       char *argv[])
56 {
57   gint i;
58   struct {
59     gchar *filename;
60     gchar *dirname;
61   } dirname_checks[] = {
62 #ifndef G_OS_WIN32
63     { "/", "/" },
64     { "////", "/" },
65     { ".////", "." },
66     { ".", "." },
67     { "..", "." },
68     { "../", ".." },
69     { "..////", ".." },
70     { "", "." },
71     { "a/b", "a" },
72     { "a/b/", "a/b" },
73     { "c///", "c" },
74 #else
75     { "\\", "\\" },
76     { ".\\\\\\\\", "." },
77     { ".", "." },
78     { "..", "." },
79     { "..\\", ".." },
80     { "..\\\\\\\\", ".." },
81     { "", "." },
82     { "a\\b", "a" },
83     { "a\\b\\", "a\\b" },
84     { "c\\\\\\", "c" },
85 #endif
86   };
87   guint n_dirname_checks = sizeof (dirname_checks) / sizeof (dirname_checks[0]);
88
89   for (i = 0; i < n_dirname_checks; i++)
90     {
91       gchar *dirname;
92
93       dirname = g_path_get_dirname (dirname_checks[i].filename);
94       g_assert (strcmp (dirname, dirname_checks[i].dirname) == 0);
95       g_free (dirname);
96     }
97
98   return 0;
99 }
100