From ea1d7edc8dccc7541ab43684e1d5399e4e7b88c5 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Tue, 16 Jul 2013 19:42:53 +0200 Subject: [PATCH] tests/integration: adds image_filename in the test generation macro --- tests/check/ges/integration.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/check/ges/integration.c b/tests/check/ges/integration.c index 8a40e4f02c..9bd51d5052 100644 --- a/tests/check/ges/integration.c +++ b/tests/check/ges/integration.c @@ -609,7 +609,7 @@ GST_START_TEST (test_##name##_raw_h264_mov) \ { \ testfilename1 = "raw_h264.0.mov"; \ testfilename2 = "raw_h264.1.mov"; \ - current_profile = profile; \ + test_image_filename = "test.png"; \ func (); \ } \ GST_END_TEST; \ @@ -617,7 +617,7 @@ GST_START_TEST (test_##name##_vorbis_theora_ogv) \ { \ testfilename1 = "vorbis_theora.0.ogg"; \ testfilename2 = "vorbis_theora.1.ogg"; \ - current_profile = profile; \ + test_image_filename = "test.png"; \ func (); \ } \ GST_END_TEST; \ @@ -625,6 +625,7 @@ GST_START_TEST (test_##name##_vorbis_vp8_webm) \ { \ testfilename1 = "vorbis_vp8.0.webm"; \ testfilename2 = "vorbis_vp8.1.webm"; \ + test_image_filename = "test.png"; \ current_profile = profile; \ func (); \ } \ @@ -634,6 +635,7 @@ GST_START_TEST (test_##name##_mp3_h264_mov) \ testfilename1 = "mp3_h264.0.mov"; \ testfilename2 = "mp3_h264.1.mov"; \ current_profile = profile; \ + test_image_filename = "test.png"; \ func (); \ } \ GST_END_TEST;