diff --git a/test/unstable/Map/parSafe.chpl b/test/unstable/Map/parSafe.chpl index e4c7d72ef977..863203d8848a 100644 --- a/test/unstable/Map/parSafe.chpl +++ b/test/unstable/Map/parSafe.chpl @@ -17,3 +17,4 @@ var m8 = new map(string,int,parSafe=false); m7.addOrReplace("a",1); m8["a"] = 1; +writeln(m7.parSafe == true); \ No newline at end of file diff --git a/test/unstable/Map/parSafe.good b/test/unstable/Map/parSafe.good index 43574e67396b..888b4d3d36f6 100644 --- a/test/unstable/Map/parSafe.good +++ b/test/unstable/Map/parSafe.good @@ -4,3 +4,5 @@ parSafe.chpl:12: warning: 'map.parSafe' is unstable and is expected to be replac parSafe.chpl:13: warning: 'map.parSafe' is unstable and is expected to be replaced by a separate map type in the future parSafe.chpl:15: warning: 'map.parSafe' is unstable and is expected to be replaced by a separate map type in the future parSafe.chpl:16: warning: 'map.parSafe' is unstable and is expected to be replaced by a separate map type in the future +parSafe.chpl:20: warning: 'map.parSafe' is unstable and is expected to be replaced by a separate map type in the future +true diff --git a/test/unstable/Set/parSafe.chpl b/test/unstable/Set/parSafe.chpl index 173485a20825..2792aa45abb7 100644 --- a/test/unstable/Set/parSafe.chpl +++ b/test/unstable/Set/parSafe.chpl @@ -23,3 +23,4 @@ var v = new Values(); var s7 = new set(int, v, parSafe=true); var s8 = new set(int, v, parSafe=false); +writeln(s7.parSafe == true); \ No newline at end of file diff --git a/test/unstable/Set/parSafe.good b/test/unstable/Set/parSafe.good index 419b64b2356f..1e0be5f5a691 100644 --- a/test/unstable/Set/parSafe.good +++ b/test/unstable/Set/parSafe.good @@ -4,3 +4,5 @@ parSafe.chpl:12: warning: 'set.parSafe' is unstable and is expected to be replac parSafe.chpl:13: warning: 'set.parSafe' is unstable and is expected to be replaced by a separate set type in the future parSafe.chpl:24: warning: 'set.parSafe' is unstable and is expected to be replaced by a separate set type in the future parSafe.chpl:25: warning: 'set.parSafe' is unstable and is expected to be replaced by a separate set type in the future +parSafe.chpl:26: warning: 'set.parSafe' is unstable and is expected to be replaced by a separate set type in the future +true