0af202c239Accepting request 1246565 from devel:gcc
factory
Ana Guerrero
2025-02-18 18:08:57 +00:00
423981b360- Maintenance script qa.sh: * Add PR32712 kfail.
devel
Tom de Vries
2025-02-18 07:01:14 +00:00
783b8d9968- Mention changes in GDB 15: * The MPX commands "show/set mpx bound" have been deprecated, as Intel listed MPX as removed in 2019. * GDB index now contains information about the main function. * This speeds up startup when it is being used for some large binaries. * On hosts where threading is available, DWARF reading is now done in the background, resulting in faster startup. This can be controlled using "maint set dwarf synchronous". * Changed commands: * disassemble: Attempting to use both the 'r' and 'b' flags with the disassemble command will now give an error. Previously the 'b' flag would always override the 'r' flag. * gcore, generate-core-file: GDB now generates sparse core files, on systems that support it. * maintenance info line-table: Add an EPILOGUE-BEGIN column to the output of the command. It indicates if the line is considered the start of the epilogue, and thus a point at which the frame can be considered destroyed. * set unwindonsignal on|off, show unwindonsignal: These commands are now aliases for the new set/show unwind-on-signal. * target record-full: This command now gives an error if any unexpected arguments are found after the command. * list .: When using the command "list ." in a location that has no debug information or no file loaded, GDB now says that there is no debug information to print lines. This makes it more obvious that there is no information, as opposed to implying there is no inferior loaded. * New commands: * info missing-debug-handler: List all the registered missing debug handlers. * enable missing-debug-handler LOCUS HANDLER, disable missing-debug-handler LOCUS HANDLER: Enable or disable a missing debug handler with a name matching the regular expression HANDLER, in LOCUS. LOCUS can be 'global' to operate on global missing debug handler, 'progspace' to operate on handlers within the current program space, or can be a regular expression which is matched against the filename of the primary executable in each program space. * maintenance info linux-lwps: List all LWPs under control of the linux-nat target. * set remote thread-options-packet, show remote thread-options-packet: Set/show the use of the thread options packet. * set direct-call-timeout SECONDS, show direct-call-timeout, set indirect-call-timeout SECONDS, show indirect-call-timeout: These new settings can be used to limit how long GDB will wait for an inferior function call to complete. The direct timeout is used for inferior function calls from e.g. 'call' and 'print' commands, while the indirect timeout is used for inferior function calls from within a conditional breakpoint expression. The default for the direct timeout is unlimited, while the default for the indirect timeout is 30 seconds. These timeouts will only have an effect for targets that are operating in async mode. For non-async targets the timeouts are ignored, GDB will wait indefinitely for an inferior function to complete, unless interrupted by the user using Ctrl-C. * set unwind-on-timeout on|off, show unwind-on-timeout: These commands control whether GDB should unwind the stack when a timeout occurs during an inferior function call. The default is off, in which case the inferior will remain in the frame where the timeout occurred. When on, GDB will unwind the stack removing the dummy frame that was added for the inferior call, and restoring the inferior state to how it was before the inferior call started. * set unwind-on-signal on|off, show unwind-on-signal: These new commands replaces the existing set/show unwindonsignal. The old command is maintained as an alias. * New features in the GDB remote stub, GDBserver: * The --remote-debug and --event-loop-debug command line options have been removed. * The --debug command line option now takes an optional comma separated list of components to emit debug for. The currently supported components are: all, threads, event-loop, and remote. If no components are given then threads is assumed. * The 'monitor set remote-debug' and 'monitor set event-loop-debug' command have been removed. * The 'monitor set debug 0|1' command has been extended to take a component name, e.g.: 'monitor set debug COMPONENT off|on'. Possible component names are: all, threads, event-loop, and remote. * Python API: * New function gdb.notify_mi(NAME, DATA), that emits custom GDB/MI async notification. * New read/write attribute gdb.Value.bytes that contains a bytes object holding the contents of this value. * New module gdb.missing_debug that facilitates dealing with objfiles that are missing any debug information. * New function gdb.missing_debug.register_handler that can register an instance of a sub-class of gdb.missing_debug.MissingDebugInfo as a handler for objfiles that are missing debug information. * New class gdb.missing_debug.MissingDebugInfo which can be sub-classed to create handlers for objfiles with missing debug information. * Stop events now have a "details" attribute that holds a dictionary that carries the same information as an MI "*stopped" event. * New function gdb.interrupt(), that interrupts GDB as if the user typed control-c. * New gdb.InferiorThread.ptid_string attribute. This read-only attribute contains the string that appears in the 'Target Id' column of the 'info threads' command output. * It is no longer possible to create new gdb.Progspace object using 'gdb.Progspace()', this will result in a TypeError. Progspace objects can still be obtained through calling other API functions, for example 'gdb.current_progspace()'. * User defined attributes can be added to a gdb.Inferior object, these will be stored in the object's new Inferior.__dict__ attribute. * User defined attributes can be added to a gdb.InferiorThread object, these will be stored in the object's new InferiorThread.__dict__ attribute. * New constants gdb.SYMBOL_TYPE_DOMAIN, gdb.SYMBOL_FUNCTION_DOMAIN, and gdb.SEARCH_*_DOMAIN corresponding to all the existing symbol domains. Symbol lookup can now search in multiple domains at once, and can also narrowly search for just a type or function. * Debugger Adapter Protocol changes: * GDB now emits the "process" event. * GDB now supports the "cancel" request. * The "attach" request now supports specifying the program. * New command "set debug dap-log-level" controls DAP logging. * The "set debug dap-log-file" command is now documented. This command was available in GDB 14 but not documented. * Guile API: * New constants SYMBOL_TYPE_DOMAIN, SYMBOL_FUNCTION_DOMAIN, and SEARCH_*_DOMAIN corresponding to all the existing symbol domains. Symbol lookup can now search in multiple domains at once, and can also narrowly search for just a type or function. * Remote packets: * New stop reason clone: Indicates that a clone system call was executed. * New remote packets: * QThreadOptions: Enable/disable optional event reporting, on a per-thread basis. Currently supported options are GDB_THREAD_OPTION_CLONE, to enable clone event reporting, and GDB_THREAD_OPTION_EXIT to enable thread exit event reporting. * QThreadOptions in qSupported: * The qSupported packet allows GDB to inform the stub it supports the QThreadOptions packet, and the qSupported response can contain the set of thread options the remote stub supports. * qIsAddressTagged: This new packet allows GDB to query the stub about a given address to check if it is tagged or not. Many memory tagging-related GDB commands need to perform this check before they read/write the allocation tag related to an address. Currently, however, this is done through a 'vFile' request to read the file /proc/<PID>/smaps and check if the address is in a region reported as memory tagged. Since not all targets have a notion of what the smaps file is about, this new packet provides a more generic way to perform such a check.
Tom de Vries
2025-02-17 16:43:29 +00:00
5d7d95a04b- Maintenance script qa.sh: * Add kfail for PR32678. * Add kfail for missing g++ on SLE-12. * Drop Leap 15.5, add 16.0. * Move PR32167 kfail from kfail_sle12 to kfail, and extend pattern. - Use gcc 11 instead gcc 9 for SLE-12. - Maintenance script qa-local.sh: * Drop Leap 15.5, add 16.0.
Tom de Vries
2025-02-11 17:54:19 +00:00
3825d1b07b- Patches dropped: * gdb-rhbz1261564-aarch64-hw-watchpoint-test.patch * gdb-test-bt-cfi-without-die.patch * fixup-gdb-rhbz1261564-aarch64-hw-watchpoint-test.pat.patch * fixup-gdb-test-bt-cfi-without-die.patch - Maintenance script import-fedora.sh: * Add gdb-rhbz1261564-aarch64-hw-watchpoint-test.patch and gdb-test-bt-cfi-without-die.patch to skip_patches.
Tom de Vries
2025-02-06 08:46:11 +00:00
a41233f7ca- Update to fedora rawhide @ 1116b36. - Patches dropped: * gdb-test-dw2-aranges.patch * fixup-gdb-test-dw2-aranges.patch
Tom de Vries
2025-02-06 08:12:17 +00:00
cced140f8c- Update to fedora rawhide @ 7c66c1c. - Patches dropped: * gdb-6.6-testsuite-timeouts.patch
Tom de Vries
2025-02-06 08:07:24 +00:00
cad97b34fd- Update to fedora rawhide @ 2294280. - Patches dropped: * gdb-simultaneous-step-resume-breakpoint-test.patch
Tom de Vries
2025-02-06 08:01:43 +00:00
dda65804ef- Update to fedora rawhide @ 926c064 (gdb 15.2). - Patches dropped: * gdb-6.5-section-num-fixup-test.patch * gdb-rhbz1007614-memleak-infpy_read_memory-test.patch - Maintenance script qa-local.sh: * Update version to 15.2.
Tom de Vries
2025-01-31 17:36:56 +00:00
6817e1b56f- Update to fedora rawhide @ 4b0a2e1. - Patches added: * gdb-catchpoint-re-set.patch
Tom de Vries
2025-01-31 07:18:36 +00:00
9842821ab1- Update to fedora rawhide @ d8b64d9. - Patches dropped: * gdb-6.6-bz229517-gcore-without-terminal.patch
Tom de Vries
2025-01-30 15:27:43 +00:00
2bf571b369- Update to fedora rawhide @ a93b826. - Patches dropped: * gdb-rhbz947564-findvar-assertion-frame-failed-testcase.patch - Maintenance script import-fedora.sh: * Add gdb-remove-use-of-py-isascii to skip_patches. * Remove gdb-6.7-ppc-clobbered-registers-O2-test.patch from skip_patches.
Tom de Vries
2025-01-30 15:23:43 +00:00
8686faa338- Always BuildRequire gcc-c++ to fix missing testing compiler on SLE-12. - Patches added: * gdb-testsuite-handle-unordered-dict-in-gdb.python-py.patch - Maintenance script qa.sh: * Add PR32167 kfail.
Tom de Vries
2025-01-30 12:47:05 +00:00
bb279386a7- Update to fedora rawhide @ f379362. - Patches modified: * gdb-6.6-buildid-locate.patch
Tom de Vries
2025-01-23 09:59:00 +00:00
e572ca82d0- Update to fedora rawhide @ e27fd6f. - Patches modified: * gdb-6.6-buildid-locate-rpm.patch * gdb-6.6-buildid-locate.patch
Tom de Vries
2025-01-23 09:12:33 +00:00
10596c59bb- Add "BuildRequires: libgo23" to fix unresolved for factory.
Tom de Vries
2025-01-23 08:24:47 +00:00
50b39c9442Accepting request 1239238 from devel:gcc
Ana Guerrero
2025-01-22 15:30:52 +00:00
90a84c677b- riscv-lrsc.patch: Fix stepping over atomic sequences
Tom de Vries
2025-01-21 10:48:21 +00:00
4ba6c6a136- Maintenance script qa.sh: * Add PR29770 xfail (glibc). * Add PR31229 kfail.
Tom de Vries
2025-01-08 13:22:00 +00:00
013a364a75Accepting request 1230185 from devel:gcc
Ana Guerrero
2024-12-12 20:14:24 +00:00
63be1956ea- Maintenance script qa.sh: * Add PR32446 kfail. * Add to be investigated FAILs on Leap 15.6 ppc64le.
Tom de Vries
2024-12-11 18:14:44 +00:00
c810077763- Patches added: * gdb-testsuite-avoid-intermittent-failures-on-a-debug.patch - Maintenance script qa.sh: * Add PR32439 kfail.
Tom de Vries
2024-12-10 10:24:03 +00:00
d789f63ad1- Patches added (jsc#PED-10258): * gdb-tdep-s390-add-arch15-record-replay-support.patch
Tom de Vries
2024-12-09 14:19:58 +00:00
6636def027- Maintenance script qa.sh: * Move PR26867 kfail from kfail_factory to kfail. * Merge PR28468 kfail with PR26867 kfail.
Tom de Vries
2024-08-29 13:54:06 +00:00
7bdfe4b73b- Maintenance script qa.sh: * Restore yama ptrace_scope == 1 kfails, aaa_base-yama-enable-ptrace doesn't work. * Enable yama ptrace_scope == 1 kfails for SLFO. * Add PR32121 kfail. * Drop Leap 15.3 and 15.4, add Leap 15.6. * Replace ALP with SLFO. * Move PR28468 kfail from kfail_factory to kfail.
Tom de Vries
2024-08-28 15:28:45 +00:00
825cf5a5da- Maintenance script qa.sh: * Remove python2 related PR29245 kfail. * Remove PR30518 kfail. * Remove yama ptrace_scope == 1 kfails. * Remove PR28065 kfail. - Patches added (swo#32081): * gdb-symtab-return-correct-reader-for-top-level-cu-in.patch - Add "BuildRequires: aaa_base-yama-enable-ptrace" on tumbleweed. - Maintenance script qa-local.sh: * Add SLFO and Leap 15.6, drop Leap 15.3 and 15.4 and ALP.
Tom de Vries
2024-08-28 05:32:23 +00:00
f86a9968f0Accepting request 1181722 from devel:gcc
Ana Guerrero
2024-06-20 14:46:45 +00:00
b52e98cba4- Mention changes in GDB 14.
Tom de Vries
2024-06-19 10:25:58 +00:00
90784d07bf- Fix mention of gdb-exp-redo-cast-handling-for-indirection.patch. * gdb-exp-redo-cast-handling-for-indirection.patch
Tom de Vries
2024-06-18 12:21:48 +00:00
d28658ea64- Maintenance script qa-remote.sh: * Filter out SLE-11. - Maintenance script qa.sh: * Add gdb.guile/scm-breakpoint.exp kfail. * Fix kfail_powerpc64le_sle12 selection.
Tom de Vries
2024-06-15 08:57:12 +00:00
50d140c7eaAccepting request 1170040 from devel:gcc
Ana Guerrero
2024-04-25 18:47:33 +00:00
9bf31d3011- Maintenance script qa.sh: * Add PR31671 unresolved. * Add unresolved for yama ptrace_scope == 1. * Limit PR31648 unresolved to SLE-11.
Tom de Vries
2024-04-24 13:40:05 +00:00
4a53ebe1ed- Patch added (swo#31524, bsc#1222188): * make-pascal_language-print_type-handle-varstring-nul.patch - Renable gcc-fortran for SLE-11. - Use system compiler (gcc 4.3.4) for testing all languages on SLE-11. - Maintenance script qa.sh: * Ignore all fails for SLE-11. - Maintenance script import-fedora.sh: * Use %patch -P N instead of deprecated %patchN. * Drop patch skips: * gdb-6.5-readline-long-line-crash-test.patch * gdb-6.7-charsign-test.patch * gdb-test-ivy-bridge.patch * gdb-ppc-power7-test.patch * gdb-6.3-bz140532-ppc-unwinding-test.patch - Patches added (import from fedora rawhide @ a27201b): * gdb-bz2196395-debuginfod-legacy-openssl-crash.patch * gdb-rhbz-2232086-cpp-ify-mapped-symtab.patch * gdb-rhbz-2232086-generate-dwarf-5-index-consistently.patch * gdb-rhbz-2232086-generate-gdb-index-consistently.patch * gdb-rhbz-2232086-reduce-size-of-gdb-index.patch * gdb-rhbz2232086-refactor-selftest-support.patch - Patches updated (import from fedora rawhide @ a27201b): * gdb-6.6-buildid-locate-rpm.patch * gdb-6.6-buildid-locate.patch * gdb-fedora-libncursesw.patch * gdb-rhbz2233961-CVE-2022-4806.patch * gdb-rhbz2233965-memory-leak.patch - Patches updated: * gdb-6.6-buildid-locate-rpm-suse.patch - Patches deleted (import from fedora rawhide @ a27201b): * gdb-rhbz1553104-s390x-arch12-test.patch * gdb-lineno-makeup-test.patch * gdb-6.3-bz202689-exec-from-pthread-test.patch * gdb-6.5-bz109921-DW_AT_decl_file-test.patch * gdb-6.5-ia64-libunwind-leak-test.patch * gdb-6.5-last-address-space-byte-test.patch * gdb-6.5-missed-trap-on-step-test.patch * gdb-6.5-sharedlibrary-path.patch * gdb-6.7-testsuite-stable-results.patch * gdb-6.8-bz442765-threaded-exec-test.patch * gdb-ccache-workaround.patch * gdb-opcodes-clflushopt-test.patch * gdb-rhbz1186476-internal-error-unqualified-name-re-set-test.patch * gdb-rhbz1350436-type-printers-error.patch * gdb-rhbz2196395-debuginfod-legacy-openssl-crash.patch * gdb-rhel5.9-testcase-xlf-var-inside-mod.patch * gdb-test-pid0-core.patch - Patches deleted: * fixup-gdb-rhbz1553104-s390x-arch12-test.patch * fixup-2-gdb-rhbz1553104-s390x-arch12-test.patch * fixup-gdb-lineno-makeup-test.patch * fixup-gdb-6.6-buildid-locate-rpm.patch - Remove commented out mention of dropped patch gdb-fix-selftest-fails-with-gdb-build-with-O2-flto.patch.
Tom de Vries
2024-04-24 09:31:51 +00:00
2910ab59deAccepting request 1168788 from devel:gcc
Ana Guerrero
2024-04-18 20:08:02 +00:00
5a54e3fd0b- Maintenance script qa.sh: * Add PR31648 KFAIL. * Handle yama ptrace_scope == 1.
Tom de Vries
2024-04-18 08:23:24 +00:00
9a26e73894- Patches added (bsc#1220490): * fixup-gdb-6.6-buildid-locate-rpm.patch
Tom de Vries
2024-04-10 15:43:01 +00:00
b5d1c65ac2Accepting request 1159816 from devel:gcc
Ana Guerrero
2024-03-21 16:00:06 +00:00
93003f4505- Avoid using a %gcc macro to support using gcc 4.8 for building on SLE11. Use the regular language compilers for testing.Richard Biener2024-03-20 10:38:11 +00:00
69639f4e6dAccepting request 1152308 from devel:gcc
Ana Guerrero
2024-02-28 18:45:23 +00:00
16c32eb249Accepting request 1152215 from home:dimstar:rpm4.20:g
Tom de Vries
2024-02-27 14:38:23 +00:00
ff5514afc9- Maintenance script qa.sh: * Add PR31214 kfail. * Add kfail for fails in gdb.reverse/solib-precsave.exp / gdb.reverse/solib-reverse.exp fixed by commit fe6356def67 ("PowerPC and aarch64: Fix reverse stepping failure"). * Extend PR31004 kfail. - Don't require %{python}-base for gdb-testresults package. - Fix debuginfod handling: * Enable for sle_version >= 150400 (bsc#1185605, jsc#PED-1149, jsc#PED-1138), SLE15-SP4 and later. * Enable for suse_version >= 1600, ALP and Tumbleweed. * Add back "BuildRequires: libdebuginfod1" to prevent selecting dummy variant. * Add "BuildRequires: debuginfod-client" to prevent unresolved due to conflict with dummy variant. * Add --with-debuginfod=yes to prevent silently dropping support. - Patches added (backport from master): * gdb-testsuite-add-missing-no-prompt-anchor-in-gdb.ba.patch * gdb-testsuite-remove-spurious-in-save_vars.patch
Tom de Vries
2024-02-01 07:32:03 +00:00
0c21457f3aAccepting request 1133867 from devel:gcc
Ana Guerrero
2023-12-19 22:15:32 +00:00
5a6ab0a4de- Maintenance script qa.sh: * Expand kfail pattern for PR29897. * Add PR29965 kfail.
Tom de Vries
2023-03-03 13:20:23 +00:00
e2ff531bf0- Re-enable testing all test-cases, undoing accidental change in previous commit. - Add --with=for_chroot.
Tom de Vries
2023-03-02 08:37:10 +00:00
eee78334d3- Maintenance script qa.sh: - Add openSUSE Leap 15.4 ppc64le to known clean configs. - Add SLE-15 ppc64le to known clean configs.
Tom de Vries
2022-12-01 08:52:53 +00:00
a8fd42eea7- Maintenance script qa.sh: - Update PR26363 internal error pattern. - Add PR29790 kfail. - Add -powerpc64le option. - Generalize PR26915 kfail patterns. - Move PR28478 patterns from kfail_factory to kfail. - Add PR29781 and PR27813 kfails.
Tom de Vries
2022-11-21 22:03:28 +00:00
afca17004c- Maintenance script qa-remote.sh: * Use qa.sh alongside qa-remote.sh. - Maintenance script qa.sh: * Add PR29783 internal error. - Patch removed (intended effect not observed): * gdb-fix-watchpoints-triggered.patch
Tom de Vries
2022-11-15 08:25:10 +00:00