1 #
Define gas callbacks
for dg.exp.
2 # Copyright
(C
) 2012-2019 Free Software Foundation
, Inc.
4 # This
program is free software
; you can redistribute it and
/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation
; either version
3 of the License
, or
7 #
(at your option
) any later version.
9 # This
program is distributed in the hope that it will be useful
,
10 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License
for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this
program; if not
, write to the Free Software
16 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
, MA
02110-1301, USA.
20 # The use of this function is still in a bit of flux.
21 # It should be theoretically possible to assemble
, link
, and run a file
22 # but we currently don
't support that. Assembler testcases aren't usually
23 # that elaborate anyway.
:-)
25 proc gas
-dg
-test
{ prog do_what tool_flags
} {
26 # FIXME
: the gas testsuite doesn
't define tmpdir. Use outdir?
27 set output_file "./a.out"
37 # This is the only place where we care if an executable was
38 # created or not. If it was, dg.exp will try to run it.
39 remote_file host delete "$output_file"
42 perror "$do_what: not a valid dg-do keyword"
47 # gas_start prepends $srcdir/$subdir so we must remove it from PROG
48 # if present. First remove extraneous //'s.
50 set dir "$srcdir/$subdir"
51 regsub
-all
"//" $dir "/" dir
52 regsub
-all
"//" $prog "/" prog
53 if [string match
"$dir/*" $prog] {
54 # We use
(?q
) to treat $
dir as a literal.
55 regsub
"(?q)$dir" $prog "" prog
58 # FIXME
: This should be gas_start but it doesn
't set comp_output.
59 return [gas_run $prog $tool_flags ""]
62 proc gas-dg-prune { system text } {
63 #send_user "Before:$text\n"
64 regsub -all "(^|\n)\[^\n\]*: Assembler messages:\[^\n\]*" $text "" text
65 regsub -all "(^|\n)\[^\n\]*: End of file not at end\[^\n\]*Newline inserted." $text "" text
66 #send_user "After:$text\n"