aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/autobuilder/buildsteps/RunBitbakeSelftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/autobuilder/buildsteps/RunBitbakeSelftest.py')
-rw-r--r--lib/python2.7/site-packages/autobuilder/buildsteps/RunBitbakeSelftest.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/RunBitbakeSelftest.py b/lib/python2.7/site-packages/autobuilder/buildsteps/RunBitbakeSelftest.py
deleted file mode 100644
index 7d1874f0..00000000
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/RunBitbakeSelftest.py
+++ /dev/null
@@ -1,28 +0,0 @@
-'''
-Created on May 13, 2013
-
-__author__ = "Stefan Stanacar"
-__copyright__ = "Copyright 2013, Intel Corp."
-__credits__ = ["Stefan Stanacar"]
-__license__ = "GPL"
-__version__ = "2.0"
-__maintainer__ = "Stefan Stanacar"
-__email__ = "stefanx.stanacar@intel.com"
-'''
-
-
-from buildbot.steps.shell import ShellCommand
-
-class RunBitbakeSelftest(ShellCommand):
- haltOnFailure = False
- flunkOnFailure = True
- name = "Running bitbake-selftest"
- def __init__(self, factory, argdict=None, **kwargs):
- self.factory = factory
- for k, v in argdict.iteritems():
- setattr(self, k, v)
- self.description = "Running bitbake-selftest"
- self.timeout = 100000
- kwargs['timeout']=self.timeout
- self.command = ". ./oe-init-build-env; bitbake-selftest"
- ShellCommand.__init__(self, **kwargs)