#! /bin/sh
# Copyright (C) 2011 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Check DejaGnu testsuites have 'srcdir' defined to an absolute path,
# both as TCL variable and as environment variable.

required=runtest
. ./defs || Exit 1

set -e

cat >> configure.in << 'END'
AC_OUTPUT 
END

cat > Makefile.am << 'END'
AUTOMAKE_OPTIONS = dejagnu
DEJATOOL = tcl env
EXTRA_DIST = env.test/env.exp tcl.test/tcl.exp
END

mkdir env.test tcl.test

cat > env.test/env.exp << 'END'
set test test_env
set env_srcdir [ exec "sh" "-c" "echo \$srcdir" ]
send_user "env_srcdir: $env_srcdir\n"
if { [ regexp "^/" $env_srcdir ] } {
    pass "$test"
} else {
    fail "$test"
}
END

cat > tcl.test/tcl.exp << 'END'
set test test_tcl
# For debugging.
send_user "tcl_srcdir: $srcdir\n"
if { [ regexp "^/" $srcdir ] } {
    pass "$test"
} else {
    fail "$test"
}
END

$ACLOCAL
$AUTOCONF
$AUTOMAKE --add-missing

./configure --srcdir=.

$MAKE check

# Sanity check: all tests have been run.
test -f env.log
test -f env.sum
test -f tcl.log
test -f tcl.sum

$MAKE distcheck

:
