]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/testsuite/config/default.exp
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / binutils / testsuite / config / default.exp
1 # Copyright (C) 1993, 1994 Free Software Foundation, Inc.
2
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.
7 #
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.
12 #
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-dejagnu@prep.ai.mit.edu
19
20 # This file was written by Rob Savoye. (rob@cygnus.com)
21
22 load_lib util-defs.exp
23 load_lib utils-lib.exp
24
25 if ![info exists AS] then {
26 set AS [findfile $base_dir/../gas/as.new $base_dir/../gas/as.new [transform as]]
27 }
28 if ![info exists ASFLAGS] then {
29 set ASFLAGS ""
30 }
31
32 if ![info exists NM] then {
33 set NM [findfile $base_dir/nm.new $base_dir/nm.new [transform nm]]
34 }
35 if ![info exists NMFLAGS] then {
36 set NMFLAGS ""
37 }
38
39 if ![info exists SIZE] then {
40 set SIZE [findfile $base_dir/size]
41 }
42 if ![info exists SIZEFLAGS] then {
43 set SIZEFLAGS ""
44 }
45
46 if ![info exists OBJDUMP] then {
47 set OBJDUMP [findfile $base_dir/objdump]
48 }
49 if ![info exists OBJDUMPFLAGS] then {
50 set OBJDUMPFLAGS ""
51 }
52
53 if ![info exists OBJCOPY] then {
54 set OBJCOPY [findfile $base_dir/objcopy]
55 }
56 if ![info exists OBJCOPYFLAGS] then {
57 set OBJCOPYFLAGS ""
58 }
59
60 if ![file isdirectory tmpdir] {catch "exec mkdir tmpdir" status}
61
62 #
63 # binutils_run
64 # run a program, returning the output
65 # sets binutils_run_failed if the program does not exist
66 #
67 proc binutils_run { prog progargs } {
68 default_binutils_run $prog $progargs
69 }
70
71 #
72 # binutils_assemble
73 # assemble a file
74 #
75 proc binutils_assemble { as source object } {
76 default_binutils_assemble $as $source $object
77 }
78
79 #
80 # add some basic error trapping. These mostly catch programming error's
81 # within the tests themselves
82 #
83 expect_before {
84 buffer_full { perror "internal buffer is full." }
85 "can't open '*'" { perror "Can't open test file." }
86 }