@@ -47,7 +47,7 @@ ExclusiveAccessTestSuite.test("ModifyInsideRead")
47
47
. skip ( . custom(
48
48
{ _isFastAssertConfiguration ( ) } ,
49
49
reason: " this trap is not guaranteed to happen in -Ounchecked " ) )
50
- . crashOutputMatches ( " modify/ read access conflict detected on address" )
50
+ . crashOutputMatches ( " read/modify access conflict detected on address " )
51
51
. code
52
52
{
53
53
readAndPerform ( & globalX) {
@@ -60,7 +60,7 @@ ExclusiveAccessTestSuite.test("ReadInsideModify")
60
60
. skip ( . custom(
61
61
{ _isFastAssertConfiguration ( ) } ,
62
62
reason: " this trap is not guaranteed to happen in -Ounchecked " ) )
63
- . crashOutputMatches ( " read/ modify access conflict detected on address" )
63
+ . crashOutputMatches ( " modify/read access conflict detected on address " )
64
64
. code
65
65
{
66
66
modifyAndPerform ( & globalX) {
@@ -129,7 +129,7 @@ ExclusiveAccessTestSuite.test("ModifyFollowedByModify") {
129
129
//.skip(.custom(
130
130
// { _isFastAssertConfiguration() },
131
131
// reason: "this trap is not guaranteed to happen in -Ounchecked"))
132
- // .crashOutputMatches("read/ modify access conflict detected on address")
132
+ // .crashOutputMatches("modify/read access conflict detected on address")
133
133
// .code
134
134
//{
135
135
// var x = X()
@@ -148,7 +148,7 @@ ExclusiveAccessTestSuite.test("ModifyFollowedByModify") {
148
148
//.skip(.custom(
149
149
// { _isFastAssertConfiguration() },
150
150
// reason: "this trap is not guaranteed to happen in -Ounchecked"))
151
- // .crashOutputMatches("modify/ read access conflict detected on address")
151
+ // .crashOutputMatches("read/modify access conflict detected on address")
152
152
// .code
153
153
//{
154
154
// var x = X()
0 commit comments