From: Brad Hards Date: Thu, 14 Apr 2022 10:10:46 +0000 (+1000) Subject: tests: rename 'icles' subdir to be more descriptive X-Git-Tag: 1.22.0~1864 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=488b760e7e49b5e9112959db6b85045ba54dfdea;p=platform%2Fupstream%2Fgstreamer.git tests: rename 'icles' subdir to be more descriptive Part-of: --- diff --git a/subprojects/gst-plugins-bad/po/POTFILES.skip b/subprojects/gst-plugins-bad/po/POTFILES.skip index ee71512..aa8075e 100644 --- a/subprojects/gst-plugins-bad/po/POTFILES.skip +++ b/subprojects/gst-plugins-bad/po/POTFILES.skip @@ -7,4 +7,4 @@ tests/examples/uvch264/enum_property_gtk2.glade tests/examples/uvch264/int_property.glade tests/examples/uvch264/window.glade tests/examples/waylandsink/window.ui -tests/icles/metadata_editor.ui +tests/interactive/metadata_editor.ui diff --git a/subprojects/gst-plugins-bad/tests/icles/meson.build b/subprojects/gst-plugins-bad/tests/interactive/meson.build similarity index 100% rename from subprojects/gst-plugins-bad/tests/icles/meson.build rename to subprojects/gst-plugins-bad/tests/interactive/meson.build diff --git a/subprojects/gst-plugins-bad/tests/icles/pitch-test.c b/subprojects/gst-plugins-bad/tests/interactive/pitch-test.c similarity index 100% rename from subprojects/gst-plugins-bad/tests/icles/pitch-test.c rename to subprojects/gst-plugins-bad/tests/interactive/pitch-test.c diff --git a/subprojects/gst-plugins-bad/tests/meson.build b/subprojects/gst-plugins-bad/tests/meson.build index 3364f7b..91c0d18 100644 --- a/subprojects/gst-plugins-bad/tests/meson.build +++ b/subprojects/gst-plugins-bad/tests/meson.build @@ -1,6 +1,6 @@ if not get_option('tests').disabled() and gstcheck_dep.found() subdir('check') - subdir('icles') + subdir('interactive') subdir('validate') endif if not get_option('examples').disabled() diff --git a/subprojects/gst-plugins-base/tests/icles/audio-trickplay.c b/subprojects/gst-plugins-base/tests/interactive/audio-trickplay.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/audio-trickplay.c rename to subprojects/gst-plugins-base/tests/interactive/audio-trickplay.c diff --git a/subprojects/gst-plugins-base/tests/icles/benchmark-appsink.c b/subprojects/gst-plugins-base/tests/interactive/benchmark-appsink.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/benchmark-appsink.c rename to subprojects/gst-plugins-base/tests/interactive/benchmark-appsink.c diff --git a/subprojects/gst-plugins-base/tests/icles/benchmark-appsrc.c b/subprojects/gst-plugins-base/tests/interactive/benchmark-appsrc.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/benchmark-appsrc.c rename to subprojects/gst-plugins-base/tests/interactive/benchmark-appsrc.c diff --git a/subprojects/gst-plugins-base/tests/icles/benchmark-video-conversion.c b/subprojects/gst-plugins-base/tests/interactive/benchmark-video-conversion.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/benchmark-video-conversion.c rename to subprojects/gst-plugins-base/tests/interactive/benchmark-video-conversion.c diff --git a/subprojects/gst-plugins-base/tests/icles/input-selector-test.c b/subprojects/gst-plugins-base/tests/interactive/input-selector-test.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/input-selector-test.c rename to subprojects/gst-plugins-base/tests/interactive/input-selector-test.c diff --git a/subprojects/gst-plugins-base/tests/icles/meson.build b/subprojects/gst-plugins-base/tests/interactive/meson.build similarity index 74% rename from subprojects/gst-plugins-base/tests/icles/meson.build rename to subprojects/gst-plugins-base/tests/interactive/meson.build index 5b9d519..7456129 100644 --- a/subprojects/gst-plugins-base/tests/icles/meson.build +++ b/subprojects/gst-plugins-base/tests/interactive/meson.build @@ -1,4 +1,4 @@ -base_icles = [ +base_itests = [ [ 'benchmark-appsink.c', false, [gst_base_dep, app_dep], true ], [ 'benchmark-appsrc.c', false, [gst_base_dep, app_dep], true ], [ 'benchmark-video-conversion.c', false, [gst_base_dep, video_dep], true ], @@ -27,35 +27,35 @@ base_icles = [ [ 'playback/test7.c' ], ] -icle_deps = [gst_dep] +itest_deps = [gst_dep] -foreach icle : base_icles - fname = icle.get(0) - icle_name = fname.split('.').get(0).underscorify() - skip_icle = false +foreach itest : base_itests + fname = itest.get(0) + itest_name = fname.split('.').get(0).underscorify() + skip_itest = false is_bench = false extra_deps = [ ] - if icle.length() >= 4 - is_bench = icle.get(3) + if itest.length() >= 4 + is_bench = itest.get(3) endif - if icle.length() >= 3 - extra_deps = icle.get(2) + if itest.length() >= 3 + extra_deps = itest.get(2) endif - if icle.length() >= 2 - skip_icle = icle.get(1) + if itest.length() >= 2 + skip_itest = itest.get(1) endif - if not skip_icle - exe = executable(icle_name, fname, + if not skip_itest + exe = executable(itest_name, fname, include_directories : [configinc], c_args : ['-DHAVE_CONFIG_H=1' ], - dependencies : icle_deps + extra_deps, + dependencies : itest_deps + extra_deps, ) if is_bench - benchmark('bench_' + icle_name, exe) + benchmark('bench_' + itest_name, exe) endif endif endforeach diff --git a/subprojects/gst-plugins-base/tests/icles/output-selector-test.c b/subprojects/gst-plugins-base/tests/interactive/output-selector-test.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/output-selector-test.c rename to subprojects/gst-plugins-base/tests/interactive/output-selector-test.c diff --git a/subprojects/gst-plugins-base/tests/icles/playback/decodetest.c b/subprojects/gst-plugins-base/tests/interactive/playback/decodetest.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playback/decodetest.c rename to subprojects/gst-plugins-base/tests/interactive/playback/decodetest.c diff --git a/subprojects/gst-plugins-base/tests/icles/playback/test.c b/subprojects/gst-plugins-base/tests/interactive/playback/test.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playback/test.c rename to subprojects/gst-plugins-base/tests/interactive/playback/test.c diff --git a/subprojects/gst-plugins-base/tests/icles/playback/test2.c b/subprojects/gst-plugins-base/tests/interactive/playback/test2.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playback/test2.c rename to subprojects/gst-plugins-base/tests/interactive/playback/test2.c diff --git a/subprojects/gst-plugins-base/tests/icles/playback/test3.c b/subprojects/gst-plugins-base/tests/interactive/playback/test3.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playback/test3.c rename to subprojects/gst-plugins-base/tests/interactive/playback/test3.c diff --git a/subprojects/gst-plugins-base/tests/icles/playback/test4.c b/subprojects/gst-plugins-base/tests/interactive/playback/test4.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playback/test4.c rename to subprojects/gst-plugins-base/tests/interactive/playback/test4.c diff --git a/subprojects/gst-plugins-base/tests/icles/playback/test5.c b/subprojects/gst-plugins-base/tests/interactive/playback/test5.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playback/test5.c rename to subprojects/gst-plugins-base/tests/interactive/playback/test5.c diff --git a/subprojects/gst-plugins-base/tests/icles/playback/test6.c b/subprojects/gst-plugins-base/tests/interactive/playback/test6.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playback/test6.c rename to subprojects/gst-plugins-base/tests/interactive/playback/test6.c diff --git a/subprojects/gst-plugins-base/tests/icles/playback/test7.c b/subprojects/gst-plugins-base/tests/interactive/playback/test7.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playback/test7.c rename to subprojects/gst-plugins-base/tests/interactive/playback/test7.c diff --git a/subprojects/gst-plugins-base/tests/icles/playbin-text.c b/subprojects/gst-plugins-base/tests/interactive/playbin-text.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/playbin-text.c rename to subprojects/gst-plugins-base/tests/interactive/playbin-text.c diff --git a/subprojects/gst-plugins-base/tests/icles/position-formats.c b/subprojects/gst-plugins-base/tests/interactive/position-formats.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/position-formats.c rename to subprojects/gst-plugins-base/tests/interactive/position-formats.c diff --git a/subprojects/gst-plugins-base/tests/icles/stress-playbin.c b/subprojects/gst-plugins-base/tests/interactive/stress-playbin.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/stress-playbin.c rename to subprojects/gst-plugins-base/tests/interactive/stress-playbin.c diff --git a/subprojects/gst-plugins-base/tests/icles/stress-videooverlay.c b/subprojects/gst-plugins-base/tests/interactive/stress-videooverlay.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/stress-videooverlay.c rename to subprojects/gst-plugins-base/tests/interactive/stress-videooverlay.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-box.c b/subprojects/gst-plugins-base/tests/interactive/test-box.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-box.c rename to subprojects/gst-plugins-base/tests/interactive/test-box.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-colorkey.c b/subprojects/gst-plugins-base/tests/interactive/test-colorkey.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-colorkey.c rename to subprojects/gst-plugins-base/tests/interactive/test-colorkey.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-effect-switch.c b/subprojects/gst-plugins-base/tests/interactive/test-effect-switch.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-effect-switch.c rename to subprojects/gst-plugins-base/tests/interactive/test-effect-switch.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-header-compile b/subprojects/gst-plugins-base/tests/interactive/test-header-compile similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-header-compile rename to subprojects/gst-plugins-base/tests/interactive/test-header-compile diff --git a/subprojects/gst-plugins-base/tests/icles/test-overlay-blending.c b/subprojects/gst-plugins-base/tests/interactive/test-overlay-blending.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-overlay-blending.c rename to subprojects/gst-plugins-base/tests/interactive/test-overlay-blending.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-resample.c b/subprojects/gst-plugins-base/tests/interactive/test-resample.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-resample.c rename to subprojects/gst-plugins-base/tests/interactive/test-resample.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-reverseplay.c b/subprojects/gst-plugins-base/tests/interactive/test-reverseplay.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-reverseplay.c rename to subprojects/gst-plugins-base/tests/interactive/test-reverseplay.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-scale.c b/subprojects/gst-plugins-base/tests/interactive/test-scale.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-scale.c rename to subprojects/gst-plugins-base/tests/interactive/test-scale.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-textoverlay.c b/subprojects/gst-plugins-base/tests/interactive/test-textoverlay.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-textoverlay.c rename to subprojects/gst-plugins-base/tests/interactive/test-textoverlay.c diff --git a/subprojects/gst-plugins-base/tests/icles/test-videooverlay.c b/subprojects/gst-plugins-base/tests/interactive/test-videooverlay.c similarity index 100% rename from subprojects/gst-plugins-base/tests/icles/test-videooverlay.c rename to subprojects/gst-plugins-base/tests/interactive/test-videooverlay.c diff --git a/subprojects/gst-plugins-base/tests/meson.build b/subprojects/gst-plugins-base/tests/meson.build index e10aa9a..e3a97b8 100644 --- a/subprojects/gst-plugins-base/tests/meson.build +++ b/subprojects/gst-plugins-base/tests/meson.build @@ -9,7 +9,7 @@ gst_plugin_scanner_path = join_paths(gst_plugin_scanner_dir, 'gst-plugin-scanner if not get_option('tests').disabled() and gst_check_dep.found() subdir('check') - subdir('icles') + subdir('interactive') subdir('validate') endif if not get_option('examples').disabled() diff --git a/subprojects/gst-plugins-good/tests/icles/equalizer-test.c b/subprojects/gst-plugins-good/tests/interactive/equalizer-test.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/equalizer-test.c rename to subprojects/gst-plugins-good/tests/interactive/equalizer-test.c diff --git a/subprojects/gst-plugins-good/tests/icles/gdkpixbufoverlay-test.c b/subprojects/gst-plugins-good/tests/interactive/gdkpixbufoverlay-test.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/gdkpixbufoverlay-test.c rename to subprojects/gst-plugins-good/tests/interactive/gdkpixbufoverlay-test.c diff --git a/subprojects/gst-plugins-good/tests/icles/gdkpixbufsink-test.c b/subprojects/gst-plugins-good/tests/interactive/gdkpixbufsink-test.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/gdkpixbufsink-test.c rename to subprojects/gst-plugins-good/tests/interactive/gdkpixbufsink-test.c diff --git a/subprojects/gst-plugins-good/tests/icles/meson.build b/subprojects/gst-plugins-good/tests/interactive/meson.build similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/meson.build rename to subprojects/gst-plugins-good/tests/interactive/meson.build diff --git a/subprojects/gst-plugins-good/tests/icles/test-accurate-seek.c b/subprojects/gst-plugins-good/tests/interactive/test-accurate-seek.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/test-accurate-seek.c rename to subprojects/gst-plugins-good/tests/interactive/test-accurate-seek.c diff --git a/subprojects/gst-plugins-good/tests/icles/test-oss4.c b/subprojects/gst-plugins-good/tests/interactive/test-oss4.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/test-oss4.c rename to subprojects/gst-plugins-good/tests/interactive/test-oss4.c diff --git a/subprojects/gst-plugins-good/tests/icles/test-segment-seeks.c b/subprojects/gst-plugins-good/tests/interactive/test-segment-seeks.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/test-segment-seeks.c rename to subprojects/gst-plugins-good/tests/interactive/test-segment-seeks.c diff --git a/subprojects/gst-plugins-good/tests/icles/videobox-test.c b/subprojects/gst-plugins-good/tests/interactive/videobox-test.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/videobox-test.c rename to subprojects/gst-plugins-good/tests/interactive/videobox-test.c diff --git a/subprojects/gst-plugins-good/tests/icles/videocrop-test.c b/subprojects/gst-plugins-good/tests/interactive/videocrop-test.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/videocrop-test.c rename to subprojects/gst-plugins-good/tests/interactive/videocrop-test.c diff --git a/subprojects/gst-plugins-good/tests/icles/videocrop2-test.c b/subprojects/gst-plugins-good/tests/interactive/videocrop2-test.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/videocrop2-test.c rename to subprojects/gst-plugins-good/tests/interactive/videocrop2-test.c diff --git a/subprojects/gst-plugins-good/tests/icles/ximagesrc-test.c b/subprojects/gst-plugins-good/tests/interactive/ximagesrc-test.c similarity index 100% rename from subprojects/gst-plugins-good/tests/icles/ximagesrc-test.c rename to subprojects/gst-plugins-good/tests/interactive/ximagesrc-test.c diff --git a/subprojects/gst-plugins-good/tests/meson.build b/subprojects/gst-plugins-good/tests/meson.build index 6db6240..86c90d3 100644 --- a/subprojects/gst-plugins-good/tests/meson.build +++ b/subprojects/gst-plugins-good/tests/meson.build @@ -1,6 +1,6 @@ if not get_option('tests').disabled() and gstcheck_dep.found() subdir('check') - subdir('icles') + subdir('interactive') endif if not get_option('examples').disabled()