aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-31 12:46:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-31 23:01:36 +0100
commitc37d5426b1872d29347c1fecd9bda7b455fa15e0 (patch)
tree6a8732457ba5027da861ad1bcd0a35a4ad2ebd74 /meta/lib
parent8049f25e9cf1cc9277851fb8ce3ed366588975da (diff)
downloadopenembedded-core-contrib-c37d5426b1872d29347c1fecd9bda7b455fa15e0.tar.gz
scripts, lib: Don't limit traceback lengths to arbitrary values
There appears to have been a lot of copy and pasting of the code which prints tracebacks upon failure and limits the stack trace to 5 entries. This obscures the real error and is very confusing to the user it look me an age to work out why some tracebacks weren't useful. This patch removes the limit, making tracebacks much more useful for debugging. [YOCTO #9230] (From OE-Core rev: 6069175e9bb97ace100bb5e99b6104d33163a3a2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rwxr-xr-xmeta/lib/oeqa/runexported.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runexported.py b/meta/lib/oeqa/runexported.py
index dba0d7aec1..e9a29126c8 100755
--- a/meta/lib/oeqa/runexported.py
+++ b/meta/lib/oeqa/runexported.py
@@ -140,5 +140,5 @@ if __name__ == "__main__":
except Exception:
ret = 1
import traceback
- traceback.print_exc(5)
+ traceback.print_exc()
sys.exit(ret)