Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed memory leak in testing framework (?chkaa.F)
  • Loading branch information
ACSimon33 committed Nov 29, 2023
commit 3d2b9cbdcdfdde9f42d5de5ffe72893cd10b7c3f
2 changes: 2 additions & 0 deletions TESTING/LIN/cchkaa.F
Original file line number Diff line number Diff line change
Expand Up @@ -1232,6 +1232,8 @@ PROGRAM CCHKAA
*
DEALLOCATE (A, STAT = AllocateStatus)
DEALLOCATE (B, STAT = AllocateStatus)
DEALLOCATE (E, STAT = AllocateStatus)
DEALLOCATE (S, STAT = AllocateStatus)
DEALLOCATE (WORK, STAT = AllocateStatus)
DEALLOCATE (RWORK, STAT = AllocateStatus)
*
Expand Down
2 changes: 2 additions & 0 deletions TESTING/LIN/dchkaa.F
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,8 @@ PROGRAM DCHKAA
*
DEALLOCATE (A, STAT = AllocateStatus)
DEALLOCATE (B, STAT = AllocateStatus)
DEALLOCATE (E, STAT = AllocateStatus)
DEALLOCATE (S, STAT = AllocateStatus)
DEALLOCATE (WORK, STAT = AllocateStatus)
DEALLOCATE (RWORK, STAT = AllocateStatus)
*
Expand Down
2 changes: 2 additions & 0 deletions TESTING/LIN/schkaa.F
Original file line number Diff line number Diff line change
Expand Up @@ -1070,6 +1070,8 @@ PROGRAM SCHKAA
*
DEALLOCATE (A, STAT = AllocateStatus)
DEALLOCATE (B, STAT = AllocateStatus)
DEALLOCATE (E, STAT = AllocateStatus)
DEALLOCATE (S, STAT = AllocateStatus)
DEALLOCATE (WORK, STAT = AllocateStatus)
DEALLOCATE (RWORK, STAT = AllocateStatus)
*
Expand Down
2 changes: 2 additions & 0 deletions TESTING/LIN/zchkaa.F
Original file line number Diff line number Diff line change
Expand Up @@ -1268,6 +1268,8 @@ PROGRAM ZCHKAA
*
DEALLOCATE (A, STAT = AllocateStatus)
DEALLOCATE (B, STAT = AllocateStatus)
DEALLOCATE (E, STAT = AllocateStatus)
DEALLOCATE (S, STAT = AllocateStatus)
DEALLOCATE (RWORK, STAT = AllocateStatus)
DEALLOCATE (WORK, STAT = AllocateStatus)
*
Expand Down