blob: c5a12f38e09a88398dfe81b4a194d5081bab564a (
plain)
1
2
3
4
5
6
7
8
|
"""GDB Python customization auto-loader for jsapi-tests executable"""
#filter substitution
import os.path
sys.path[0:0] = [os.path.join('@topsrcdir@', 'gdb')]
import mozilla.autoload
mozilla.autoload.register(gdb.current_objfile())
|