diff options
Diffstat (limited to 'tests/vsp-unit-test-0005.sh')
-rwxr-xr-x | tests/vsp-unit-test-0005.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/vsp-unit-test-0005.sh b/tests/vsp-unit-test-0005.sh index 9cb46c6..66c26b4 100755 --- a/tests/vsp-unit-test-0005.sh +++ b/tests/vsp-unit-test-0005.sh @@ -12,7 +12,7 @@ optional_features="rpf.2 rpf.3 rpf.4" format=RGB24 test_rpf() { - rpf=$1 + local rpf=$1 test_start "RPF.$rpf" @@ -22,13 +22,14 @@ test_rpf() { vsp_runner rpf.$rpf & vsp_runner wpf.0 - result=$(compare_frames) + local result=$(compare_frames) test_complete $result } test_main() { - num_rpfs=$(vsp1_count_rpfs) + local num_rpfs=$(vsp1_count_rpfs) + local rpf for rpf in `seq 0 1 $((num_rpfs-1))` ; do test_rpf $rpf |