object file is too small. * doc/guile-vm.texi: Documented `make-closure'. Improved the documentation of `load-program'. * testsuite: New directory. * configure.in: Added `testsuite/Makefile' to `AC_OUTPUT'. * Makefile.am (SUBDIRS): Added `testsuite'. * src/vm_engine.h (VM_CHECK_OBJECT): New option. (CHECK_OBJECT): New macro. * src/vm_system.c (object-ref): Use VM_CHECK_OBJECT. * module/system/vm/assemble.scm (preprocess): Commented out the debugging code. * benchmark/lib.scm (do-loop): New procedure. git-archimport-id: lcourtes@laas.fr--2005-mobile/guile-vm--mobile--0.6--patch-2
24 lines
538 B
Makefile
24 lines
538 B
Makefile
# The test programs.
|
|
|
|
# The Libtool executable.
|
|
GUILE_VM = $(top_srcdir)/src/guile-vm
|
|
|
|
vm_test_files = \
|
|
t-global-bindings.scm \
|
|
t-closure.scm \
|
|
t-closure2.scm \
|
|
t-closure3.scm \
|
|
t-do-loop.scm \
|
|
t-macros.scm \
|
|
t-proc-with-setter.scm \
|
|
t-values.scm \
|
|
t-records.scm \
|
|
t-match.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)
|