Skip to content

Commit

Permalink
maybe it's succeeding?
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed Sep 19, 2024
1 parent 22c41c1 commit 1a0353c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ def run_tests(env,target,source):
app = f'build/test/{app}'
else:
app = f'./{app}'
print('calling')
exit_code = subprocess.call(app, cwd=cwd)
print(f'called, exit code {exit_code}')
if exit_code == 0:
open(target[0].abspath,'w').write("PASSED\n")
else:
Expand Down

0 comments on commit 1a0353c

Please sign in to comment.