Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | # Apparently, there's simply no way to ask GDB to exit with a non-zero |
michael@0 | 2 | # status when the script run with the --eval-command option fails. Thus, if |
michael@0 | 3 | # we have --eval-command run prolog.py directly, syntax errors there will |
michael@0 | 4 | # lead GDB to exit with no indication anything went wrong. |
michael@0 | 5 | # |
michael@0 | 6 | # To avert that, we use this very small launcher script to run prolog.py |
michael@0 | 7 | # and catch errors. |
michael@0 | 8 | # |
michael@0 | 9 | # Remember, errors in this file will cause spurious passes, so keep this as |
michael@0 | 10 | # simple as possible! |
michael@0 | 11 | |
michael@0 | 12 | import os |
michael@0 | 13 | import sys |
michael@0 | 14 | import traceback |
michael@0 | 15 | try: |
michael@0 | 16 | # testlibdir is set on the GDB command line, via: |
michael@0 | 17 | # --eval-command python testlibdir=... |
michael@0 | 18 | execfile(os.path.join(testlibdir, 'prolog.py')) |
michael@0 | 19 | except Exception as err: |
michael@0 | 20 | sys.stderr.write('Error running GDB prologue:\n') |
michael@0 | 21 | traceback.print_exc() |
michael@0 | 22 | sys.exit(1) |