diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2016-02-04 16:14:26 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:23 +0000 |
commit | 7181da7192d83a43294d80edd61a1dce5543bc71 (patch) | |
tree | 267d82cb1a01ab227ff673b1ddd7262c3c0616a1 /meta/lib | |
parent | f3c2ce27390b008b210cc439b8130942eb380ce9 (diff) | |
download | poky-7181da7192d83a43294d80edd61a1dce5543bc71.tar.gz |
oeqa/oetest: oeSDKTest when run a command redirect env output to null
Some tests are failing because the eSDK env load script shows a help
message on the output so redirect this to /dev/null.
There was a discussion with Paul Eggleton [1], he don't want to have env
variables to change the behaviour of what the env script needs to print
so redirect the output in oeSDK.run() method. I didn't agree because
it can hides another messages like error ones and with the variable you
can control what prints or not.
[1] http://lists.openembedded.org/pipermail/openembedded-core/2016-February/116744.html
(From OE-Core rev: 7defb10d10861501947b4a686510e957c72313e6)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/oetest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index 16705cc3fe..47ea3b259f 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py | |||
@@ -124,7 +124,7 @@ class oeSDKTest(oeTest): | |||
124 | return False | 124 | return False |
125 | 125 | ||
126 | def _run(self, cmd): | 126 | def _run(self, cmd): |
127 | return subprocess.check_output(". %s; " % self.tc.sdkenv + cmd, shell=True) | 127 | return subprocess.check_output(". %s > /dev/null; %s;" % (self.tc.sdkenv, cmd), shell=True) |
128 | 128 | ||
129 | def getmodule(pos=2): | 129 | def getmodule(pos=2): |
130 | # stack returns a list of tuples containg frame information | 130 | # stack returns a list of tuples containg frame information |