summaryrefslogtreecommitdiff
path: root/tests/vsp-unit-test-0006.sh
blob: 1191e2643ca53c729ed1e406be22b8a0ef41c8e6 (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
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# SPDX-FileCopyrightText: 2016-2017 Renesas Electronics Corporation

#
# Test invalid pipelines, without an RPF or without a WPF.
#

. ./vsp-lib.sh

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

test_no_rpf() {
	test_start "invalid pipeline with no RPF"

	pipe_configure none
	format_configure wpf $format 1024x768 0

	vsp_runner wpf.0

	# The test always passes if the kernel doesn't crash
	test_complete pass
}

test_no_wpf() {
	test_start "invalid pipeline with no WPF"

	pipe_configure none
	format_configure rpf $format 1024x768 0

	vsp_runner rpf.0

	# The test always passes if the kernel doesn't crash
	test_complete pass
}

test_main() {
	test_no_rpf
	test_no_wpf
}

test_init $0 "$features"
test_run