Skip to content

Commit

Permalink
Adjust test printing a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
certik committed Apr 30, 2010
1 parent f171fa0 commit 601226a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test2(in_file):

def test3(in_file):
w = Writer()
w.write("%40s [4]: " % in_file)
w.write("%s [4]: " % in_file)
r = os.system("python %s > /tmp/py.out" % (in_file))
w.write(".")
if r == 0:
Expand Down Expand Up @@ -94,6 +94,7 @@ def main():
"tests/functions/floatdiv.py",
"tests/functions/sort23.py",
]
files.sort()
for file in files:
if options.run_all or file not in known_to_fail:
test3(file)
Expand Down

0 comments on commit 601226a

Please sign in to comment.