aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/autobuilder/buildsteps/ToasterRunTests.py
blob: 141768cb140ad3e33a63f2b023698783b9c29341 (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
'''
Created on Feb 15, 2016

__author__ = "Anibal (alimon) Limon"
__copyright__ = "Copyright 2016, Intel Corp."
__credits__ = ["Anibal Limon"]
__license__ = "GPL"
__version__ = "2.0"
__maintainer__ = "Anibal Limon"
__email__ = "anibal.limon@linux.intel.com"
'''

from lib.buildsteps import ShellCommandCleanEnv
import os

class ToasterRunTests(ShellCommandCleanEnv):
    haltOnFailure = True
    flunkOnFailure = True
    name = "ToasterRunTests"

    def __init__(self, factory, argdict=None, **kwargs):
        self.factory = factory
        self.description = "Running toaster tests..."

        oe_cmd = "source ./oe-init-build-env;"
        venv_cmd = "source venv/bin/activate;"
        cmd = "DISPLAY=:1 toaster-test --run-all-tests --verbose"

        self.command = oe_cmd + venv_cmd + cmd

        ShellCommandCleanEnv.__init__(self, factory, argdict, **kwargs)