diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-05-16 21:55:52 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-05-19 16:55:07 +0300 |
commit | 62f0b16f639a9ecb116a79819655bdf44e269443 (patch) | |
tree | f66dc07c616b3f387f3ec941537e840fce261322 /tests/vsp-unit-test-0004.sh |
Initial commit
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'tests/vsp-unit-test-0004.sh')
-rwxr-xr-x | tests/vsp-unit-test-0004.sh | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/vsp-unit-test-0004.sh b/tests/vsp-unit-test-0004.sh new file mode 100755 index 0000000..af5dfdb --- /dev/null +++ b/tests/vsp-unit-test-0004.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +# +# Test 1D histogram generation. Use a RPF -> WPF pipeline with the HGO hooked +# up at the RPF output. +# + +source vsp-lib.sh + +features="hgo rpf.0 wpf.0" +formats="RGB24 UYVY" + +test_histogram() { + test_start "histogram in $format" + + pipe_configure rpf-hgo | ./logger.sh config >> $logfile + format_configure rpf-hgo \ + $format 1024x768 | ./logger.sh config >> $logfile + + $vsp_runner $mdev m2m-hgo $format $format | ./logger.sh config >> $logfile + $vsp_runner $mdev hgo | ./logger.sh hgo >> $logfile & + $vsp_runner $mdev input 0 $format | ./logger.sh input.0 >> $logfile & + $vsp_runner $mdev output 0 $format | ./logger.sh output.0 >> $logfile + + result=$(compare_histograms $format 0) + + test_complete $result +} + +test_run() { + for format in $formats ; do + test_histogram $format + done +} + +test_init $0 "$features" +test_run |