Skip to content

Commit

Permalink
Merge pull request #985 from parthenon-hpc-lab/jmm/final-vibe-check
Browse files Browse the repository at this point in the history
[trivial] vibe include sys.exit
  • Loading branch information
Yurlungur authored Dec 14, 2023
2 parents ba8a587 + 757c21d commit 0072037
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benchmarks/burgers/burgers_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# the public, perform publicly and display publicly, and to permit others to do so.
# ========================================================================================

import sys
import numpy as np
from argparse import ArgumentParser

Expand Down Expand Up @@ -53,4 +54,4 @@ def compare_files(file1, file2, tolerance, print_results=True):

if __name__ == "__main__":
args = parser.parse_args()
compare_files(args.file1, args.file1, args.tolerance, True)
sys.exit(compare_files(args.file1, args.file1, args.tolerance, True))

0 comments on commit 0072037

Please sign in to comment.