From: Tim Janik Date: Tue, 20 Nov 2007 15:01:02 +0000 (+0000) Subject: Renamed gtestframework to gtestutils. X-Git-Tag: GLIB_2_15_1~330 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6332518cc25ff682bd2e9eacd02f9a5febf6c75e;p=platform%2Fupstream%2Fglib.git Renamed gtestframework to gtestutils. * glib/glib.h: * glib/Makefile.am: added gtestutils.h to public includes. * glib/gtestutils.c: include gtestutils.h. * glib/gtestutils.h: * glib/glib.symbols: * glib/tests/testing.c: renamed gtestframework to gtestutils. * glib/gtestframework.h: renamed to gtestutils.h. * glib/gtestframework.c: renamed to gtestutils.c. svn path=/trunk/; revision=5910 --- diff --git a/glib/Makefile.am b/glib/Makefile.am index 6ea366d..4f5822a 100644 --- a/glib/Makefile.am +++ b/glib/Makefile.am @@ -134,7 +134,7 @@ libglib_2_0_la_SOURCES = \ gstdio.c \ gstrfuncs.c \ gstring.c \ - gtestframework.c \ + gtestutils.c \ gthread.c \ gthreadprivate.h \ gthreadpool.c \ @@ -215,7 +215,7 @@ glibsubinclude_HEADERS = \ gspawn.h \ gstdio.h \ gstrfuncs.h \ - gtestframework.h\ + gtestutils.h \ gstring.h \ gthread.h \ gthreadpool.h \ diff --git a/glib/glib.h b/glib/glib.h index dc2bb50..4a30237 100644 --- a/glib/glib.h +++ b/glib/glib.h @@ -70,7 +70,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/glib/glib.symbols b/glib/glib.symbols index 6214096..9288e56 100644 --- a/glib/glib.symbols +++ b/glib/glib.symbols @@ -1240,8 +1240,8 @@ g_thread_pool_set_sort_function #endif #endif -#if IN_HEADER(__G_TESTFRAMEWORK_H__) -#if IN_FILE(__G_TESTFRAMEWORK_C__) +#if IN_HEADER(__G_TEST_UTILS_H__) +#if IN_FILE(__G_TEST_UTILS_C__) g_assertion_message g_assertion_message_cmpnum g_assertion_message_cmpstr diff --git a/glib/gtestframework.c b/glib/gtestutils.c similarity index 99% rename from glib/gtestframework.c rename to glib/gtestutils.c index 78acd3e..494aa08 100644 --- a/glib/gtestframework.c +++ b/glib/gtestutils.c @@ -1,4 +1,4 @@ -/* GLib testing framework examples +/* GLib testing utilities * Copyright (C) 2007 Tim Janik * * This library is free software; you can redistribute it and/or @@ -17,7 +17,7 @@ * Boston, MA 02111-1307, USA. */ #include "config.h" -#include "gtestframework.h" +#include "gtestutils.h" #include "galias.h" #include #include @@ -1700,5 +1700,5 @@ g_test_log_msg_free (GTestLogMsg *tmsg) **/ /* --- macros docs END --- */ -#define __G_TESTFRAMEWORK_C__ +#define __G_TEST_UTILS_C__ #include "galiasdef.c" diff --git a/glib/gtestframework.h b/glib/gtestutils.h similarity index 98% rename from glib/gtestframework.h rename to glib/gtestutils.h index 0cc162f..b57dfd0 100644 --- a/glib/gtestframework.h +++ b/glib/gtestutils.h @@ -1,4 +1,4 @@ -/* GLib testing framework examples +/* GLib testing utilities * Copyright (C) 2007 Tim Janik * * This library is free software; you can redistribute it and/or @@ -16,8 +16,8 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ -#ifndef __G_TESTFRAMEWORK_H__ -#define __G_TESTFRAMEWORK_H__ +#ifndef __G_TEST_UTILS_H__ +#define __G_TEST_UTILS_H__ #include @@ -224,4 +224,4 @@ void g_test_log_msg_free (GTestLogMsg *tmsg); G_END_DECLS; -#endif /* __G_TESTFRAMEWORK_H__ */ +#endif /* __G_TEST_UTILS_H__ */ diff --git a/glib/tests/testing.c b/glib/tests/testing.c index f1940d0..468cd08 100644 --- a/glib/tests/testing.c +++ b/glib/tests/testing.c @@ -18,7 +18,7 @@ * otherwise) arising in any way out of the use of this software, even * if advised of the possibility of such damage. */ -#include +#include #include /* test assertion variants */