mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 15:06:14 +01:00
filter G_GNUC before PRIVATE so $ is still true.
Sun Nov 28 13:13:56 2004 Manish Singh <yosh@gimp.org> * glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true. * tests/utf8-validate.c: cast pointer math to gint for error print message.
This commit is contained in:
parent
adde534014
commit
131f4c67fb
@ -1,3 +1,10 @@
|
||||
Sun Nov 28 13:13:56 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
|
||||
|
||||
* tests/utf8-validate.c: cast pointer math to gint for error print
|
||||
message.
|
||||
|
||||
Sun Nov 28 12:07:29 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* tests/utf8-validate.c: minor comment fix.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Nov 28 13:13:56 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
|
||||
|
||||
* tests/utf8-validate.c: cast pointer math to gint for error print
|
||||
message.
|
||||
|
||||
Sun Nov 28 12:07:29 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* tests/utf8-validate.c: minor comment fix.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Nov 28 13:13:56 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
|
||||
|
||||
* tests/utf8-validate.c: cast pointer math to gint for error print
|
||||
message.
|
||||
|
||||
Sun Nov 28 12:07:29 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* tests/utf8-validate.c: minor comment fix.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Nov 28 13:13:56 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
|
||||
|
||||
* tests/utf8-validate.c: cast pointer math to gint for error print
|
||||
message.
|
||||
|
||||
Sun Nov 28 12:07:29 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* tests/utf8-validate.c: minor comment fix.
|
||||
|
@ -1,3 +1,10 @@
|
||||
Sun Nov 28 13:13:56 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* glib/abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
|
||||
|
||||
* tests/utf8-validate.c: cast pointer math to gint for error print
|
||||
message.
|
||||
|
||||
Sun Nov 28 12:07:29 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* tests/utf8-validate.c: minor comment fix.
|
||||
|
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
|
||||
cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/glib.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' -e 's/ G_GNUC.*$//' | sort > expected-abi
|
||||
cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/glib.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
|
||||
nm -D .libs/libglib-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
|
||||
diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
||||
|
@ -301,7 +301,7 @@ do_test (gint index,
|
||||
index,
|
||||
str->str, max_len,
|
||||
valid ? "TRUE" : "FALSE", offset,
|
||||
result ? "TRUE" : "FALSE", end - text);
|
||||
result ? "TRUE" : "FALSE", (gint) (end - text));
|
||||
g_string_free (str, FALSE);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user