From 4bff97bb1dfae7c87be35cf20a9aee99fc37f1a9 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Mon, 17 Sep 2012 02:18:10 +0100 Subject: [PATCH] tests: Don't use g_test_verbose() as cogl doesn't use GTest anymore But use cogl_test_verbose() instead. Reviewed-by: Robert Bragg (cherry picked from commit 77efc7428d9ad18c2db1e3fdb544efa091249eaf) --- tests/conform/test-read-texture-formats.c | 2 +- tests/conform/test-write-texture-formats.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conform/test-read-texture-formats.c b/tests/conform/test-read-texture-formats.c index fa987a46c..a59f1c9be 100644 --- a/tests/conform/test-read-texture-formats.c +++ b/tests/conform/test-read-texture-formats.c @@ -196,6 +196,6 @@ test_read_texture_formats (void) cogl_object_unref (tex_2d); - if (g_test_verbose ()) + if (cogl_test_verbose ()) g_print ("OK\n"); } diff --git a/tests/conform/test-write-texture-formats.c b/tests/conform/test-write-texture-formats.c index d76199602..6cb79af20 100644 --- a/tests/conform/test-write-texture-formats.c +++ b/tests/conform/test-write-texture-formats.c @@ -182,6 +182,6 @@ test_write_texture_formats (void) 2, 0xff, 10, 0x56, 10, 0x34, 10, 0x12, -1); - if (g_test_verbose ()) + if (cogl_test_verbose ()) g_print ("OK\n"); }