blob: d839ff3492af9331010ca9814b584a9438026b59 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# The test programs.
# The Libtool executable.
GUILE_VM = $(top_builddir)/src/guile-vm
vm_test_files = \
t-basic-contructs.scm \
t-global-bindings.scm \
t-closure.scm \
t-closure2.scm \
t-closure3.scm \
t-do-loop.scm \
t-macros.scm \
t-macros2.scm \
t-proc-with-setter.scm \
t-values.scm \
t-records.scm \
t-match.scm \
t-mutual-toplevel-defines.scm
EXTRA_DIST = run-vm-tests.scm $(vm_test_files)
check:
$(GUILE_VM) -L $(top_srcdir)/module \
-l run-vm-tests.scm -e run-vm-tests \
$(vm_test_files)
|