1 # Copyright (C) 1992 - 2002, 2003 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 # Please email any bugs, comments, and/or additions to this file to:
20 # This file was written by Rob Savoye. (rob@welcomehome.org)
23 if ![info exists RUNTEST] then {
24 set RUNTEST [transform runtest]
27 if ![info exists EXPECT] {
28 set EXPECT [findfile $base_dir/../../expect/expect "$base_dir/../../expect/expect" expect]
29 verbose "EXPECT defaulting to $EXPECT" 2
33 if ![info exists RUNTESTFLAGS] then {
34 set RUNTESTFLAGS "-v -v -a"
38 # runtest_version -- extract and print the version number
40 proc runtest_version { } {
43 catch {exec $RUNTEST -V} tmp
44 if [info exists tmp] then {
50 # runtest_load -- loads the program. For runtest, this is just a stub
52 proc runtest_load { arg } {
56 # runtest_exit -- exit the test driver for expect
58 proc runtest_exit { } {
63 # runtest_start -- start everything
65 proc runtest_start { } {
74 if {[which $RUNTEST] != 0} then {
75 perror "Can't find $RUNTEST"
78 # return [open [concat "$RUNTEST $RUNTESTFLAGS"] r]