diff options
author | Tom Tromey <tromey@adacore.com> | 2022-11-30 09:32:04 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-12-01 08:28:20 -0700 |
commit | 3b7aed0cc72d516d1f1b62cf480984d2c5e4d05f (patch) | |
tree | 4e01cddc89f412774da1a65def903fbf5ff33364 /gdb/testsuite/gdb.compile | |
parent | de3b40320c35e2336b68c1e534790c77914b3a99 (diff) | |
download | binutils-3b7aed0cc72d516d1f1b62cf480984d2c5e4d05f.zip binutils-3b7aed0cc72d516d1f1b62cf480984d2c5e4d05f.tar.gz binutils-3b7aed0cc72d516d1f1b62cf480984d2c5e4d05f.tar.bz2 |
Remove one copy of skip_compile_feature_tests
I noticed that there are two identical copies of
skip_compile_feature_tests in the test suite. This removes one from
gdb.exp, in favor of the one in compile-support.exp.
Diffstat (limited to 'gdb/testsuite/gdb.compile')
-rw-r--r-- | gdb/testsuite/gdb.compile/compile-ifunc.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.compile/compile-ops.exp | 1 | ||||
-rw-r--r-- | gdb/testsuite/gdb.compile/compile-print.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.compile/compile-setjmp.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.compile/compile-tls.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.compile/compile.exp | 2 |
6 files changed, 11 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.compile/compile-ifunc.exp b/gdb/testsuite/gdb.compile/compile-ifunc.exp index 4f671c6..07de52c 100644 --- a/gdb/testsuite/gdb.compile/compile-ifunc.exp +++ b/gdb/testsuite/gdb.compile/compile-ifunc.exp @@ -13,6 +13,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +load_lib compile-support.exp + if {[skip_ifunc_tests]} { return 0 } diff --git a/gdb/testsuite/gdb.compile/compile-ops.exp b/gdb/testsuite/gdb.compile/compile-ops.exp index 76f284f..cff2f94 100644 --- a/gdb/testsuite/gdb.compile/compile-ops.exp +++ b/gdb/testsuite/gdb.compile/compile-ops.exp @@ -16,6 +16,7 @@ # Some coverage testing of DWARF operators for the compiler # integration. +load_lib compile-support.exp load_lib dwarf.exp # This test can only be run on targets which support DWARF-2 and use gas. diff --git a/gdb/testsuite/gdb.compile/compile-print.exp b/gdb/testsuite/gdb.compile/compile-print.exp index 051cfab..5d01c1a 100644 --- a/gdb/testsuite/gdb.compile/compile-print.exp +++ b/gdb/testsuite/gdb.compile/compile-print.exp @@ -13,6 +13,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +load_lib compile-support.exp + standard_testfile if { [prepare_for_testing "failed to prepare" "$testfile"] } { diff --git a/gdb/testsuite/gdb.compile/compile-setjmp.exp b/gdb/testsuite/gdb.compile/compile-setjmp.exp index 89a65fb..c883b2b 100644 --- a/gdb/testsuite/gdb.compile/compile-setjmp.exp +++ b/gdb/testsuite/gdb.compile/compile-setjmp.exp @@ -13,6 +13,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +load_lib compile-support.exp + standard_testfile .c compile-setjmp-mod.c if { [prepare_for_testing "failed to prepare" $testfile] } { diff --git a/gdb/testsuite/gdb.compile/compile-tls.exp b/gdb/testsuite/gdb.compile/compile-tls.exp index f9c9ee5..beffe7f 100644 --- a/gdb/testsuite/gdb.compile/compile-tls.exp +++ b/gdb/testsuite/gdb.compile/compile-tls.exp @@ -13,6 +13,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. */ +load_lib compile-support.exp + standard_testfile .c if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" \ diff --git a/gdb/testsuite/gdb.compile/compile.exp b/gdb/testsuite/gdb.compile/compile.exp index f251558..c712070 100644 --- a/gdb/testsuite/gdb.compile/compile.exp +++ b/gdb/testsuite/gdb.compile/compile.exp @@ -13,6 +13,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +load_lib compile-support.exp + standard_testfile .c compile-shlib.c compile-constvar.S compile-nodebug.c set options {} |