Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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) |