blob: dc1e6986650c1c9d21a9ce0bfaa7a9fded35a95a (
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
61
62
63
|
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# SPDX-FileCopyrightText: 2017 Renesas Electronics Corporation
#
# Test active pipeline, with high load on CPU/Memory/IO using 'stress'
#
# Utilise the same test as for suspend resume testing, to verify a longer
# duration pipeline lifetime while we stress the system.
#
. ./vsp-lib.sh
features="rpf.0 wpf.0"
# This extended function performs the same
# as it's non-extended name-sake - but runs the pipeline
# for 300 frames.
test_extended_wpf_packing() {
pipe_configure rpf-wpf 0 0
format_configure rpf-wpf 0 0 ARGB32 1024x768 RGB24
vsp_runner rpf.0 --count=300 &
vsp_runner wpf.0 --count=300 --skip=297
local result=$(compare_frames)
if [ x$result == x"pass" ] ; then
return 0;
else
return 1;
fi
}
exists() {
type -t "$1" > /dev/null 2>&1;
}
test_main() {
test_start "long duration pipelines under stress"
exists stress || {
echo "$0: Stress test requires utility 'stress'"
test_complete skip
return
}
# Start stressing the system, as a background task
stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M &
if test_extended_wpf_packing ; then
test_complete pass
else
test_complete fail
fi
# Recover the system. Stress launches multiple PIDs, so it's best to:
killall -9 stress
}
test_init $0 "$features"
test_run
|