+Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com>
+
+ * gmodule/gmodule-dl.c (_g_module_build_path):
+ Add braces to eliminate an ambiguous else warning.
+
+ * tests/{Makefile.am, string-test.c, strfunc-test.c}:
+ Separate string and strfunc tests, working towards goal of
+ having separate test for each of the GLib modules.
+ Add a couple GString length tests.
+
Thu Jan 21 09:36:05 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* configure.in:
+Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com>
+
+ * gmodule/gmodule-dl.c (_g_module_build_path):
+ Add braces to eliminate an ambiguous else warning.
+
+ * tests/{Makefile.am, string-test.c, strfunc-test.c}:
+ Separate string and strfunc tests, working towards goal of
+ having separate test for each of the GLib modules.
+ Add a couple GString length tests.
+
Thu Jan 21 09:36:05 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* configure.in:
+Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com>
+
+ * gmodule/gmodule-dl.c (_g_module_build_path):
+ Add braces to eliminate an ambiguous else warning.
+
+ * tests/{Makefile.am, string-test.c, strfunc-test.c}:
+ Separate string and strfunc tests, working towards goal of
+ having separate test for each of the GLib modules.
+ Add a couple GString length tests.
+
Thu Jan 21 09:36:05 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* configure.in:
+Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com>
+
+ * gmodule/gmodule-dl.c (_g_module_build_path):
+ Add braces to eliminate an ambiguous else warning.
+
+ * tests/{Makefile.am, string-test.c, strfunc-test.c}:
+ Separate string and strfunc tests, working towards goal of
+ having separate test for each of the GLib modules.
+ Add a couple GString length tests.
+
Thu Jan 21 09:36:05 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* configure.in:
+Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com>
+
+ * gmodule/gmodule-dl.c (_g_module_build_path):
+ Add braces to eliminate an ambiguous else warning.
+
+ * tests/{Makefile.am, string-test.c, strfunc-test.c}:
+ Separate string and strfunc tests, working towards goal of
+ having separate test for each of the GLib modules.
+ Add a couple GString length tests.
+
Thu Jan 21 09:36:05 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* configure.in:
+Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com>
+
+ * gmodule/gmodule-dl.c (_g_module_build_path):
+ Add braces to eliminate an ambiguous else warning.
+
+ * tests/{Makefile.am, string-test.c, strfunc-test.c}:
+ Separate string and strfunc tests, working towards goal of
+ having separate test for each of the GLib modules.
+ Add a couple GString length tests.
+
Thu Jan 21 09:36:05 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* configure.in:
+Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com>
+
+ * gmodule/gmodule-dl.c (_g_module_build_path):
+ Add braces to eliminate an ambiguous else warning.
+
+ * tests/{Makefile.am, string-test.c, strfunc-test.c}:
+ Separate string and strfunc tests, working towards goal of
+ having separate test for each of the GLib modules.
+ Add a couple GString length tests.
+
Thu Jan 21 09:36:05 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* configure.in:
+Thu Jan 21 12:40:11 EST 1999 Jeff Garzik <jgarzik@pobox.com>
+
+ * gmodule/gmodule-dl.c (_g_module_build_path):
+ Add braces to eliminate an ambiguous else warning.
+
+ * tests/{Makefile.am, string-test.c, strfunc-test.c}:
+ Separate string and strfunc tests, working towards goal of
+ having separate test for each of the GLib modules.
+ Add a couple GString length tests.
+
Thu Jan 21 09:36:05 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* configure.in:
_g_module_build_path (const gchar *directory,
const gchar *module_name)
{
- if (directory && *directory)
+ if (directory && *directory) {
if (strncmp (module_name, "lib", 3) == 0)
return g_strconcat (directory, "/", module_name, NULL);
else
return g_strconcat (directory, "/lib", module_name, ".so", NULL);
- else if (strncmp (module_name, "lib", 3) == 0)
+ } else if (strncmp (module_name, "lib", 3) == 0)
return g_strdup (module_name);
else
return g_strconcat ("lib", module_name, ".so", NULL);
tree-test
dirname-test
type-test
+strfunc-test
relation-test \
slist-test \
string-test \
+ strfunc-test \
tree-test \
type-test
relation_test_LDADD = $(top_builddir)/libglib.la
slist_test_LDADD = $(top_builddir)/libglib.la
string_test_LDADD = $(top_builddir)/libglib.la
+strfunc_test_LDADD = $(top_builddir)/libglib.la
tree_test_LDADD = $(top_builddir)/libglib.la
type_test_LDADD = $(top_builddir)/libglib.la
--- /dev/null
+/* GLIB - Library of useful routines for C programming
+ * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+#undef G_LOG_DOMAIN
+
+#include <stdio.h>
+#include <string.h>
+#include "glib.h"
+
+int array[10000];
+gboolean failed = FALSE;
+
+#define TEST(m,cond) G_STMT_START { failed = !(cond); \
+if (failed) \
+ { if (!m) \
+ g_print ("\n(%s:%d) failed for: %s\n", __FILE__, __LINE__, ( # cond )); \
+ else \
+ g_print ("\n(%s:%d) failed for: %s: (%s)\n", __FILE__, __LINE__, ( # cond ), (gchar*)m); \
+ } \
+else \
+ g_print ("."); fflush (stdout); \
+} G_STMT_END
+
+#define C2P(c) ((gpointer) ((long) (c)))
+#define P2C(p) ((gchar) ((long) (p)))
+
+#define GLIB_TEST_STRING "el dorado "
+#define GLIB_TEST_STRING_5 "el do"
+
+typedef struct {
+ guint age;
+ gchar name[40];
+} GlibTestInfo;
+
+int
+main (int argc,
+ char *argv[])
+{
+ gchar *string;
+
+ g_assert (g_strcasecmp ("FroboZZ", "frobozz") == 0);
+ g_assert (g_strcasecmp ("frobozz", "frobozz") == 0);
+ g_assert (g_strcasecmp ("frobozz", "FROBOZZ") == 0);
+ g_assert (g_strcasecmp ("FROBOZZ", "froboz") != 0);
+ g_assert (g_strcasecmp ("", "") == 0);
+ g_assert (g_strcasecmp ("!#%&/()", "!#%&/()") == 0);
+ g_assert (g_strcasecmp ("a", "b") < 0);
+ g_assert (g_strcasecmp ("a", "B") < 0);
+ g_assert (g_strcasecmp ("A", "b") < 0);
+ g_assert (g_strcasecmp ("A", "B") < 0);
+ g_assert (g_strcasecmp ("b", "a") > 0);
+ g_assert (g_strcasecmp ("b", "A") > 0);
+ g_assert (g_strcasecmp ("B", "a") > 0);
+ g_assert (g_strcasecmp ("B", "A") > 0);
+
+ g_assert(g_strdup(NULL) == NULL);
+ string = g_strdup(GLIB_TEST_STRING);
+ g_assert(string != NULL);
+ g_assert(strcmp(string, GLIB_TEST_STRING) == 0);
+ g_free(string);
+
+ string = g_strconcat(GLIB_TEST_STRING, NULL);
+ g_assert(string != NULL);
+ g_assert(strcmp(string, GLIB_TEST_STRING) == 0);
+ g_free(string);
+
+ string = g_strconcat(GLIB_TEST_STRING, GLIB_TEST_STRING,
+ GLIB_TEST_STRING, NULL);
+ g_assert(string != NULL);
+ g_assert(strcmp(string, GLIB_TEST_STRING GLIB_TEST_STRING
+ GLIB_TEST_STRING) == 0);
+ g_free(string);
+
+ string = g_strdup_printf ("%05d %-5s", 21, "test");
+ g_assert (string != NULL);
+ g_assert (strcmp(string, "00021 test ") == 0);
+ g_free (string);
+
+ return 0;
+}
+
char *argv[])
{
GStringChunk *string_chunk;
- gchar *string;
gchar *tmp_string, *tmp_string_2;
gint i;
g_assert (string1 != NULL);
g_assert (string2 != NULL);
+ g_assert (strlen (string1->str) == string1->len);
+ g_assert (strlen (string2->str) == string2->len);
+ g_assert (string2->len == 0);
g_assert (strcmp ("hi pete!", string1->str) == 0);
g_assert (strcmp ("", string2->str) == 0);
10, 666, 15, 15, 666.666666666, 666.666666666);
#endif
- g_assert (g_strcasecmp ("FroboZZ", "frobozz") == 0);
- g_assert (g_strcasecmp ("frobozz", "frobozz") == 0);
- g_assert (g_strcasecmp ("frobozz", "FROBOZZ") == 0);
- g_assert (g_strcasecmp ("FROBOZZ", "froboz") != 0);
- g_assert (g_strcasecmp ("", "") == 0);
- g_assert (g_strcasecmp ("!#%&/()", "!#%&/()") == 0);
- g_assert (g_strcasecmp ("a", "b") < 0);
- g_assert (g_strcasecmp ("a", "B") < 0);
- g_assert (g_strcasecmp ("A", "b") < 0);
- g_assert (g_strcasecmp ("A", "B") < 0);
- g_assert (g_strcasecmp ("b", "a") > 0);
- g_assert (g_strcasecmp ("b", "A") > 0);
- g_assert (g_strcasecmp ("B", "a") > 0);
- g_assert (g_strcasecmp ("B", "A") > 0);
-
- g_assert(g_strdup(NULL) == NULL);
- string = g_strdup(GLIB_TEST_STRING);
- g_assert(string != NULL);
- g_assert(strcmp(string, GLIB_TEST_STRING) == 0);
- g_free(string);
-
- string = g_strconcat(GLIB_TEST_STRING, NULL);
- g_assert(string != NULL);
- g_assert(strcmp(string, GLIB_TEST_STRING) == 0);
- g_free(string);
-
- string = g_strconcat(GLIB_TEST_STRING, GLIB_TEST_STRING,
- GLIB_TEST_STRING, NULL);
- g_assert(string != NULL);
- g_assert(strcmp(string, GLIB_TEST_STRING GLIB_TEST_STRING
- GLIB_TEST_STRING) == 0);
- g_free(string);
-
- string = g_strdup_printf ("%05d %-5s", 21, "test");
- g_assert (string != NULL);
- g_assert (strcmp(string, "00021 test ") == 0);
- g_free (string);
-
return 0;
}