mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* check-guile.in: use @srcdir@ instead of @test_suite_dir@. use
the current directory (build dir) not srcdir to find guile executable. otherwise "make check" doesn't work with a separate build directory. create the test log in $build_dir/check-guile.log instead of in srcdir/test-suite directory. * configure.in: don't define or substitute test_suite_dir. * guile-test: use #!/bogus-path/..., not #!/home/dirk/... in the first line.
This commit is contained in:
parent
6d163216bd
commit
51cfd7da2c
5 changed files with 22 additions and 9 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2001-03-18 Gary Houston <ghouston@arglist.com>
|
||||||
|
|
||||||
|
* check-guile.in: use @srcdir@ instead of @test_suite_dir@. use
|
||||||
|
the current directory (build dir) not srcdir to find guile
|
||||||
|
executable. otherwise "make check" doesn't work with a separate
|
||||||
|
build directory. create the test log in
|
||||||
|
$build_dir/check-guile.log instead of in srcdir/test-suite
|
||||||
|
directory.
|
||||||
|
* configure.in: don't define or substitute test_suite_dir.
|
||||||
|
|
||||||
2001-03-17 Gary Houston <ghouston@arglist.com>
|
2001-03-17 Gary Houston <ghouston@arglist.com>
|
||||||
|
|
||||||
* configure.in: don't append threads.doc to EXTRA_DOT_DOC_FILES,
|
* configure.in: don't append threads.doc to EXTRA_DOT_DOC_FILES,
|
||||||
|
|
|
@ -11,15 +11,17 @@
|
||||||
#
|
#
|
||||||
# Dependencies: dirname sed
|
# Dependencies: dirname sed
|
||||||
|
|
||||||
TEST_SUITE_DIR=@test_suite_dir@
|
TEST_SUITE_DIR=@srcdir@/test-suite
|
||||||
parent=`dirname $TEST_SUITE_DIR`
|
parent=@srcdir@
|
||||||
|
build_dir=`pwd`
|
||||||
|
|
||||||
if [ x"$1" = x-i ] ; then
|
if [ x"$1" = x-i ] ; then
|
||||||
guile=$2
|
guile=$2
|
||||||
shift
|
shift
|
||||||
shift
|
shift
|
||||||
|
glp=
|
||||||
else
|
else
|
||||||
guile=$parent/libguile/guile
|
guile=$build_dir/libguile/guile
|
||||||
glp=$parent
|
glp=$parent
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -38,6 +40,6 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd $TEST_SUITE_DIR
|
cd $TEST_SUITE_DIR
|
||||||
exec $guile -e main -s guile-test --test-suite $TEST_SUITE_DIR/tests "$@"
|
exec $guile -e main -s guile-test --test-suite $TEST_SUITE_DIR/tests --log-file $build_dir/check-guile.log "$@"
|
||||||
|
|
||||||
# check-guile ends here
|
# check-guile ends here
|
||||||
|
|
|
@ -534,10 +534,6 @@ AC_SUBST(LIBLOBJS)
|
||||||
AC_SUBST(EXTRA_DOT_DOC_FILES)
|
AC_SUBST(EXTRA_DOT_DOC_FILES)
|
||||||
AC_SUBST(EXTRA_DOT_X_FILES)
|
AC_SUBST(EXTRA_DOT_X_FILES)
|
||||||
|
|
||||||
# Support for "make check"
|
|
||||||
test_suite_dir="`(cd $srcdir ; pwd)`/test-suite"
|
|
||||||
AC_SUBST(test_suite_dir)
|
|
||||||
|
|
||||||
AC_OUTPUT([Makefile libguile/Makefile libguile/guile-snarf libguile/guile-doc-snarf libguile/guile-func-name-check libguile/guile-snarf.awk libguile/versiondat.h ice-9/Makefile oop/Makefile oop/goops/Makefile qt/Makefile qt/qt.h qt/md/Makefile qt/time/Makefile guile-config/Makefile doc/Makefile check-guile], [chmod +x libguile/guile-snarf libguile/guile-doc-snarf libguile/guile-func-name-check check-guile])
|
AC_OUTPUT([Makefile libguile/Makefile libguile/guile-snarf libguile/guile-doc-snarf libguile/guile-func-name-check libguile/guile-snarf.awk libguile/versiondat.h ice-9/Makefile oop/Makefile oop/goops/Makefile qt/Makefile qt/qt.h qt/md/Makefile qt/time/Makefile guile-config/Makefile doc/Makefile check-guile], [chmod +x libguile/guile-snarf libguile/guile-doc-snarf libguile/guile-func-name-check check-guile])
|
||||||
|
|
||||||
dnl Local Variables:
|
dnl Local Variables:
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2001-03-18 Gary Houston <ghouston@arglist.com>
|
||||||
|
|
||||||
|
* guile-test: use #!/bogus-path/..., not #!/home/dirk/... in the
|
||||||
|
first line.
|
||||||
|
|
||||||
2001-03-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
2001-03-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||||
|
|
||||||
* tests/syntax.test: Added a test for let* bindings and
|
* tests/syntax.test: Added a test for let* bindings and
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/home/dirk/bin/guile \
|
#!/bogus-path/guile \
|
||||||
-e main -s
|
-e main -s
|
||||||
!#
|
!#
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue