summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/check/ges/integration.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/check/ges/integration.c b/tests/check/ges/integration.c
index 0b7aada..0c4c493 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; \