Skip to content

Commit

Permalink
Update ifstest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewc12 committed Aug 5, 2023
1 parent bea427e commit 8adcb30
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions contrib/windows/tests/ifstest.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,13 @@ def main():
print(ret.stdout.decode())

lines = ret.stdout.decode().splitlines()
outlines = lines[13:]

outlines = []
ignoreflag = True
for line in lines[13:]:
if "------------------" in line:
outlines.append("\n")
else:
outlines.append(line)


out = str(test) + "\n" + "\n".join(outlines)
Expand Down

0 comments on commit 8adcb30

Please sign in to comment.