fixed bash/dash/sh issue (Ubuntu)
[zpugcc/jano.git] / toolchain / dejagnu / testsuite / config / default.exp
blob02a910e43d1ba42d9bfd4f3e3400e42e8675d185
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:
18 # bug-dejagnu@gnu.org
20 # This file was written by Rob Savoye. (rob@welcomehome.org)
22 global RUNTEST
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
32 global RUNTESTFLAGS
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 { } {
41     global RUNTEST
43     catch {exec $RUNTEST -V} tmp
44     if [info exists tmp] then {
45         clone_output "$tmp\n"
46     }
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 { } {
59     close
63 # runtest_start -- start everything
65 proc runtest_start { } {
66     global verbose
67     global spawn_id
68     global subdir
69     global srcdir
70     global objdir
71     global RUNTEST
72     global RUNTESTFLAGS
74     if {[which $RUNTEST] != 0} then {
75         perror "Can't find $RUNTEST"
76     }
78     #    return [open [concat "$RUNTEST $RUNTESTFLAGS"] r]