2014-01-01 03:54:24 +00:00
|
|
|
# Copyright 2004-2014 Free Software Foundation, Inc.
|
2004-04-01 18:42:08 +00:00
|
|
|
#
|
|
|
|
# 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
|
2007-08-23 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2004-04-01 18:42:08 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2004-04-01 18:42:08 +00:00
|
|
|
# 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.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2004-04-01 18:42:08 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-04-01 18:42:08 +00:00
|
|
|
|
2004-04-01 00:51:13 +00:00
|
|
|
# Compile some Ada code.
|
|
|
|
|
|
|
|
proc gdb_compile_ada {source dest type options} {
|
|
|
|
|
2005-02-03 03:58:53 +00:00
|
|
|
set srcdir [file dirname $source]
|
|
|
|
set gprdir [file dirname $srcdir]
|
2004-04-01 00:51:13 +00:00
|
|
|
set objdir [file dirname $dest]
|
|
|
|
|
|
|
|
append options " ada"
|
2005-02-03 03:58:53 +00:00
|
|
|
append options " additional_flags=-P$gprdir/gnat_ada"
|
|
|
|
append options " additional_flags=-XSRC=[file tail $srcdir]"
|
|
|
|
append options " additional_flags=-XOBJ=$objdir"
|
2004-04-01 00:51:13 +00:00
|
|
|
|
2005-02-03 03:58:53 +00:00
|
|
|
set result [target_compile [file tail $source] $dest $type $options]
|
2004-04-01 00:51:13 +00:00
|
|
|
|
|
|
|
# The Ada build always produces some output, even when the build
|
|
|
|
# succeeds. Thus, we can not use the output the same way we do in
|
|
|
|
# gdb_compile to determine whether the build has succeeded or not.
|
|
|
|
# We therefore simply check whether the dest file has been created
|
|
|
|
# or not. Unless not present, the build has succeeded.
|
* lib/gdb.exp (gdb_compile_test): New.
(skip_ada_tests, skip_java_tests): New.
(gdb_compile): Use gdb_compile_test for f77.
* lib/ada.exp (gdb_compile_ada): Use gdb_compile_test to record result.
* lib/java.exp (compile_java_from_source): Remove runtests check,
use gdb_compile_test to record result.
* gdb.ada/packed_array.exp, gdb.ada/fixed_points.exp,
gdb.ada/exec_changed.exp, gdb.ada/start.exp,
gdb.ada/watch_arg.exp, gdb.ada/null_record.exp,
gdb.ada/array_return.exp, gdb.ada/arrayidx.exp,
gdb.mi/mi-var-child-f.exp, gdb.fortran/types.exp,
gdb.fortran/array-element.exp, gdb.fortran/subarray.exp,
gdb.fortran/derived-type.exp, gdb.fortran/exprs.exp,
gdb.java/jmisc.exp, gdb.java/jmisc1.exp, gdb.java/jprint.exp,
gdb.java/jv-print.exp, gdb.java/jmain.exp: Add language skip,
adjust gdb_compile invocations.
2009-11-10 10:16:10 +00:00
|
|
|
if [file exists $dest] { set result "" }
|
|
|
|
gdb_compile_test $source $result
|
|
|
|
return $result
|
2004-04-01 00:51:13 +00:00
|
|
|
}
|
|
|
|
|
2012-07-26 18:43:02 +00:00
|
|
|
# Like standard_testfile, but for Ada. Historically the Ada tests
|
|
|
|
# used a different naming convention from many of the other gdb tests,
|
|
|
|
# and this difference was preserved during the conversion to
|
|
|
|
# standard_testfile. DIR defaults to the base name of the test case;
|
|
|
|
# but can be overridden to find sources in a different subdirectory of
|
|
|
|
# gdb.ada.
|
|
|
|
|
|
|
|
proc standard_ada_testfile {base_file {dir ""}} {
|
|
|
|
global gdb_test_file_name srcdir subdir
|
|
|
|
global testdir testfile srcfile binfile
|
|
|
|
|
|
|
|
if {$dir == ""} {
|
|
|
|
set testdir $gdb_test_file_name
|
|
|
|
} else {
|
|
|
|
set testdir $dir
|
|
|
|
}
|
|
|
|
set testfile $testdir/$base_file
|
|
|
|
set srcfile $srcdir/$subdir/$testfile.adb
|
|
|
|
set binfile [standard_output_file $testfile]
|
|
|
|
|
|
|
|
file mkdir [standard_output_file $testdir]
|
|
|
|
}
|