Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 890eb76

Browse files
committed
add support for Depends: @
1 parent 4616880 commit 890eb76

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

adt-runscript.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,10 @@ def add_depends(self, d):
9595
gottest = True
9696
if k == "Depends":
9797
assert gottest
98-
tests[-1].add_depends(v)
98+
if v == "@":
99+
tests[-1].add_depends(", ".join(loc_pkg_names))
100+
else:
101+
tests[-1].add_depends(v)
99102
gottest = False
100103

101104

0 commit comments

Comments
 (0)