[lldb][test] Prevent infinite loop while looking for use_lldb_suite_root.py.
Several scripts (two copies of use_lldb_suite.py, and an __init__.py) look for use_lldb_suite_root.py by checking parent directories. If for some reason it doesn't exist, it keeps checking parent directories until it finds it. However, this only breaks when the parent directory is None, but at least on Linux, dirname('/') == '/', so this will never be None. This changes the lookup to stop if the dirname(lldb_root) is unchanged. This was previously fixed in 67f6d842, but only in one copy of this script. Additionally, this makes the failure mode more visible -- if the root is not found, it complains loudly instead of silently failing, and having later modules that need lldb_root fail. Differential Revision: https://reviews.llvm.org/D83840
Loading
Please register or sign in to comment