diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-01-07 19:02:48 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-01-07 19:02:48 -0500 |
commit | b3f2b41567c2bb1349ab88db0b8c7050fb957423 (patch) | |
tree | 0ca77b4ce242dc7264186c0a6938899ec992759b /gdk | |
parent | 1e867a94a2a4fd897f2ba05a658903231275a52e (diff) | |
download | gtk+-b3f2b41567c2bb1349ab88db0b8c7050fb957423.tar.gz |
Rename rgba test file
Not testing GdkColor here, anymore.
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/tests/Makefile.am | 6 | ||||
-rw-r--r-- | gdk/tests/rgba.c (renamed from gdk/tests/gdk-color.c) | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gdk/tests/Makefile.am b/gdk/tests/Makefile.am index 75dd9b4cea..e474337462 100644 --- a/gdk/tests/Makefile.am +++ b/gdk/tests/Makefile.am @@ -19,9 +19,9 @@ progs_ldadd = \ #check_gdk_cairo_SOURCES = check-gdk-cairo.c #check_gdk_cairo_LDADD = $(progs_ldadd) -TEST_PROGS += gdk-color -gdk_color_SOURCES = gdk-color.c -gdk_color_LDADD = $(progs_ldadd) +TEST_PROGS += rgba +rgba_SOURCES = rgba.c +rgba_LDADD = $(progs_ldadd) TEST_PROGS += encoding encoding_SOURCES = encoding.c diff --git a/gdk/tests/gdk-color.c b/gdk/tests/rgba.c index af69c20dcf..d23bb96fe9 100644 --- a/gdk/tests/gdk-color.c +++ b/gdk/tests/rgba.c @@ -112,9 +112,9 @@ main (int argc, char *argv[]) { g_test_init (&argc, &argv, NULL); - g_test_add_func ("/color/parse", test_color_parse); - g_test_add_func ("/color/to-string", test_color_to_string); - g_test_add_func ("/color/copy", test_color_copy); + g_test_add_func ("/rgba/parse", test_color_parse); + g_test_add_func ("/rgba/to-string", test_color_to_string); + g_test_add_func ("/rgba/copy", test_color_copy); return g_test_run (); } |