aboutsummaryrefslogtreecommitdiffstats
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:38 +0100
commit51217057d12e375bada074daf6ab6c6112320c3e (patch)
tree50388ae282c0660076ea8a3cb50e3f61d2741c7b
parent31681346a70d03e94ba35344ce12205b5269f451 (diff)
downloadopenembedded-core-contrib-51217057d12e375bada074daf6ab6c6112320c3e.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 meta-yocto rev: 2f00b2605353b9757a40636870ad20ee70bcab9d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/yocto-bsp2
-rwxr-xr-xscripts/yocto-kernel2
-rwxr-xr-xscripts/yocto-layer2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/yocto-bsp b/scripts/yocto-bsp
index 2d9453fbe8..82a050ebdc 100755
--- a/scripts/yocto-bsp
+++ b/scripts/yocto-bsp
@@ -151,6 +151,6 @@ if __name__ == "__main__":
except Exception:
ret = 1
import traceback
- traceback.print_exc(5)
+ traceback.print_exc()
sys.exit(ret)
diff --git a/scripts/yocto-kernel b/scripts/yocto-kernel
index c9b2821e00..daaad07520 100755
--- a/scripts/yocto-kernel
+++ b/scripts/yocto-kernel
@@ -395,5 +395,5 @@ if __name__ == "__main__":
except Exception:
ret = 1
import traceback
- traceback.print_exc(5)
+ traceback.print_exc()
sys.exit(ret)
diff --git a/scripts/yocto-layer b/scripts/yocto-layer
index 313d464b6e..356972ece8 100755
--- a/scripts/yocto-layer
+++ b/scripts/yocto-layer
@@ -146,6 +146,6 @@ if __name__ == "__main__":
except Exception:
ret = 1
import traceback
- traceback.print_exc(5)
+ traceback.print_exc()
sys.exit(ret)