]> git.ipfire.org Git - thirdparty/binutils-gdb.git/log
thirdparty/binutils-gdb.git
17 months agoFix snafu in previous delta for elf32-csky.c
Nick Clifton [Tue, 17 Jan 2023 12:55:33 +0000 (12:55 +0000)] 
Fix snafu in previous delta for elf32-csky.c

17 months agoC-SKY: Fix machine flag.
Xianmiao Qu [Tue, 17 Jan 2023 11:43:16 +0000 (11:43 +0000)] 
C-SKY: Fix machine flag.

* elf32-csky.c (elf32_csky_merge_attributes): Don't save and restore the ARCH attribute, it will actually clear the ARCH attribute. (csky_elf_merge_private_bfd_data): Store the machine flag correctly.

17 months agoAutomatic date update in version.in
GDB Administrator [Tue, 17 Jan 2023 00:00:36 +0000 (00:00 +0000)] 
Automatic date update in version.in

17 months agolibctf: update regexp to allow makeinfo to build document
Enze Li [Sat, 14 Jan 2023 03:33:48 +0000 (11:33 +0800)] 
libctf: update regexp to allow makeinfo to build document

While trying to build gdb on latest openSUSE Tumbleweed, I noticed the
following warning,

 checking for makeinfo... makeinfo --split-size=5000000
 configure: WARNING:
 *** Makeinfo is too old. Info documentation will not be built.

then I checked the version of makeinfo, it said,
======
$ makeinfo --version
texi2any (GNU texinfo) 7.0.1

Copyright (C) 2022 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
======

After digging a little bit, it became quite obvious that a dot is
missing in regexp that makes it impossible to match versions higher than
7.0, and here's the solution:

-       | egrep 'texinfo[^0-9]*(6\.[3-9]|[7-9][0-9])' >/dev/null 2>&1; then
+       | egrep 'texinfo[^0-9]*(6\.[3-9]|[7-9]\.[0-9])' >/dev/null 2>&1; then

However, Eli pointed out that the solution above has another problem: it
will stop working when Texinfo 10.1 will be released.  Meanwhile, he
suggested to solve this problem permanently.  That is, we don't care
about the minor version for Texinfo > 6.9, we only care about the major
version.

In this way, the problem will be resolved permanently, thanks to Eli.

libctf/ChangeLog:

* configure: Regenerated.
* configure.ac: Update regexp to match versions higher than 7.0.

17 months agoCorrect ld-pe/aarch64.d test output
Alan Modra [Sat, 14 Jan 2023 11:42:48 +0000 (22:12 +1030)] 
Correct ld-pe/aarch64.d test output

"foo" is at 0x2010.  This corrects the expected output for .long and
.word referencing foo, showing a problem with relocation handling.

* testsuite/ld-pe/aarch64.d: Correct expected output.

17 months agoTidy gas/expr.c static state
Alan Modra [Sat, 14 Jan 2023 11:43:54 +0000 (22:13 +1030)] 
Tidy gas/expr.c static state

* expr.c (seen, nr_seen): Make file scope.
(expr_begin): Clear seen, nr_seen, and expr_symbol_lines.
(expr_end): New function.
* expr.h (expr_end): Declare.
* output-file.c (output_file_close): Call expr_end.
* config/tc-hppa.c (expr_end): Rename to expr_parse_end.
* config/tc-mips.c: Likewise.
* config/tc-riscv.c: Likewise.
* config/tc-sparc.c: Likewise.

17 months agoLeftover hack from i960-coff
Alan Modra [Mon, 16 Jan 2023 10:05:33 +0000 (20:35 +1030)] 
Leftover hack from i960-coff

* reloc.c (bfd_perform_relocation, bfd_install_relocation): Remove
i960-coff target hack.

17 months agoCOFF CALC_ADDEND comment
Alan Modra [Mon, 16 Jan 2023 04:53:21 +0000 (15:23 +1030)] 
COFF CALC_ADDEND comment

Old COFF (and AOUT) targets have unusual relocation addends.

* coffcode.h (<Reading relocations>): Describe COFF addends.

17 months agoPR29991, MicroMIPS flag erased after align directives
Alan Modra [Thu, 12 Jan 2023 23:09:19 +0000 (09:39 +1030)] 
PR29991, MicroMIPS flag erased after align directives

PR 29991
* config/tc-mips.c (s_align): Call file_mips_check_options and
mips_mark_labels.
* testsuite/gas/mips/align-after-label.s,
* testsuite/gas/mips/mips-align-after-label.d,
* testsuite/gas/mips/micromips-align-after-label.d: New test.
* testsuite/gas/mips/mips.exp: Run it.

17 months agoUpdate release making howto
Nick Clifton [Mon, 16 Jan 2023 11:31:39 +0000 (11:31 +0000)] 
Update release making howto

17 months agoUpdated translations for the gas and binutils sub-directories
Nick Clifton [Mon, 16 Jan 2023 10:45:38 +0000 (10:45 +0000)] 
Updated translations for the gas and binutils sub-directories

17 months agosim: assume sys/stat.h always exists (via gnulib)
Mike Frysinger [Mon, 16 Jan 2023 09:42:47 +0000 (04:42 -0500)] 
sim: assume sys/stat.h always exists (via gnulib)

We have many uses of sys/stat.h that are unprotected by HAVE_SYS_STAT_H,
so this is more formalizing the reality that we require this header.
Since we switched to gnulib, it guarantees that a sys/stat.h exists
for us to include, so we're doubly OK.

17 months agosim: formally assume unistd.h always exists (via gnulib)
Mike Frysinger [Mon, 16 Jan 2023 09:35:48 +0000 (04:35 -0500)] 
sim: formally assume unistd.h always exists (via gnulib)

We have many uses of unistd.h that are unprotected by HAVE_UNISTD_H,
so this is more formalizing the reality that we require this header.
Since we switched to gnulib, it guarantees that a unistd.h exists
for us to include, so we're doubly OK.

17 months agosim: build: stop probing system extensions (ourselves)
Mike Frysinger [Mon, 16 Jan 2023 09:22:10 +0000 (04:22 -0500)] 
sim: build: stop probing system extensions (ourselves)

This logic was added in order to expose the strsignal prototype for
nrun.c.  Since then, we've migrated to gnulib as our portability layer,
and it takes care of probing system extensions for us, so there's no
need to duplicate the work.

17 months agosim: modules.c: fix generation after recent refactors
Mike Frysinger [Mon, 16 Jan 2023 01:48:28 +0000 (20:48 -0500)] 
sim: modules.c: fix generation after recent refactors

Add explicit arch-specific modules.c rules to keep the build from
generating an incorrect common/modules.c.  Otherwise the pattern
rules would cascade such that it'd look for $arch/modules.o which
turned into common/modules.c which triggered the gen rule.

My local testing of this code didn't catch this bug because of how
Automake manages .Po (dependency files) in incremental builds -- it
was adding extra rules that override the pattern rules which caused
the build to generate correct modules.c files.  But when building
from a cold cache, the pattern rules would force common/modules.c to
be used leading to crashes at runtime.

17 months agoAutomatic date update in version.in
GDB Administrator [Mon, 16 Jan 2023 00:00:08 +0000 (00:00 +0000)] 
Automatic date update in version.in

17 months agosim: microblaze, mn10300: remove signal.h include in interp.c
Mark Wielaard [Sat, 14 Jan 2023 21:54:20 +0000 (22:54 +0100)] 
sim: microblaze, mn10300: remove signal.h include in interp.c

signal.h isn't needed in microblaze and mn10300 interp.c
so don't include it.

17 months agosim: m32r: fix typos in stamp depends
Mike Frysinger [Sun, 15 Jan 2023 07:05:06 +0000 (02:05 -0500)] 
sim: m32r: fix typos in stamp depends

Copying & pasting the first rule missed updating the dep to the right
stamp file.

17 months agosim: igen: simplify build logic a little
Mike Frysinger [Sun, 15 Jan 2023 02:55:31 +0000 (21:55 -0500)] 
sim: igen: simplify build logic a little

Now that all ports (that use igen) build in the top-level and depend
on igen, we can move the conditional logic out of configure.  We also
switch from noinst_LIBRARIES to EXTRA_LIBRARIES so that the library
is only built when needed (i.e. the igen tool is used).

17 months agosim: build: drop depdir subdir hack
Mike Frysinger [Tue, 3 Jan 2023 00:08:14 +0000 (19:08 -0500)] 
sim: build: drop depdir subdir hack

Now that all the ports compile some C files in their arch dirs, Automake
guarantees creating the depdir for us, so we can drop our configure hack.

17 months agosim: common: simplify modules.c deps
Mike Frysinger [Mon, 2 Jan 2023 05:11:00 +0000 (00:11 -0500)] 
sim: common: simplify modules.c deps

Now that all ports (other than ppc) build in the top-level, we don't
need to expand all the modules.c targets as a recursive dep.  Each
port depends on their respective file now, and the ppc port doesn't
use it at all.

17 months agosim: common: move modules.c to source tracking
Mike Frysinger [Mon, 2 Jan 2023 21:46:14 +0000 (16:46 -0500)] 
sim: common: move modules.c to source tracking

This makes sure the arch-specific modules.c wildcard is matched and
not the common/%.c so that we compile it correctly.  It also makes
sure each subdir has depdir logic enabled.

17 months agosim: common: move libcommon.a dep to ppc code
Mike Frysinger [Mon, 2 Jan 2023 19:38:01 +0000 (14:38 -0500)] 
sim: common: move libcommon.a dep to ppc code

Rather than force this to be built ahead of time for all targets,
move the dep to the ppc code since it's the only user of it now.

17 months agosim: build: drop most recursive build deps
Mike Frysinger [Mon, 2 Jan 2023 19:34:52 +0000 (14:34 -0500)] 
sim: build: drop most recursive build deps

Now that we build these objects in the top dir & generate modules.c
there, we don't need to generate them all first -- we can let the
normal dependency graph take care of building things in parallel.

17 months agosim: common: move libcommon.a objects to sources
Mike Frysinger [Mon, 2 Jan 2023 19:15:02 +0000 (14:15 -0500)] 
sim: common: move libcommon.a objects to sources

This simplifies the build logic and avoids an Automake bug where the
common_libcommon_a_OBJECTS variable isn't set in the arch libsim.a
DEPENDENCIES for targets that, alphabetically, come before "common".
We aren't affected by that bug with the current code, but as we move
things out of SIM_ALL_RECURSIVE_DEPS and rely on finer dependencies,
we will trip over it.

17 months agosim: igen: simplify build dep
Mike Frysinger [Mon, 2 Jan 2023 05:08:56 +0000 (00:08 -0500)] 
sim: igen: simplify build dep

Now that all ports (other than ppc) build in the top-level, we don't
need to mark the igen tool as a recursive dep.  Each port depends on
the tool if it actually uses it, and ppc doesn't use it at all.

17 months agosim: common: simplify hw-config.h deps
Mike Frysinger [Mon, 2 Jan 2023 05:06:34 +0000 (00:06 -0500)] 
sim: common: simplify hw-config.h deps

Now that all ports (other than ppc) build in the top-level, we don't
need to expand all the hw-config.h targets as a recursive dep.  Each
port depends on their respective header now, and the ppc port doesn't
use it at all.

17 months agosim: build: drop AM_MAKEFLAGS settings
Mike Frysinger [Mon, 2 Jan 2023 04:02:28 +0000 (23:02 -0500)] 
sim: build: drop AM_MAKEFLAGS settings

We don't have any recursive builds anymore, so we can drop this logic.

17 months agoAutomatic date update in version.in
GDB Administrator [Sun, 15 Jan 2023 00:00:45 +0000 (00:00 +0000)] 
Automatic date update in version.in

17 months agoPass internal gdb flags to --configuration invocations
Tom Tromey [Sat, 14 Jan 2023 19:42:30 +0000 (12:42 -0700)] 
Pass internal gdb flags to --configuration invocations

The test suite uses the --configuration flag to feature-test gdb.
However, when I added this, I neglected to pass the internal gdbflags
to this, causing an error, which then caused failures in the test
suite (which would not be seen if you'd ever run "make install").

This patch fixes the bug.  Tested by removing my install tree first,
to verify that I could reproduce the failure.

17 months agoUpdate how-to-make-a-release file now that the 2.40 release is out
Nick Clifton [Sat, 14 Jan 2023 15:37:20 +0000 (15:37 +0000)] 
Update how-to-make-a-release file now that the 2.40 release is out

17 months agoAutomatic date update in version.in
GDB Administrator [Sat, 14 Jan 2023 00:00:18 +0000 (00:00 +0000)] 
Automatic date update in version.in

17 months agosim: build: delete Make-common.in logic
Mike Frysinger [Mon, 2 Jan 2023 03:58:35 +0000 (22:58 -0500)] 
sim: build: delete Make-common.in logic

Now that all (other than ppc) build in the top-level, this logic is
unused, so punt it all.

17 months agoRename to allow_tui_tests
Tom Tromey [Sun, 8 Jan 2023 19:42:29 +0000 (12:42 -0700)] 
Rename to allow_tui_tests

This changes skip_tui_tests to invert the sense, and renames it to
allow_tui_tests.  It also rewrites this function to use the output of
"gdb --configuration", and it adds a note about the state of the TUI
to that output.

17 months agoRename to allow_guile_tests
Tom Tromey [Sun, 8 Jan 2023 19:01:33 +0000 (12:01 -0700)] 
Rename to allow_guile_tests

This changes skip_guile_tests to invert the sense, and renames it to
allow_guile_tests.  It also rewrites this proc to check the output of
"gdb --configuration", as was done for Python.  Then it changes the
code to use "require" where possible.

17 months agoRename to allow_hw_breakpoint_tests
Tom Tromey [Sun, 8 Jan 2023 18:54:47 +0000 (11:54 -0700)] 
Rename to allow_hw_breakpoint_tests

This changes skip_hw_breakpoint_tests to invert the sense, and renames
it to allow_hw_breakpoint_tests.  This also converts some tests to use
"require" -- I missed this particular check in the first series.

17 months agoRename to allow_tsx_tests
Tom Tromey [Sun, 8 Jan 2023 18:48:57 +0000 (11:48 -0700)] 
Rename to allow_tsx_tests

This changes skip_tsx_tests to invert the sense, and renames it to
allow_tsx_tests.

17 months agoRename to allow_shlib_tests
Tom Tromey [Sun, 8 Jan 2023 18:47:51 +0000 (11:47 -0700)] 
Rename to allow_shlib_tests

This changes skip_shlib_tests to invert the sense, and renames it to
allow_shlib_tests.

17 months agoRename to allow_rust_tests
Tom Tromey [Sun, 8 Jan 2023 18:46:36 +0000 (11:46 -0700)] 
Rename to allow_rust_tests

This changes skip_rust_tests to invert the sense, and renames it to
allow_rust_tests.

17 months agoRename to allow_python_tests
Tom Tromey [Sun, 8 Jan 2023 18:46:05 +0000 (11:46 -0700)] 
Rename to allow_python_tests

This changes skip_python_tests to invert the sense, and renames it to
allow_python_tests.

17 months agoRename to allow_perf_tests
Tom Tromey [Sun, 8 Jan 2023 18:43:09 +0000 (11:43 -0700)] 
Rename to allow_perf_tests

This changes skip_perf_tests to invert the sense, and renames it to
allow_perf_tests.

17 months agoRename to allow_opencl_tests
Tom Tromey [Sun, 8 Jan 2023 18:42:26 +0000 (11:42 -0700)] 
Rename to allow_opencl_tests

This changes skip_opencl_tests to invert the sense, and renames it to
allow_opencl_tests.

17 months agoRename to allow_ifunc_tests
Tom Tromey [Sun, 8 Jan 2023 18:41:19 +0000 (11:41 -0700)] 
Rename to allow_ifunc_tests

This changes skip_ifunc_tests to invert the sense, and renames it to
allow_ifunc_tests.

17 months agoRename to allow_hw_watchpoint_tests
Tom Tromey [Sun, 8 Jan 2023 18:40:32 +0000 (11:40 -0700)] 
Rename to allow_hw_watchpoint_tests

This changes skip_hw_watchpoint_tests to invert the sense, and renames
it to allow_hw_watchpoint_tests.

17 months agoRename to allow_hw_watchpoint_multi_tests
Tom Tromey [Sun, 8 Jan 2023 17:57:35 +0000 (10:57 -0700)] 
Rename to allow_hw_watchpoint_multi_tests

This changes skip_hw_watchpoint_multi_tests to invert the sense, and
renames it to allow_hw_watchpoint_multi_tests.

17 months agoRename to allow_hw_watchpoint_access_tests
Tom Tromey [Sun, 8 Jan 2023 17:55:43 +0000 (10:55 -0700)] 
Rename to allow_hw_watchpoint_access_tests

This changes skip_hw_watchpoint_access_tests to invert the sense, and
renames it to allow_hw_watchpoint_access_tests.

17 months agoRename to allow_go_tests
Tom Tromey [Sun, 8 Jan 2023 17:54:46 +0000 (10:54 -0700)] 
Rename to allow_go_tests

This changes skip_go_tests to invert the sense, and renames it to
allow_go_tests.

17 months agoRename to allow_gdbserver_tests
Tom Tromey [Sun, 8 Jan 2023 17:53:55 +0000 (10:53 -0700)] 
Rename to allow_gdbserver_tests

This changes skip_gdbserver_tests to invert the sense, and renames it
to allow_gdbserver_tests.

17 months agoRename to allow_fortran_tests
Tom Tromey [Sun, 8 Jan 2023 17:52:25 +0000 (10:52 -0700)] 
Rename to allow_fortran_tests

This changes skip_fortran_tests to invert the sense, and renames it to
allow_fortran_tests.

17 months agoRename to allow_d_tests
Tom Tromey [Sun, 8 Jan 2023 17:51:43 +0000 (10:51 -0700)] 
Rename to allow_d_tests

This changes skip_d_tests to invert the sense, and renames it to
allow_d_tests.

17 months agoRename to allow_dlmopen_tests
Tom Tromey [Sun, 8 Jan 2023 17:50:41 +0000 (10:50 -0700)] 
Rename to allow_dlmopen_tests

This changes skip_dlmopen_tests to invert the sense, and renames it to
allow_dlmopen_tests.

17 months agoRename to allow_debuginfod_tests
Tom Tromey [Sun, 8 Jan 2023 17:49:20 +0000 (10:49 -0700)] 
Rename to allow_debuginfod_tests

This changes skip_debuginfod_tests to invert the sense, and renames it
to allow_debuginfod_tests.

17 months agoRename to allow_ctf_tests
Tom Tromey [Sun, 8 Jan 2023 17:48:33 +0000 (10:48 -0700)] 
Rename to allow_ctf_tests

This changes skip_ctf_tests to invert the sense, and renames it to
allow_ctf_tests.

17 months agoRename to allow_cplus_tests and allow_stl_tests
Tom Tromey [Sun, 8 Jan 2023 17:47:09 +0000 (10:47 -0700)] 
Rename to allow_cplus_tests and allow_stl_tests

This changes skip_cplus_tests to invert the sense, and renames it to
allow_cplus_tests.  This one also converts skip_stl_tests to
allow_stl_tests, as that was convenient to do at the same time.

17 months agoRename to allow_btrace_tests
Tom Tromey [Sun, 8 Jan 2023 17:44:15 +0000 (10:44 -0700)] 
Rename to allow_btrace_tests

This changes skip_btrace_tests to invert the sense, and renames it to
allow_btrace_tests.

17 months agoRename to allow_btrace_pt_tests
Tom Tromey [Sun, 8 Jan 2023 17:41:37 +0000 (10:41 -0700)] 
Rename to allow_btrace_pt_tests

This changes skip_btrace_pt_tests to invert the sense, and renames it
to allow_btrace_pt_tests.

17 months agoRename to allow_avx512fp16_tests
Tom Tromey [Sun, 8 Jan 2023 17:39:51 +0000 (10:39 -0700)] 
Rename to allow_avx512fp16_tests

This changes skip_avx512fp16_tests to invert the sense, and renames it
to allow_avx512fp16_tests.

17 months agoRename to allow_avx512bf16_tests
Tom Tromey [Sun, 8 Jan 2023 17:37:20 +0000 (10:37 -0700)] 
Rename to allow_avx512bf16_tests

This changes skip_avx512bf16_tests to invert the sense, and renames it
to allow_avx512bf16_tests.

17 months agoRename to allow_ada_tests
Tom Tromey [Sat, 7 Jan 2023 20:36:00 +0000 (13:36 -0700)] 
Rename to allow_ada_tests

This changes skip_ada_tests to invert the sense, and renames it to
allow_ada_tests.

17 months agoRename to allow_aarch64_sve_tests
Tom Tromey [Sat, 7 Jan 2023 20:32:55 +0000 (13:32 -0700)] 
Rename to allow_aarch64_sve_tests

This changes skip_aarch64_sve_tests to invert the sense, and renames
it to allow_aarch64_sve_tests.

17 months agoRename to allow_xml_test
Tom Tromey [Sat, 7 Jan 2023 18:48:45 +0000 (11:48 -0700)] 
Rename to allow_xml_test

This changes gdb_skip_xml_test to invert the sense, and renames it to
allow_xml_test.

17 months agoUse "require" for Python tests
Tom Tromey [Sat, 7 Jan 2023 19:18:59 +0000 (12:18 -0700)] 
Use "require" for Python tests

This changes various tests to use "require" for the Python feature.

17 months agoFix latent bug in default_prompt_gdb_start
Tom Tromey [Wed, 11 Jan 2023 23:52:38 +0000 (16:52 -0700)] 
Fix latent bug in default_prompt_gdb_start

default_prompt_gdb_start mimics default_gdb_start, but does not set
the use_gdb_stub global.  This caused one Python test to work only
because it used the ordinary gdb_start before later using
default_prompt_gdb_start.

This patch updates default_prompt_gdb_start to set this global as
well.

17 months agoRemove mi_skip_python_tests
Tom Tromey [Sat, 7 Jan 2023 18:51:33 +0000 (11:51 -0700)] 
Remove mi_skip_python_tests

mi_skip_python_tests was necessary because skip_python_tests used the
running gdb, and so needed to know what prompt to expect.  Now that
skip_python_tests has been rewritten, mi_skip_python_tests is no
longer needed.

17 months agoRewrite skip_python_tests
Tom Tromey [Sat, 7 Jan 2023 03:36:38 +0000 (20:36 -0700)] 
Rewrite skip_python_tests

This rewrites skip_python_tests to examine the output of
"gdb --configuration".  This is a bit nicer because it
does not require an already-running gdb.

17 months agoUse require gnat_runtime_has_debug_info
Tom Tromey [Fri, 16 Dec 2022 00:58:40 +0000 (17:58 -0700)] 
Use require gnat_runtime_has_debug_info

This changes some tests to use "require gnat_runtime_has_debug_info".

17 months agoUse require !skip_debuginfod_tests
Tom Tromey [Fri, 16 Dec 2022 00:51:41 +0000 (17:51 -0700)] 
Use require !skip_debuginfod_tests

This changes some tests to use "require !skip_debuginfod_tests".

17 months agoUse require using_fission
Tom Tromey [Thu, 15 Dec 2022 23:51:08 +0000 (16:51 -0700)] 
Use require using_fission

This changes some tests to use "require using_fission".

17 months agoUse require target_can_use_run_cmd
Tom Tromey [Thu, 15 Dec 2022 23:47:05 +0000 (16:47 -0700)] 
Use require target_can_use_run_cmd

This changes some tests to use "require target_can_use_run_cmd".

17 months agoUse require !skip_opencl_tests
Tom Tromey [Thu, 15 Dec 2022 23:45:27 +0000 (16:45 -0700)] 
Use require !skip_opencl_tests

This changes some tests to use "require !skip_opencl_tests".

17 months agoUse require !skip_perf_tests
Tom Tromey [Thu, 15 Dec 2022 23:41:32 +0000 (16:41 -0700)] 
Use require !skip_perf_tests

This changes some tests to use "require !skip_perf_tests".

17 months agoUse require gdb_trace_common_supports_arch
Tom Tromey [Thu, 15 Dec 2022 23:15:13 +0000 (16:15 -0700)] 
Use require gdb_trace_common_supports_arch

This changes some tests to use "require gdb_trace_common_supports_arch".

17 months agoUse require gdb_skip_xml_test
Tom Tromey [Thu, 15 Dec 2022 23:09:03 +0000 (16:09 -0700)] 
Use require gdb_skip_xml_test

This changes some tests to use "require gdb_skip_xml_test".

17 months agoUse require !gdb_debug_enabled
Tom Tromey [Wed, 14 Dec 2022 23:42:16 +0000 (16:42 -0700)] 
Use require !gdb_debug_enabled

This changes some tests to use "require !gdb_debug_enabled".

17 months agoUse require is_c_compiler_gcc
Tom Tromey [Wed, 14 Dec 2022 17:13:01 +0000 (10:13 -0700)] 
Use require is_c_compiler_gcc

This changes some tests to use "require is_c_compiler_gcc".

17 months agoUse require !skip_shlib_tests
Tom Tromey [Wed, 14 Dec 2022 17:11:33 +0000 (10:11 -0700)] 
Use require !skip_shlib_tests

This changes some tests to use "require !skip_shlib_tests".  This patch
cleans up a few spots that were missed in the earlier patch.

17 months agoUse require !skip_gdbserver_tests
Tom Tromey [Wed, 14 Dec 2022 17:09:38 +0000 (10:09 -0700)] 
Use require !skip_gdbserver_tests

This changes some tests to use "require !skip_gdbserver_tests".

17 months agoUse require isnative
Tom Tromey [Wed, 14 Dec 2022 17:08:00 +0000 (10:08 -0700)] 
Use require isnative

This changes some tests to use "require isnative".

17 months agoUse require can_spawn_for_attach
Tom Tromey [Wed, 14 Dec 2022 17:05:03 +0000 (10:05 -0700)] 
Use require can_spawn_for_attach

This changes some tests to use "require can_spawn_for_attach".

17 months agoUse require !use_gdb_stub
Tom Tromey [Wed, 14 Dec 2022 17:02:49 +0000 (10:02 -0700)] 
Use require !use_gdb_stub

This changes some tests to use "require !use_gdb_stub".

17 months agoUse require support_go_compile
Tom Tromey [Wed, 14 Dec 2022 16:54:00 +0000 (09:54 -0700)] 
Use require support_go_compile

This changes some tests to use "require support_go_compile".

17 months agoUse require supports_get_siginfo_type
Tom Tromey [Wed, 14 Dec 2022 16:52:45 +0000 (09:52 -0700)] 
Use require supports_get_siginfo_type

This changes some tests to use "require supports_get_siginfo_type".

17 months agoUse require can_single_step_to_signal_handler
Tom Tromey [Wed, 14 Dec 2022 16:51:57 +0000 (09:51 -0700)] 
Use require can_single_step_to_signal_handler

This changes some tests to use "require can_single_step_to_signal_handler".

17 months agoUse require is_elf_target
Tom Tromey [Wed, 14 Dec 2022 16:50:51 +0000 (09:50 -0700)] 
Use require is_elf_target

This changes some tests to use "require is_elf_target".

17 months agoUse require is_amd64_regs_target
Tom Tromey [Wed, 14 Dec 2022 16:49:10 +0000 (09:49 -0700)] 
Use require is_amd64_regs_target

This changes some tests to use "require is_amd64_regs_target".

17 months agoUse require is_aarch32_target
Tom Tromey [Wed, 14 Dec 2022 16:48:09 +0000 (09:48 -0700)] 
Use require is_aarch32_target

This changes some tests to use "require is_aarch32_target".

17 months agoUse require is_aarch64_target
Tom Tromey [Wed, 14 Dec 2022 16:47:30 +0000 (09:47 -0700)] 
Use require is_aarch64_target

This changes some tests to use "require is_aarch64_target".

17 months agoUse require support_displaced_stepping
Tom Tromey [Wed, 14 Dec 2022 16:45:31 +0000 (09:45 -0700)] 
Use require support_displaced_stepping

This changes some tests to use "require support_displaced_stepping".

17 months agoUse require !skip_avx_*
Tom Tromey [Wed, 14 Dec 2022 16:43:02 +0000 (09:43 -0700)] 
Use require !skip_avx_*

This changes some tests to use "require" with !skip_avx_*.

17 months agoUse require !skip_btrace_tests
Tom Tromey [Wed, 14 Dec 2022 16:42:37 +0000 (09:42 -0700)] 
Use require !skip_btrace_tests

This changes some tests to use "require !skip_btrace_tests".

17 months agoUse require !skip_btrace_pt_tests
Tom Tromey [Wed, 14 Dec 2022 16:41:23 +0000 (09:41 -0700)] 
Use require !skip_btrace_pt_tests

This changes some tests to use "require !skip_btrace_pt_tests" and
"require !skip_tsx_tests".

17 months agoUse require !skip_aarch64_sve_tests
Tom Tromey [Wed, 14 Dec 2022 16:40:44 +0000 (09:40 -0700)] 
Use require !skip_aarch64_sve_tests

This changes some tests to use "require !skip_aarch64_sve_tests".

17 months agoUse require !skip_ifunc_tests
Tom Tromey [Wed, 14 Dec 2022 16:39:54 +0000 (09:39 -0700)] 
Use require !skip_ifunc_tests

This changes some tests to use "require !skip_ifunc_tests".

17 months agoUse require !skip_hw_watchpoint_tests
Tom Tromey [Wed, 14 Dec 2022 16:38:35 +0000 (09:38 -0700)] 
Use require !skip_hw_watchpoint_tests

This changes some tests to use "require !skip_hw_watchpoint_tests".

17 months agoUse require !skip_ctf_tests
Tom Tromey [Wed, 14 Dec 2022 16:33:00 +0000 (09:33 -0700)] 
Use require !skip_ctf_tests

This changes some tests to use "require !skip_ctf_tests".

17 months agoUse require !skip_d_tests
Tom Tromey [Tue, 13 Dec 2022 23:12:18 +0000 (16:12 -0700)] 
Use require !skip_d_tests

This changes some tests to use "require !skip_d_tests".

17 months agoUse require !skip_go_tests
Tom Tromey [Tue, 13 Dec 2022 23:11:58 +0000 (16:11 -0700)] 
Use require !skip_go_tests

This changes some tests to use "require !skip_go_tests".

17 months agoUse require !skip_ada_tests
Tom Tromey [Tue, 13 Dec 2022 23:11:40 +0000 (16:11 -0700)] 
Use require !skip_ada_tests

This changes some tests to use "require !skip_ada_tests".

17 months agoUse require !skip_fortran_tests
Tom Tromey [Tue, 13 Dec 2022 23:10:09 +0000 (16:10 -0700)] 
Use require !skip_fortran_tests

This changes some tests to use "require !skip_fortran_tests".

17 months agoUse require !skip_rust_tests
Tom Tromey [Tue, 13 Dec 2022 23:08:13 +0000 (16:08 -0700)] 
Use require !skip_rust_tests

This changes some tests to use "require !skip_rust_tests".