Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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)