chiark / gitweb /
src/module-parse.lisp: Catch errors during class-item construction.
[sod] / test / Makefile.am
index abd524e3b7b4de9e286e1f6becc75b58e7cb7823..5c4d59d37ebd2cf2ee91f9a7c35ea6665dfebb41 100644 (file)
@@ -40,4 +40,22 @@ check-local:: chimaera chimaera.ref
        ./chimaera >chimaera.out
        diff -u $(srcdir)/chimaera.ref chimaera.out
 
+###--------------------------------------------------------------------------
+### Other tests.
+
+TESTS                  += test
+check_PROGRAMS         += test
+
+EXTRA_DIST             += test.sod
+nodist_test_SOURCES     = test.c test.h
+BUILT_SOURCES          += $(nodist_test_SOURCES)
+
+check_PROGRAMS         += kwtest
+
+EXTRA_DIST             += kwtest.ref
+CLEANFILES             += kwtest.out
+check-local:: kwtest kwtest.ref
+       ./kwtest >kwtest.out
+       diff -u $(srcdir)/kwtest.ref kwtest.out
+
 ###----- That's all, folks --------------------------------------------------