Skip to content

Commit

Permalink
Update winfstests.py
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewc12 committed Aug 4, 2023
1 parent aba091c commit 9842688
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions contrib/windows/tests/winfstests.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def main():

with open(str(p.joinpath("winfs.log")), "w") as log_file:

for test in ['.\\t\\base\\00.t']:
for test in ['.\\t\\base\\00.t', '.\\t\\base\\01.t']:
preTest(str(test) + " tests:")
f = PureWindowsPath(get_driveletters()[0][1])
ret = runWithPrint(["python3.exe", str(test)])
Expand All @@ -225,8 +225,9 @@ def main():

print(ret.stdout.decode())

out = " ".join([str(test),
ret.stdout.decode().splitlines()[-1]])
#out = " ".join([str(test),
# ret.stdout.decode().splitlines()[-1]])
out = str(test) + "\n" + "\n".join(ret.stdout.decode().splitlines())

print(out)
log_file.write(out)
Expand Down

0 comments on commit 9842688

Please sign in to comment.