summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu.duponchelle@epitech.eu>2013-08-01 11:31:16 +0200
committerThibault Saunier <thibault.saunier@collabora.com>2013-08-01 15:32:33 +0200
commit5022b10d666968179ed2a164d075437edfdd0f16 (patch)
tree687714ecbf35e01902be37d27b74242eeccd6dbc
parent64bebd586710ae1df9162b90ce3debefbed88e7c (diff)
tests/integration: display test name when running it.
-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; \