tests/integration: display test name when running it.

This commit is contained in:
Mathieu Duponchelle 2013-08-01 11:31:16 +02:00 committed by Thibault Saunier
parent 64bebd5867
commit 5022b10d66

View file

@ -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; \