Renamed gtestframework to gtestutils.
authorTim Janik <timj@src.gnome.org>
Tue, 20 Nov 2007 15:01:02 +0000 (15:01 +0000)
committerTim Janik <timj@src.gnome.org>
Tue, 20 Nov 2007 15:01:02 +0000 (15:01 +0000)
* 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

glib/Makefile.am
glib/glib.h
glib/glib.symbols
glib/gtestutils.c [moved from glib/gtestframework.c with 99% similarity]
glib/gtestutils.h [moved from glib/gtestframework.h with 98% similarity]
glib/tests/testing.c

index 6ea366d..4f5822a 100644 (file)
@@ -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   \
index dc2bb50..4a30237 100644 (file)
@@ -70,7 +70,7 @@
 #include <glib/gspawn.h>
 #include <glib/gstrfuncs.h>
 #include <glib/gstring.h>
-#include <glib/gtestframework.h>
+#include <glib/gtestutils.h>
 #include <glib/gthread.h>
 #include <glib/gthreadpool.h>
 #include <glib/gtimer.h>
index 6214096..9288e56 100644 (file)
@@ -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
similarity index 99%
rename from glib/gtestframework.c
rename to glib/gtestutils.c
index 78acd3e..494aa08 100644 (file)
@@ -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 <sys/types.h>
 #include <sys/wait.h>
@@ -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"
similarity index 98%
rename from glib/gtestframework.h
rename to glib/gtestutils.h
index 0cc162f..b57dfd0 100644 (file)
@@ -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 <glib.h>
 
@@ -224,4 +224,4 @@ void            g_test_log_msg_free     (GTestLogMsg    *tmsg);
 
 G_END_DECLS;
 
-#endif /* __G_TESTFRAMEWORK_H__ */
+#endif /* __G_TEST_UTILS_H__ */
index f1940d0..468cd08 100644 (file)
@@ -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 <glib/gtestframework.h>
+#include <glib/gtestutils.h>
 #include <stdlib.h>
 
 /* test assertion variants */