js/src/gdb/lib-for-tests/catcher.py

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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

mercurial