X-Git-Url: https://git.distorted.org.uk/~mdw/sod/blobdiff_plain/8d1d7d3eb07fe738fe5458acee84ef84919638ce..20f9c2138bd3af831e59c0256b3fb99a0692adad:/test/Makefile.am diff --git a/test/Makefile.am b/test/Makefile.am index 300ad69..5c4d59d 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -7,7 +7,7 @@ ###----- Licensing notice --------------------------------------------------- ### -### This file is part of the Sensble Object Design, an object system for C. +### This file is part of the Sensible Object Design, an object system for C. ### ### SOD is free software; you can redistribute it and/or modify ### it under the terms of the GNU General Public License as published by @@ -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 --------------------------------------------------