Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Only call termination message on image 1
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Apr 21, 2023
1 parent ab6b619 commit 68c7596
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/swiftest/swiftest_driver.f90
Original file line number Diff line number Diff line change
Expand Up @@ -190,5 +190,11 @@ program swiftest_driver

end associate

call base_util_exit(SUCCESS)
#ifdef COARRAY
if (this_image() == 1) then
#endif
call base_util_exit(SUCCESS)
#ifdef COARRAY
end if ! (this_image() == 1)
#endif
end program swiftest_driver

0 comments on commit 68c7596

Please sign in to comment.