* lib/gdb.exp (gdbtk_start): Add startup for gdbtk.

* configure.in: Add options for gdbtk testsuite.

        * configure: Regenerate.

        * gdb.gdbtk: New directory to hold gdbtk tests.

        * gdb.gdbtk/console.{exp, test}: New console window tests.
This commit is contained in:
Keith Seitz
1998-06-27 00:47:35 +00:00
parent 7f6cb62ee6
commit f35ea21826
12 changed files with 1544 additions and 33 deletions

View File

@@ -54,6 +54,39 @@ if test "${shared}" = "true"; then
fi
AC_SUBST(RPATH_ENVVAR)
# End stuff to support --enable-shared
AC_ARG_ENABLE(gdbtk,
[ --enable-gdbtk ],
[case "${enableval}" in
yes)
case "$host" in
*go32*)
enable_gdbtk=no ;;
*windows*)
enable_gdbtk=no ;;
*)
enable_gdbtk=yes ;;
esac ;;
no)
enable_gdbtk=no ;;
*)
AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
esac],
[
# Default is on for everything but go32 and windows
case "$host" in
*go32* | *windows*)
;;
*)
enable_gdbtk=yes ;;
esac
])
if test "${enable_gdbtk}" = "yes"; then
configdirs="${configdirs} gdb.gdbtk"
fi
# End stuff to suppot --enable-shared
# start-sanitize-gdbtk
# Begin stuff to support --enable-gdbtk
# configure the subdirectories too
AC_CONFIG_SUBDIRS($configdirs)