summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/decorators.py
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-07-12 19:08:53 +0300
committerSaul Wold <sgw@linux.intel.com>2013-07-15 10:29:27 -0700
commit8bbb7116cf02466dfc59a17dc7bb51287aeea55b (patch)
treea960121997c6fd2f61cd08327209ae55013edf90 /meta/lib/oeqa/utils/decorators.py
parentba58f1fe8fb7a0e3ff9320dfc108235d484da6a1 (diff)
downloadopenembedded-core-contrib-8bbb7116cf02466dfc59a17dc7bb51287aeea55b.tar.gz
testimage.bbclass, lib/oeqa: add headers and comments
Adds some comments to testimage.bbclass and the files it calls, just to give an ideea of what it does. Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/lib/oeqa/utils/decorators.py')
-rw-r--r--meta/lib/oeqa/utils/decorators.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/decorators.py b/meta/lib/oeqa/utils/decorators.py
index 21e6b22cb9..adec65eb44 100644
--- a/meta/lib/oeqa/utils/decorators.py
+++ b/meta/lib/oeqa/utils/decorators.py
@@ -1,3 +1,11 @@
+# Copyright (C) 2013 Intel Corporation
+#
+# Released under the MIT license (see COPYING.MIT)
+
+# Some custom decorators that can be used by unittests
+# Most useful is skipUnlessPassed which can be used for
+# creating dependecies between two test methods.
+
from oeqa.oetest import *
class skipIfFailure(object):