7 lldb_root
= os
.path
.dirname(inspect
.getfile(inspect
.currentframe()))
9 parent
= os
.path
.dirname(lldb_root
)
10 if parent
== lldb_root
: # dirname('/') == '/'
11 raise Exception("use_lldb_suite_root.py not found")
14 test_path
= os
.path
.join(lldb_root
, "use_lldb_suite_root.py")
15 if os
.path
.isfile(test_path
):
19 lldb_root
= find_lldb_root()
22 fp
, pathname
, desc
= imp
.find_module("use_lldb_suite_root", [lldb_root
])
24 imp
.load_module("use_lldb_suite_root", fp
, pathname
, desc
)