From 5022b10d666968179ed2a164d075437edfdd0f16 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Thu, 1 Aug 2013 11:31:16 +0200 Subject: [PATCH] tests/integration: display test name when running it. --- tests/check/ges/integration.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/check/ges/integration.c b/tests/check/ges/integration.c index 0b7aada506..0c4c4939fb 100644 --- a/tests/check/ges/integration.c +++ b/tests/check/ges/integration.c @@ -715,6 +715,7 @@ test_image (void) #define CREATE_TEST(name, func, profile) \ GST_START_TEST (test_##name##_raw_h264_mov) \ { \ + g_print("running test_%s_%s\n", #name, "raw_h264_mov"); \ testfilename1 = "raw_h264.0.mov"; \ testfilename2 = "raw_h264.1.mov"; \ test_image_filename = "test.png"; \ @@ -723,6 +724,7 @@ GST_START_TEST (test_##name##_raw_h264_mov) \ GST_END_TEST; \ GST_START_TEST (test_##name##_vorbis_theora_ogv) \ { \ + g_print("running test_%s_%s\n", #name, "vorbis_theora_ogv"); \ testfilename1 = "vorbis_theora.0.ogg"; \ testfilename2 = "vorbis_theora.1.ogg"; \ test_image_filename = "test.png"; \ @@ -731,6 +733,7 @@ GST_START_TEST (test_##name##_vorbis_theora_ogv) \ GST_END_TEST; \ GST_START_TEST (test_##name##_vorbis_vp8_webm) \ { \ + g_print("running test_%s_%s\n", #name, "vorbis_vp8_webm"); \ testfilename1 = "vorbis_vp8.0.webm"; \ testfilename2 = "vorbis_vp8.1.webm"; \ test_image_filename = "test.png"; \ @@ -740,6 +743,7 @@ GST_START_TEST (test_##name##_vorbis_vp8_webm) \ GST_END_TEST; \ GST_START_TEST (test_##name##_mp3_h264_mov) \ { \ + g_print("running test_%s_%s\n", #name, "mp3_h264_mov"); \ testfilename1 = "mp3_h264.0.mov"; \ testfilename2 = "mp3_h264.1.mov"; \ current_profile = profile; \