Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Nov 17, 2023
1 parent a48e214 commit 26d2943
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ class PassTests {
),
input = {
(init to "L1") {
assume("true")
assume("1 == 1")
}
("L1" to final) {
assume("false")
}
},
output = {
(init to final) {
assume("true")
assume("1 == 1")
assume("false")
}
},
Expand All @@ -119,10 +119,10 @@ class PassTests {
),
input = {
(init to "L1") {
assume("true")
assume("1 == 1")
}
("L1" to "L2") {
assume("true")
assume("1 == 1")
}
("L2" to final) {
assume("false")
Expand All @@ -133,8 +133,8 @@ class PassTests {
},
output = {
(init to final) {
assume("true")
assume("true")
assume("1 == 1")
assume("1 == 1")
nondet {
assume("false")
assume("1 == 2")
Expand Down Expand Up @@ -343,10 +343,10 @@ class PassTests {
),
input = {
(init to "L1") {
assume("true")
assume("1 == 1")
}
(init to "L2") {
assume("true")
assume("1 == 1")
}
("L2" to "L3") {
assume("false")
Expand Down Expand Up @@ -470,7 +470,7 @@ class PassTests {
),
input = {
("L1" to "L1") {
assume("true")
assume("1 == 1")
}
},
output = null,
Expand Down Expand Up @@ -522,7 +522,7 @@ class PassTests {
}
procedure("proc1") {
(init to final) {
assume("true")
assume("1 == 1")
}
}
}
Expand All @@ -542,7 +542,7 @@ class PassTests {
}
procedure("proc1") {
(init to final) {
assume("true")
assume("1 == 1")
}
}
}
Expand All @@ -558,9 +558,9 @@ class PassTests {
val xcfaSource = xcfa("example") {
procedure("main", CPasses(false, parseContext, NullLogger.getInstance())) {
edge = (init to final) {
assume("true")
assume("1 == 1")
"proc1"()
assume("true")
assume("1 == 1")
}
}
}
Expand Down

0 comments on commit 26d2943

Please sign in to comment.