mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-14 04:57:46 +02:00
.gitlab-ci
docs
fuzzing
gio
glib
gmodule
gobject
gthread
m4macros
po
subprojects
tests
collate
gobject
refcount
assert-msg-test.c
assert-msg-test.gdb
asyncqueue-test.c
bit-test.c
casefold.txt
casemap.txt
child-test.c
completion-test.c
cxx-test.cpp
datetime.c
dirname-test.c
env-test.c
file-test.c
gen-casefold-txt.py
gen-casemap-txt.py
gio-test.c
iochannel-test-infile
iochannel-test.c
libmoduletestplugin_a.c
libmoduletestplugin_b.c
mainloop-test.c
mapping-test.c
memchunks.c
meson.build
module-test.c
onceinit.c
qsort-test.c
relation-test.c
run-assert-msg-test.sh
run-collate-tests.sh
slice-color.c
slice-concurrent.c
slice-test.c
slice-threadinit.c
sources.c
spawn-test-win32-gui.c
spawn-test.c
testgdate.c
testgdateparser.c
testglib.c
thread-test.c
threadpool-test.c
timeloop-basic.c
timeloop.c
type-test.c
unicode-caseconv.c
unicode-collate.c
unicode-encoding.c
unicode-normalize.c
utf8.txt
.clang-format
.dir-locals.el
.gitattributes
.gitignore
.gitlab-ci.yml
AUTHORS
CONTRIBUTING.md
COPYING
HACKING
INSTALL.in
NEWS
NEWS.pre-1-3
README
README.md
README.rationale
README.win32
README.win32.md
SECURITY.md
check-abis.sh
clang-format-diff.py
glib-gettextize.in
glib.doap
glib.supp
meson.build
meson_options.txt
msvc_recommended_pragmas.h
template-tap.test.in
template.test.in
Some editors automatically remove trailing blank lines, or automatically add a trailing newline to avoid having a trailing non-blank line that is not terminated by a newline. To avoid unrelated whitespace changes when users of such editors contribute to GLib, let's pre-emptively normalize all files. Unlike more intrusive whitespace normalization like removing trailing whitespace from each line, this seems unlikely to cause significant issues with cherry-picking changes to stable branches. Implemented by: find . -name '*.[ch]' -print0 | \ xargs -0 perl -0777 -p -i -e 's/\n+\z//g; s/\z/\n/g' Signed-off-by: Simon McVittie <smcv@collabora.com>
99 lines
1.9 KiB
C
99 lines
1.9 KiB
C
#undef G_DISABLE_ASSERT
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#ifdef GLIB_COMPILATION
|
|
#undef GLIB_COMPILATION
|
|
#endif
|
|
|
|
#include "glib.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <locale.h>
|
|
|
|
/* These only work in the POSIX locale, maybe C too -
|
|
* type POSIX into the program to check them
|
|
*/
|
|
char* posix_tests [] = {
|
|
"19981024",
|
|
"981024",
|
|
"October 1998",
|
|
"October 98",
|
|
"oCT 98",
|
|
"10/24/98",
|
|
"10 -- 24 -- 98",
|
|
"10/24/1998",
|
|
"October 24, 1998",
|
|
NULL
|
|
};
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
GDate* d;
|
|
gchar* loc;
|
|
gchar input[1024];
|
|
|
|
loc = setlocale(LC_ALL,"");
|
|
if (loc)
|
|
g_print("\nLocale set to %s\n", loc);
|
|
else
|
|
g_print("\nLocale unchanged\n");
|
|
|
|
d = g_date_new();
|
|
|
|
while (fgets(input, 1023, stdin))
|
|
{
|
|
if (input[0] == '\n')
|
|
{
|
|
g_print("Enter a date to parse and press enter, or type 'POSIX':\n");
|
|
continue;
|
|
}
|
|
|
|
if (strcmp(input,"POSIX\n") == 0)
|
|
{
|
|
char** s = posix_tests;
|
|
while (*s) {
|
|
g_date_set_parse(d, *s);
|
|
|
|
g_print("POSIXy parse test '%s' ...", *s);
|
|
|
|
if (!g_date_valid(d))
|
|
{
|
|
g_print(" failed.\n");
|
|
}
|
|
else
|
|
{
|
|
gchar buf[256];
|
|
|
|
g_date_strftime(buf,100," parsed '%x' (%B %d %Y)\n",
|
|
d);
|
|
g_print("%s", buf);
|
|
}
|
|
|
|
++s;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
g_date_set_parse(d, input);
|
|
|
|
if (!g_date_valid(d))
|
|
{
|
|
g_print("Parse failed.\n");
|
|
}
|
|
else
|
|
{
|
|
gchar buf[256];
|
|
|
|
g_date_strftime(buf,100,"Parsed: '%x' (%B %d %Y)\n",
|
|
d);
|
|
g_print("%s", buf);
|
|
}
|
|
}
|
|
}
|
|
|
|
g_date_free(d);
|
|
|
|
return 0;
|
|
}
|