Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cduce
cduce
Commits
fc7f9e8b
Commit
fc7f9e8b
authored
Mar 31, 2014
by
Julien Lopez
Browse files
[TESTS][EVAL] Add some tests
parent
8b2c480e
Changes
11
Hide whitespace changes
Inline
Side-by-side
tests/eval/TODO
View file @
fc7f9e8b
...
...
@@ -2,7 +2,9 @@ Syntax:
- "_" as a keyword (?)
Eval:
- Solve the evaluation problems
- Solve the evaluation problems:
- branches type
- make test
Tests:
- Update tests to check the evaluation of CDuce (depends on Eval above)
tests/eval/tests/eval/refs/apply_simple.ref
0 → 100644
View file @
fc7f9e8b
2
tests/eval/tests/eval/refs/apply_simple.res
0 → 100644
View file @
fc7f9e8b
0
tests/eval/tests/eval/refs/let_medium.ref
0 → 100644
View file @
fc7f9e8b
5
tests/eval/tests/eval/refs/let_medium.res
0 → 100644
View file @
fc7f9e8b
0
tests/eval/tests/eval/refs/let_nested_simple.ref
0 → 100644
View file @
fc7f9e8b
2
tests/eval/tests/eval/refs/let_nested_simple.res
0 → 100644
View file @
fc7f9e8b
0
tests/eval/tests/eval/tests/apply_simple.test
0 → 100644
View file @
fc7f9e8b
(
fun
f
x
->
x
)
.2
tests/eval/tests/eval/tests/let_medium.test
0 → 100644
View file @
fc7f9e8b
let
x
=
5
in
(
fun
f
y
->
x
)
.2
tests/eval/tests/eval/tests/let_nested_simple.test
0 → 100644
View file @
fc7f9e8b
let
x
=
2
in
let
y
=
x
in
y
tests/eval/tests/eval/tests/let_simple.test
View file @
fc7f9e8b
let
x
=
2
in
2
let
x
=
2
in
x
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment