Skip to content

Commit 4c15269

Browse files
author
Zachary Turner
committed
Remove lldb.root and just look for the file we care about.
llvm-svn: 253679
1 parent 543cb4c commit 4c15269

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

lldb/lldb.root

Whitespace-only changes.

lldb/packages/Python/lldbsuite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def find_lldb_root():
1111
if lldb_root is None:
1212
return None
1313

14-
test_path = os.path.join(lldb_root, "lldb.root")
14+
test_path = os.path.join(lldb_root, "use_lldb_suite_root.py")
1515
if os.path.isfile(test_path):
1616
return lldb_root
1717
return None

lldb/scripts/Python/use_lldb_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def find_lldb_root():
99
if lldb_root is None:
1010
return None
1111

12-
test_path = os.path.join(lldb_root, "lldb.root")
12+
test_path = os.path.join(lldb_root, "use_lldb_suite_root.py")
1313
if os.path.isfile(test_path):
1414
return lldb_root
1515
return None

lldb/scripts/use_lldb_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def find_lldb_root():
99
if lldb_root is None:
1010
return None
1111

12-
test_path = os.path.join(lldb_root, "lldb.root")
12+
test_path = os.path.join(lldb_root, "use_lldb_suite_root.py")
1313
if os.path.isfile(test_path):
1414
return lldb_root
1515
return None

lldb/test/use_lldb_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def find_lldb_root():
99
if lldb_root is None:
1010
return None
1111

12-
test_path = os.path.join(lldb_root, "lldb.root")
12+
test_path = os.path.join(lldb_root, "use_lldb_suite_root.py")
1313
if os.path.isfile(test_path):
1414
return lldb_root
1515
return None

0 commit comments

Comments
 (0)