diff options
Diffstat (limited to 'js/src/gdb/gdb-tests-gdb.py.in')
-rw-r--r-- | js/src/gdb/gdb-tests-gdb.py.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/gdb/gdb-tests-gdb.py.in b/js/src/gdb/gdb-tests-gdb.py.in new file mode 100644 index 000000000..c6e400981 --- /dev/null +++ b/js/src/gdb/gdb-tests-gdb.py.in @@ -0,0 +1,11 @@ +"""GDB Python customization auto-loader for GDB test executable""" +#filter substitution + +import os.path +sys.path[0:0] = [os.path.join('@topsrcdir@', 'gdb')] + +import mozilla.autoload +mozilla.autoload.register(gdb.current_objfile()) + +import mozilla.asmjs +mozilla.asmjs.install() |