summaryrefslogtreecommitdiff
path: root/testglib.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>1999-10-31 12:15:34 +0000
committerTor Lillqvist <tml@src.gnome.org>1999-10-31 12:15:34 +0000
commit30cc3ed1fe251c3b5ee477152645884849037af0 (patch)
tree57cc5d0d64b525b0eba3b8a942cfbf829534effb /testglib.c
parenta2760140c83d32887a0f3f16cd2a49fd2a3adb59 (diff)
downloadglib-30cc3ed1fe251c3b5ee477152645884849037af0.tar.gz
Don't crash if removing a nonexistent value.
1999-10-31 Tor Lillqvist <tml@iki.fi> * gcache.c (g_cache_remove): Don't crash if removing a nonexistent value. * gutils.c (gwin_getlocale): New Win32-specific function, returns a Unixish current locale string (en, zh_TW etc). * glib.h: Declare it. * glib.def: Export it. * testglib.c: Test it. * gmessages.c (Win32: ensure_stdout_valid): Some improvements, make sure we don't call AllocConsole several times, which I think has happened.
Diffstat (limited to 'testglib.c')
-rw-r--r--testglib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/testglib.c b/testglib.c
index 2a5ba7381..70762ef51 100644
--- a/testglib.c
+++ b/testglib.c
@@ -914,8 +914,13 @@ main (int argc,
#ifdef G_HAVE_GINT64
g_assert (GUINT64_SWAP_LE_BE (gu64t1) == gu64t2);
#endif
+
g_print ("ok\n");
+#ifdef G_OS_WIN32
+ g_print ("current locale: %s\n", gwin_getlocale ());
+#endif
+
return 0;
}