summaryrefslogtreecommitdiff
path: root/ubuntu/scripts/pi-stress-test.py
blob: dc2fdb78c652549e34df9f169461842601683fb5 (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
#!/usr/bin/env python
#
# PI stress test case for Linux Linaro ubuntu
#
# Copyright (C) 2012 - 2014, Linaro Limited.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
# Author: Chase Qi <chase.qi@linaro.org>
#

import sys
import signal
from subprocess import call

DURATION = sys.argv[1]
GROUP = sys.argv[2]
MLOCKALL = sys.argv[3]
RR = sys.argv[4]

# Determine PI stress test options
pi_stress_command = ['pi_stress', '--duration', DURATION]
if GROUP != 'default':
    pi_stress_command.append('--groups')
    pi_stress_command.append(GROUP)
if MLOCKALL == 'true':
    pi_stress_command.append('--mlockall')
if RR != 'false':
    pi_stress_command.append('--rr')

# Trap and ignore SIGTERM if terminate signal appeared
signal.signal(signal.SIGTERM, signal.SIG_IGN)

# Run PI stress test
print 'pi_stress_command is:'
print ' '.join(pi_stress_command)
if call(pi_stress_command) == 0:
    call(['lava-test-case', 'pi-stress-test', '--result', 'pass'])
else:
    call(['lava-test-case', 'pi-stress-test', '--result', 'fail'])