Skip to content

Commit be79db9

Browse files
committed
[Dexter] Continue sprinking no-location fixes
Example failure: http://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/3255/testReport/junit/debuginfo-tests/dexter-tests/asan_c/ The tests themselves seem to be working, it's just unexplored paths within dexter that are flaking out.
1 parent 0aed36d commit be79db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debuginfo-tests/dexter/dex/command/commands/DexExpectWatchBase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def eval(self, step_collection):
168168
for step in step_collection.steps:
169169
loc = step.current_location
170170

171-
if (loc and os.path.exists(loc.path) and
171+
if (loc.path and os.path.exists(loc.path) and
172172
os.path.exists(self.path) and
173173
os.path.samefile(loc.path, self.path) and
174174
loc.lineno in self.line_range):

0 commit comments

Comments
 (0)