-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch '_prequal_remote/concurrent_map_tests' i…
…nto HEAD
- Loading branch information
Showing
35 changed files
with
202 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
sed -E "s/0x[0-9a-f]*/prediffed/" <$2 >$2.predifftmp | ||
mv $2.predifftmp $2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
This directory is locking down that we currently have a memory leak for | ||
ConcurrentMap. These tests symlink to equivalent correctness tests and can be | ||
removed once this leak is fixed. | ||
|
||
We only symlink to the a subset of these tests where the | ||
allocations/deallocations are deterministic (this should be sufficient for | ||
memory tracking purposes). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../testAddSet.chpl |
24 changes: 24 additions & 0 deletions
24
test/library/packages/ConcurrentMap/memLeaks/testAddSet.good
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{1: -1} | ||
|
||
================================================= Memory Leaks ================================================== | ||
Allocated Memory (Bytes) Number Size Total Description Address | ||
================================================================================================================= | ||
testAddSet.chpl:5 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testAddSet.chpl:3 1 88 88 Buckets(int(64),int(64)) prediffed | ||
testAddSet.chpl:3 1 128 128 [domain(1,int(64),one)] AtomicObject(unmanaged Base(int(64),int(64))?,false,true)prediffed | ||
testAddSet.chpl:3 1 24 24 _token prediffed | ||
testAddSet.chpl:3 1 24 24 _token prediffed | ||
testAddSet.chpl:3 1 24 24 _token prediffed | ||
testAddSet.chpl:3 1 24 24 _token prediffed | ||
testAddSet.chpl:3 1 24 24 _token prediffed | ||
testAddSet.chpl:3 1 24 24 _token prediffed | ||
testAddSet.chpl:32 1 24 24 _token prediffed | ||
testAddSet.chpl:32 1 24 24 _token prediffed | ||
testAddSet.chpl:32 1 24 24 _token prediffed | ||
testAddSet.chpl:32 1 24 24 _token prediffed | ||
testAddSet.chpl:32 1 24 24 _token prediffed | ||
testAddSet.chpl:32 1 24 24 _token prediffed | ||
testAddSet.chpl:3 1024 8 8192 array elements prediffed | ||
testAddSet.chpl:3 1 72 72 domain(1,int(64),one) prediffed | ||
================================================================================================================= | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../testClear.chpl |
23 changes: 23 additions & 0 deletions
23
test/library/packages/ConcurrentMap/memLeaks/testClear.good
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{} | ||
|
||
================================================= Memory Leaks ================================================== | ||
Allocated Memory (Bytes) Number Size Total Description Address | ||
================================================================================================================= | ||
testClear.chpl:4 1 88 88 Buckets(string,int(64)) prediffed | ||
testClear.chpl:4 1 128 128 [domain(1,int(64),one)] AtomicObject(unmanaged Base(string,int(64))?,false,true)prediffed | ||
testClear.chpl:4 1 24 24 _token prediffed | ||
testClear.chpl:4 1 24 24 _token prediffed | ||
testClear.chpl:4 1 24 24 _token prediffed | ||
testClear.chpl:4 1 24 24 _token prediffed | ||
testClear.chpl:4 1 24 24 _token prediffed | ||
testClear.chpl:4 1 24 24 _token prediffed | ||
testClear.chpl:12 1 24 24 _token prediffed | ||
testClear.chpl:12 1 24 24 _token prediffed | ||
testClear.chpl:12 1 24 24 _token prediffed | ||
testClear.chpl:12 1 24 24 _token prediffed | ||
testClear.chpl:12 1 24 24 _token prediffed | ||
testClear.chpl:12 1 24 24 _token prediffed | ||
testClear.chpl:4 1024 8 8192 array elements prediffed | ||
testClear.chpl:4 1 72 72 domain(1,int(64),one) prediffed | ||
================================================================================================================= | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../testEquality.chpl |
86 changes: 86 additions & 0 deletions
86
test/library/packages/ConcurrentMap/memLeaks/testEquality.good
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
true | ||
false | ||
false | ||
true | ||
|
||
================================================= Memory Leaks ================================================== | ||
Allocated Memory (Bytes) Number Size Total Description Address | ||
================================================================================================================= | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:9 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:10 1 160 160 Bucket(int(64),int(64)) prediffed | ||
testEquality.chpl:3 1 88 88 Buckets(int(64),int(64)) prediffed | ||
testEquality.chpl:4 1 88 88 Buckets(int(64),int(64)) prediffed | ||
testEquality.chpl:3 1 128 128 [domain(1,int(64),one)] AtomicObject(unmanaged Base(int(64),int(64))?,false,true)prediffed | ||
testEquality.chpl:4 1 128 128 [domain(1,int(64),one)] AtomicObject(unmanaged Base(int(64),int(64))?,false,true)prediffed | ||
testEquality.chpl:3 1 24 24 _token prediffed | ||
testEquality.chpl:3 1 24 24 _token prediffed | ||
testEquality.chpl:3 1 24 24 _token prediffed | ||
testEquality.chpl:3 1 24 24 _token prediffed | ||
testEquality.chpl:3 1 24 24 _token prediffed | ||
testEquality.chpl:3 1 24 24 _token prediffed | ||
testEquality.chpl:4 1 24 24 _token prediffed | ||
testEquality.chpl:4 1 24 24 _token prediffed | ||
testEquality.chpl:4 1 24 24 _token prediffed | ||
testEquality.chpl:4 1 24 24 _token prediffed | ||
testEquality.chpl:4 1 24 24 _token prediffed | ||
testEquality.chpl:4 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:13 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:14 1 24 24 _token prediffed | ||
testEquality.chpl:19 1 24 24 _token prediffed | ||
testEquality.chpl:19 1 24 24 _token prediffed | ||
testEquality.chpl:19 1 24 24 _token prediffed | ||
testEquality.chpl:19 1 24 24 _token prediffed | ||
testEquality.chpl:19 1 24 24 _token prediffed | ||
testEquality.chpl:19 1 24 24 _token prediffed | ||
testEquality.chpl:20 1 24 24 _token prediffed | ||
testEquality.chpl:20 1 24 24 _token prediffed | ||
testEquality.chpl:20 1 24 24 _token prediffed | ||
testEquality.chpl:20 1 24 24 _token prediffed | ||
testEquality.chpl:20 1 24 24 _token prediffed | ||
testEquality.chpl:20 1 24 24 _token prediffed | ||
testEquality.chpl:3 1024 8 8192 array elements prediffed | ||
testEquality.chpl:4 1024 8 8192 array elements prediffed | ||
testEquality.chpl:3 1 72 72 domain(1,int(64),one) prediffed | ||
testEquality.chpl:4 1 72 72 domain(1,int(64),one) prediffed | ||
================================================================================================================= | ||
|
1 change: 1 addition & 0 deletions
1
test/library/packages/ConcurrentMap/memLeaks/testGetRemove.chpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../testGetRemove.chpl |
26 changes: 26 additions & 0 deletions
26
test/library/packages/ConcurrentMap/memLeaks/testGetRemove.good
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
1 | ||
{two: 2} | ||
|
||
================================================= Memory Leaks ================================================== | ||
Allocated Memory (Bytes) Number Size Total Description Address | ||
================================================================================================================= | ||
testGetRemove.chpl:11 1 416 416 Bucket(string,int(64)) prediffed | ||
testGetRemove.chpl:7 1 88 88 Buckets(string,int(64)) prediffed | ||
testGetRemove.chpl:7 1 128 128 [domain(1,int(64),one)] AtomicObject(unmanaged Base(string,int(64))?,false,true)prediffed | ||
testGetRemove.chpl:7 1 24 24 _token prediffed | ||
testGetRemove.chpl:7 1 24 24 _token prediffed | ||
testGetRemove.chpl:7 1 24 24 _token prediffed | ||
testGetRemove.chpl:7 1 24 24 _token prediffed | ||
testGetRemove.chpl:7 1 24 24 _token prediffed | ||
testGetRemove.chpl:7 1 24 24 _token prediffed | ||
testGetRemove.chpl:16 1 24 24 _token prediffed | ||
testGetRemove.chpl:16 1 24 24 _token prediffed | ||
testGetRemove.chpl:16 1 24 24 _token prediffed | ||
testGetRemove.chpl:16 1 24 24 _token prediffed | ||
testGetRemove.chpl:16 1 24 24 _token prediffed | ||
testGetRemove.chpl:16 1 24 24 _token prediffed | ||
testGetRemove.chpl:7 1024 8 8192 array elements prediffed | ||
testGetRemove.chpl:7 1 72 72 domain(1,int(64),one) prediffed | ||
testGetRemove.chpl:11 1 8 8 string copy data prediffed | ||
================================================================================================================= | ||
|
1 change: 1 addition & 0 deletions
1
test/library/packages/ConcurrentMap/memLeaks/utilFunctions.chpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../utilFunctions.chpl |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
This directory is locking down that we currently have a memory leak for this | ||
module. These tests symlink to equivalent correctness tests and can be removed | ||
once this leak is fixed. | ||
|
||
We only symlink to the a subset of these tests where the | ||
allocations/deallocations are deterministic (this should be sufficient for | ||
memory tracking purposes). |
1 change: 1 addition & 0 deletions
1
test/library/packages/LockFreeQueue/memLeaks/consistencyCheck.chpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../consistencyCheck.chpl |
3 changes: 3 additions & 0 deletions
3
test/library/packages/LockFreeQueue/memLeaks/consistencyCheck.good
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
1024 consistencyCheck.chpl:20 1 24 24 Node prediffed | ||
1 consistencyCheck.chpl:45 1 24 24 Node(int(64)) prediffed | ||
6 consistencyCheck.chpl:9 1 24 24 _token prediffed |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
This directory is locking down that we currently have a memory leak for this | ||
module. These tests symlink to equivalent correctness tests and can be removed | ||
once this leak is fixed. | ||
|
||
We only symlink to the a subset of these tests where the | ||
allocations/deallocations are deterministic (this should be sufficient for | ||
memory tracking purposes). |
1 change: 1 addition & 0 deletions
1
test/library/packages/LockFreeStack/memLeaks/consistencyCheck.chpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../consistencyCheck.chpl |
2 changes: 2 additions & 0 deletions
2
test/library/packages/LockFreeStack/memLeaks/consistencyCheck.good
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
1024 consistencyCheck.chpl:20 1 24 24 Node prediffed | ||
6 consistencyCheck.chpl:9 1 24 24 _token prediffed |