summaryrefslogtreecommitdiff
path: root/tests/vsp-unit-test-0010.sh
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2016-09-13 16:10:12 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2016-09-13 20:17:22 +0300
commit792e1bc143a84b1a0707e1f2f91a20cef6f43e31 (patch)
tree720abd78d5e46ba400c983b3283ba598195b384e /tests/vsp-unit-test-0010.sh
parent2c5aec7c218cdaaad6d63064943b738cd4a4d6ed (diff)
tests: Make local variables local
Avoid interfering with the vsp-lib namespace by making local variables local. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'tests/vsp-unit-test-0010.sh')
-rwxr-xr-xtests/vsp-unit-test-0010.sh16
1 files changed, 10 insertions, 6 deletions
diff --git a/tests/vsp-unit-test-0010.sh b/tests/vsp-unit-test-0010.sh
index fc6ded6..07fd478 100755
--- a/tests/vsp-unit-test-0010.sh
+++ b/tests/vsp-unit-test-0010.sh
@@ -19,13 +19,13 @@ clu_configs="zero identity wave"
lut_configs="zero identity gamma"
test_lut() {
- lut_type=$1
- format=$2
- config=$3
+ local lut_type=$1
+ local format=$2
+ local config=$3
test_start "$(echo $lut_type | tr [:lower:] [:upper:]) in $format with $config configuration"
- config_file=frames/${lut_type}-${config}.bin
+ local config_file=frames/${lut_type}-${config}.bin
pipe_configure rpf-${lut_type}
format_configure rpf-${lut_type} $format 1024x768
@@ -35,14 +35,18 @@ test_lut() {
vsp_runner rpf.0 &
vsp_runner wpf.0
- result=$(compare_frames $lut_type=$config_file)
+ local result=$(compare_frames $lut_type=$config_file)
test_complete $result
}
test_main() {
+ local lut
+ local format
+ local config
+
for lut in $lut_types ; do
- configs=$(eval echo \$${lut}_configs)
+ local configs=$(eval echo \$${lut}_configs)
for format in $formats ; do
for config in $configs ; do
test_lut $lut $format $config