Skip to content

Commit

Permalink
Promote test
Browse files Browse the repository at this point in the history
Mostly changes due to expression simplification
  • Loading branch information
filipeom committed Apr 25, 2024
1 parent 4c2bad4 commit 5c8983a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions test/test_saf.t
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,12 @@ Tests Model ArrayFork:
$_descending

>Program Print
(int.add (int.add $_descending 3) 10)
(int.add $_descending 13)

>Program Print
(int.add (int.add (int.add $_descending 3) 10) 1)
(int.add $_descending 14)

Returned (int.add (int.add $_descending 3) 10)
Returned (int.add $_descending 13)
Everything Ok!

=====================
Expand Down
6 changes: 3 additions & 3 deletions test/test_saite.t
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ Tests Model ArrayITE:
$_descending

>Program Print
(int.add (int.add $_descending 3) 10)
(int.add $_descending 13)

>Program Print
(int.add (int.add (int.add $_descending 3) 10) 1)
(int.add $_descending 14)

Returned (int.add (int.add $_descending 3) 10)
Returned (int.add $_descending 13)
Everything Ok!

=====================
Expand Down
6 changes: 3 additions & 3 deletions test/test_sh.t
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ Tests Model Hierarchy Heap using WriteLists:
$_descending

>Program Print
(int.add (int.add $_descending 3) 10)
(int.add $_descending 13)

>Program Print
(int.add (int.add (int.add $_descending 3) 10) 1)
(int.add $_descending 14)

Returned (int.add (int.add $_descending 3) 10)
Returned (int.add $_descending 13)
Everything Ok!

=====================
Expand Down
6 changes: 3 additions & 3 deletions test/test_sopl.t
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ Tests Model WriteLists:
$_descending

>Program Print
(int.add (int.add $_descending 3) 10)
(int.add $_descending 13)

>Program Print
(int.add (int.add (int.add $_descending 3) 10) 1)
(int.add $_descending 14)

Returned (int.add (int.add $_descending 3) 10)
Returned (int.add $_descending 13)
Everything Ok!

=====================
Expand Down
8 changes: 4 additions & 4 deletions test/test_st.t
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,12 @@ Tests Model Tree:
$_descending

>Program Print
(int.add (int.add $_descending 3) 10)
(int.add $_descending 13)

>Program Print
(int.add (int.add (int.add $_descending 3) 10) 1)
(int.add $_descending 14)

Returned (int.add (int.add $_descending 3) 10)
Returned (int.add $_descending 13)
Everything Ok!

=====================
Expand Down Expand Up @@ -436,7 +436,7 @@ Tests Model Tree:
Execution mode: st

>Program Print
(bool.ite (bool.and true true) 5 0)
5

Returned 0
Everything Ok!
Expand Down

0 comments on commit 5c8983a

Please sign in to comment.