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: ...@@ -126,5 +126,7 @@ else:
print(" none") print(" none")
# Determine exit status and exit # Determine exit status and exit
status = len(failed) > 0 or len(missing) > 0 if (len(failed) > 0 or len(missing) > 0):
exit(status) exit(1)
\ No newline at end of file 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