From 1a0353c3526850b299c29c0f16de40728ddfe58c Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Wed, 18 Sep 2024 21:41:50 -0500 Subject: [PATCH] maybe it's succeeding? --- test/SConscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/SConscript b/test/SConscript index d16167af0..beb4e0983 100644 --- a/test/SConscript +++ b/test/SConscript @@ -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: