diff options
-rw-r--r-- | README | 6 | ||||
-rwxr-xr-x | scripts/vsp-lib.sh | 14 |
2 files changed, 16 insertions, 4 deletions
@@ -56,3 +56,9 @@ Running the Tests The test scripts are named vsp-unit-test-[0-9]*.sh. They can be run directly from the test suite root directory. +Test options: + +- VSP_KEEP_FRAMES: When the VSP_KEEP_FRAMES environment variable is set to 1, + all frame files will be preserved regardless of the tests results. Otherwise + frame files for successful tests are removed. + diff --git a/scripts/vsp-lib.sh b/scripts/vsp-lib.sh index 6ce701a..7c012d0 100755 --- a/scripts/vsp-lib.sh +++ b/scripts/vsp-lib.sh @@ -254,13 +254,19 @@ compare_frames() { params=$in_fmt-$out_fmt-$size$params for frame in ${frames_dir}frame-*.bin ; do - (compare_frame_$method $out_format $size $frame ${frames_dir}ref-frame.bin) || { - mv $frame ${0/.sh/}-$(basename ${frame/.bin/-$params.bin}) ; - result="fail" + local match="true" + + (compare_frame_$method $out_format $size $frame ${frames_dir}ref-frame.bin) || { + match="false" ; + result="fail" ; } + + if [ $match = "false" -o x$VSP_KEEP_FRAMES = x1 ] ; then + mv $frame ${0/.sh/}-$(basename ${frame/.bin/-$params.bin}) + fi done - if [ $result = "fail" ] ; then + if [ x$VSP_KEEP_FRAMES = x1 -o $result = "fail" ] ; then mv ${frames_dir}ref-frame.bin ${0/.sh/}-ref-frame-$params.bin else rm -f ${frames_dir}ref-frame.bin |