Index: test/use_lldb_suite.py =================================================================== --- test/use_lldb_suite.py +++ test/use_lldb_suite.py @@ -1,10 +1,11 @@ import inspect import os -import sys def find_lldb_root(): - lldb_root = os.path.dirname(inspect.getfile(inspect.currentframe())) + lldb_root = os.path.dirname( + os.path.abspath(inspect.getfile(inspect.currentframe())) + ) while True: lldb_root = os.path.dirname(lldb_root) if lldb_root is None: @@ -15,6 +16,7 @@ return lldb_root return None + lldb_root = find_lldb_root() if lldb_root is not None: import imp