From: Martin R. <ru...@us...> - 2010-04-26 15:47:00
|
Update of /cvsroot/foo/fooelk In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv11005 Modified Files: .gitignore configure.ac Log Message: equiv to revision level r275 of original elk: Move all tests to a single directory for 'make check' Index: configure.ac =================================================================== RCS file: /cvsroot/foo/fooelk/configure.ac,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** configure.ac 26 Apr 2010 15:41:07 -0000 1.15 --- configure.ac 26 Apr 2010 15:46:51 -0000 1.16 *************** *** 677,681 **** dnl Finished! dnl ! AC_OUTPUT([ Makefile doc/Makefile --- 677,681 ---- dnl Finished! dnl ! AC_CONFIG_FILES([ Makefile doc/Makefile *************** *** 693,697 **** doc/xt/Makefile examples/Makefile - examples/tests/Makefile include/Makefile lib/Makefile --- 693,696 ---- *************** *** 706,713 **** src/Makefile test/Makefile ! scm/slib.scm include/site.h ]) cat << EOF --- 705,718 ---- src/Makefile test/Makefile ! ]) ! AC_CONFIG_FILES([ scm/slib.scm include/site.h ]) + AC_CONFIG_FILES([test/check-gc], [chmod 0755 test/check-gc]) + AC_CONFIG_FILES([test/check-gc2], [chmod 0755 test/check-gc2]) + AC_CONFIG_FILES([test/check-r4rs], [chmod 0755 test/check-r4rs]) + + AC_OUTPUT cat << EOF Index: .gitignore =================================================================== RCS file: /cvsroot/foo/fooelk/.gitignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .gitignore 26 Apr 2010 15:41:07 -0000 1.1 --- .gitignore 26 Apr 2010 15:46:51 -0000 1.2 *************** *** 23,26 **** --- 23,29 ---- include/site.h scm/slib.scm + test/check-gc + test/check-gc2 + test/check-r4rs # Build-generated files src/elk |