test: add all plutus conformance tests

This commit is contained in:
rvcas
2023-11-15 00:07:00 -05:00
committed by Lucas
parent b80db2f7f8
commit b6f6064aaf
880 changed files with 5384 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
-- empty constr
(program 1.1.0
(constr 0 )
)

View File

@@ -0,0 +1 @@
(program 1.1.0 (constr 0))

View File

@@ -0,0 +1,4 @@
-- constr with an argument
(program 1.1.0
(constr 0 (con integer 1))
)

View File

@@ -0,0 +1 @@
(program 1.1.0 (constr 0 (con integer 1)))

View File

@@ -0,0 +1,4 @@
-- constr can have arbitrary terms in it
(program 1.1.0
(constr 1 (con integer 1) (lam x x) (constr 0 (con integer 1)))
)

View File

@@ -0,0 +1 @@
(program 1.1.0 (constr 1 (con integer 1) (lam x x) (constr 0 (con integer 1))))

View File

@@ -0,0 +1,4 @@
-- constr is strict in all its arguments
(program 1.1.0
(constr 0 (error))
)

View File

@@ -0,0 +1 @@
evaluation failure

View File

@@ -0,0 +1,4 @@
-- constr is strict in all its arguments
(program 1.1.0
(constr 0 (con integer 1) (error))
)

View File

@@ -0,0 +1 @@
evaluation failure

View File

@@ -0,0 +1,4 @@
-- constr can't be used before 1.1.0
(program 1.0.0
(constr 0 )
)