Skip to content

Commit 3200980

Browse files
authored
Merge pull request #953 from ACSimon33/test_memory_leak
Fixed memory leak in testing framework
2 parents af77ebf + 3d2b9cb commit 3200980

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

TESTING/LIN/cchkaa.F

+2
Original file line numberDiff line numberDiff line change
@@ -1232,6 +1232,8 @@ PROGRAM CCHKAA
12321232
*
12331233
DEALLOCATE (A, STAT = AllocateStatus)
12341234
DEALLOCATE (B, STAT = AllocateStatus)
1235+
DEALLOCATE (E, STAT = AllocateStatus)
1236+
DEALLOCATE (S, STAT = AllocateStatus)
12351237
DEALLOCATE (WORK, STAT = AllocateStatus)
12361238
DEALLOCATE (RWORK, STAT = AllocateStatus)
12371239
*

TESTING/LIN/dchkaa.F

+2
Original file line numberDiff line numberDiff line change
@@ -1076,6 +1076,8 @@ PROGRAM DCHKAA
10761076
*
10771077
DEALLOCATE (A, STAT = AllocateStatus)
10781078
DEALLOCATE (B, STAT = AllocateStatus)
1079+
DEALLOCATE (E, STAT = AllocateStatus)
1080+
DEALLOCATE (S, STAT = AllocateStatus)
10791081
DEALLOCATE (WORK, STAT = AllocateStatus)
10801082
DEALLOCATE (RWORK, STAT = AllocateStatus)
10811083
*

TESTING/LIN/schkaa.F

+2
Original file line numberDiff line numberDiff line change
@@ -1070,6 +1070,8 @@ PROGRAM SCHKAA
10701070
*
10711071
DEALLOCATE (A, STAT = AllocateStatus)
10721072
DEALLOCATE (B, STAT = AllocateStatus)
1073+
DEALLOCATE (E, STAT = AllocateStatus)
1074+
DEALLOCATE (S, STAT = AllocateStatus)
10731075
DEALLOCATE (WORK, STAT = AllocateStatus)
10741076
DEALLOCATE (RWORK, STAT = AllocateStatus)
10751077
*

TESTING/LIN/zchkaa.F

+2
Original file line numberDiff line numberDiff line change
@@ -1268,6 +1268,8 @@ PROGRAM ZCHKAA
12681268
*
12691269
DEALLOCATE (A, STAT = AllocateStatus)
12701270
DEALLOCATE (B, STAT = AllocateStatus)
1271+
DEALLOCATE (E, STAT = AllocateStatus)
1272+
DEALLOCATE (S, STAT = AllocateStatus)
12711273
DEALLOCATE (RWORK, STAT = AllocateStatus)
12721274
DEALLOCATE (WORK, STAT = AllocateStatus)
12731275
*

0 commit comments

Comments
 (0)