Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Aug 25, 2020
1 parent da159f7 commit 8bd6079
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/python/iutest_compile_error_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,9 +492,6 @@ def iutest(l):
for msg in unexpected:
test_result(False, "Unexpected error: " + msg.message, msg)
result = False
if not result:
if self.verbose:
dump_list(l)
return result


Expand Down Expand Up @@ -530,8 +527,11 @@ def parse_output(options):
dump_list(l)
if options.passthrough:
print('----')
return iutest(l)

result = iutest(l)
if not result:
if self.verbose:
dump_list(l)
return result

def setup():
global color_prompt
Expand Down

0 comments on commit 8bd6079

Please sign in to comment.