Skip to content
Snippets Groups Projects
Commit f7ccd897 authored by Bram Veenboer's avatar Bram Veenboer
Browse files

COB-121: Fix exit status for tSubbandProcPerformance_compare.py

parent 8796353a
No related branches found
No related tags found
1 merge request!436COB-148: Enable NVRTC for CUDA kernel compilation
......@@ -126,5 +126,7 @@ else:
print(" none")
# Determine exit status and exit
status = len(failed) > 0 or len(missing) > 0
exit(status)
\ No newline at end of file
if (len(failed) > 0 or len(missing) > 0):
exit(1)
else:
exit(0)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment