summaryrefslogtreecommitdiff
path: root/tests/vsp-unit-test-0005.sh
blob: 168ee55d6fa8b205d51c63f140a69fd2d4db43ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh

#
# Test RPF -> WPF with all RPF and WPF instances in sequence. The format
# doesn't matter much, use RGB24 to simplify frame comparison.
#

source vsp-lib.sh

features="rpf.0 rpf.1 wpf.0 wpf.1"
format=RGB24

test_rpf() {
	rpf=$1

	test_start "RPF.$rpf"

	pipe_configure rpf-wpf $rpf 0
	format_configure rpf-wpf $rpf 0 $format 1024x768 $format

	$vsp_runner $mdev input $rpf $format &
	$vsp_runner $mdev output 0 $format

	result=$(compare_frames exact reference)

	test_complete $result
}

test_wpf() {
	wpf=$1

	test_start "WPF.$wpf"

	pipe_configure rpf-wpf 0 $wpf
	format_configure rpf-wpf 0 $wpf $format 1024x768 $format

	$vsp_runner $mdev input 0 $format &
	$vsp_runner $mdev output $wpf $format

	result=$(compare_frames exact reference $format $wpf)

	test_complete $result
}

test_main() {
	num_rpfs=$(vsp1_count_rpfs)
	num_wpfs=$(vsp1_count_wpfs)

	for rpf in `seq 0 1 $((num_rpfs-1))` ; do
		test_rpf $rpf
	done

	# Skip WPF.0, it has already been tested during the RPF tests.
	for wpf in `seq $((num_wpfs-1))` ; do
		test_wpf $wpf
	done
}

test_init $0 "$features"
test_run