diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-06-17 00:22:11 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-06-19 15:26:01 +0300 |
commit | 8f715bbaa867f0928bad6cf1b8595444134afc8f (patch) | |
tree | fa2b51ebb5f3312aab908839db5528217ace5098 /tests/vsp-unit-test-0001.sh | |
parent | c120e551d0f222bb444ee1b454c07f4eb3d39ad1 (diff) |
vsp-lib: Store the scaling configuration internally
This allows deciding whether to compare output frames using the exact or
fuzzy algorithm internally, removing the need for an explicit argument
to the compare_frames function.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'tests/vsp-unit-test-0001.sh')
-rwxr-xr-x | tests/vsp-unit-test-0001.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vsp-unit-test-0001.sh b/tests/vsp-unit-test-0001.sh index 962adc0..887f23a 100755 --- a/tests/vsp-unit-test-0001.sh +++ b/tests/vsp-unit-test-0001.sh @@ -20,7 +20,7 @@ test_wpf_packing() { $vsp_runner $mdev input 0 ARGB32 & $vsp_runner $mdev output 0 $format - result=$(compare_frames exact) + result=$(compare_frames) test_complete $result } |