Skip to content

Commit

Permalink
TestDerivs: replace abort() since it doesn't work on device
Browse files Browse the repository at this point in the history
  • Loading branch information
lwJi committed Dec 24, 2024
1 parent 581d281 commit 9f74f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TestDerivs/src/test.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ extern "C" void TestDerivs_CalcDerivs(CCTK_ARGUMENTS) {
printf("ddyz = %f\n", ddchi(1, 2) - gf_ddchi(1, 2)(p.I));
printf("ddzz = %f\n", ddchi(2, 2) - gf_ddchi(2, 2)(p.I));
#endif
abort();
assert(0);
}
});
#endif
Expand Down

0 comments on commit 9f74f22

Please sign in to comment.