Skip to content

Commit

Permalink
added line to both tests and updated good file
Browse files Browse the repository at this point in the history
Signed-off-by: Iain Moncrief <[email protected]>
  • Loading branch information
Iainmon committed Jul 20, 2023
1 parent daa13bd commit b1c6b62
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/unstable/Map/parSafe.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ var m8 = new map(string,int,parSafe=false);

m7.addOrReplace("a",1);
m8["a"] = 1;
writeln(m7.parSafe == true);
2 changes: 2 additions & 0 deletions test/unstable/Map/parSafe.good
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions test/unstable/Set/parSafe.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -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);
2 changes: 2 additions & 0 deletions test/unstable/Set/parSafe.good
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b1c6b62

Please sign in to comment.