mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 17:10:22 +03:00
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
############################################
|
|
# Preamble
|
|
############################################
|
|
|
|
CATALA=dune exec --no-print-director ../src/catala.exe -- Interpret
|
|
|
|
tests: $(wildcard */*.catala)
|
|
|
|
# Forces all the tests to be redone
|
|
.FORCE:
|
|
*/*.catala: .FORCE
|
|
|
|
interpret_with_scope =\
|
|
-$(CATALA) $(if $(filter $(1),nv),,-l $(1)) $@ -s $(2)
|
|
|
|
interpret_with_scope_and_compare =\
|
|
$(CATALA) $(if $(filter $(1),nv),,-l $(1)) --unstyled $@ -s $(2) 2>&1 | \
|
|
colordiff -u -b $@.$(2).out -
|
|
|
|
############################################
|
|
# Tests have to be registered here
|
|
############################################
|
|
|
|
test_bool/test_bool.catala:
|
|
$(call interpret_with_scope_and_compare,nv,TestBool)
|
|
|
|
test_func/recursive.catala:
|
|
$(call interpret_with_scope_and_compare,nv,RecursiveFunc)
|
|
test_func/func.catala:
|
|
$(call interpret_with_scope_and_compare,nv,S)
|
|
$(call interpret_with_scope_and_compare,nv,R)
|
|
|
|
test_scope/cyclic_scopes.catala:
|
|
$(call interpret_with_scope_and_compare,nv,A)
|
|
test_scope/scope.catala:
|
|
$(call interpret_with_scope_and_compare,nv,A)
|
|
test_scope/cycle_in_scope.catala:
|
|
$(call interpret_with_scope_and_compare,nv,A)
|
|
test_scope/sub_scope.catala:
|
|
$(call interpret_with_scope_and_compare,nv,A)
|
|
$(call interpret_with_scope_and_compare,nv,B)
|
|
test_scope/sub_sub_scope.catala:
|
|
$(call interpret_with_scope_and_compare,nv,A)
|
|
$(call interpret_with_scope_and_compare,nv,B)
|
|
$(call interpret_with_scope_and_compare,nv,C)
|
|
test_scope/grand_parent_caller.catala:
|
|
$(call interpret_with_scope_and_compare,nv,A)
|
|
$(call interpret_with_scope_and_compare,nv,B)
|
|
$(call interpret_with_scope_and_compare,nv,C)
|
|
test_scope/sub_vars_in_sub_var.catala:
|
|
$(call interpret_with_scope_and_compare,nv,A)
|
|
|
|
test_struct/simple.catala:
|
|
$(call interpret_with_scope,nv,A)
|