watchthreads-reorder.exp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # This testcase is part of GDB, the GNU debugger.
  2. # Copyright 2009-2022 Free Software Foundation, Inc.
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 3 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. # Test GDB can cope with two watchpoints being hit by different threads at the
  16. # same time, GDB reports one of them and after "continue" to report the other
  17. # one GDB should not be confused by differently set watchpoints that time.
  18. # This is the goal of "reorder1". "reorder0" tests the basic functionality of
  19. # two watchpoints being hit at the same time, without reordering them during the
  20. # stop. The formerly broken functionality is due to the all-stop mode default
  21. # "show breakpoint always-inserted" being "off". Formerly the remembered hit
  22. # could be assigned during continuation of a thread with pending SIGTRAP to the
  23. # different/new watchpoint, just based on the watchpoint/debug register number.
  24. if {[skip_hw_watchpoint_access_tests]
  25. || [skip_hw_watchpoint_multi_tests]
  26. || ![istarget *-*-linux*]} {
  27. return 0
  28. }
  29. standard_testfile
  30. if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" ${binfile} executable [list debug additional_flags=-lrt]] != "" } {
  31. return -1
  32. }
  33. foreach reorder {0 1} { with_test_prefix "reorder$reorder" {
  34. clean_restart $testfile
  35. gdb_test "set can-use-hw-watchpoints 1"
  36. if ![runto_main] {
  37. return -1
  38. }
  39. # Use "rwatch" as "watch" would report the watchpoint changed just based on its
  40. # read memory value during a stop by unrelated event. We are interested in not
  41. # losing the hardware watchpoint trigger.
  42. gdb_test "rwatch thread1_rwatch" "Hardware read watchpoint \[0-9\]+: thread1_rwatch"
  43. set test "rwatch thread2_rwatch"
  44. gdb_test_multiple $test $test {
  45. -re "Target does not support this type of hardware watchpoint\\.\r\n$gdb_prompt $" {
  46. # ppc64 supports at most 1 hw watchpoints.
  47. unsupported $test
  48. return
  49. }
  50. -re "Hardware read watchpoint \[0-9\]+: thread2_rwatch\r\n$gdb_prompt $" {
  51. pass $test
  52. }
  53. }
  54. gdb_breakpoint [gdb_get_line_number "break-at-exit"]
  55. # The watchpoints can happen in arbitrary order depending on random:
  56. # SEL: Found 2 SIGTRAP events, selecting #[01]
  57. # As GDB contains no srand() on the specific host/OS it will behave always the
  58. # same. Such order cannot be guaranteed for GDB in general.
  59. gdb_test "continue" \
  60. "Hardware read watchpoint \[0-9\]+: thread\[12\]_rwatch\r\n\r\nValue = 0\r\n0x\[0-9a-f\]+ in thread\[12\]_func .*" \
  61. "continue a"
  62. if $reorder {
  63. # GDB orders watchpoints by their addresses so inserting new variables
  64. # with lower addresses will shift the former watchpoints to higher
  65. # debug registers.
  66. gdb_test "rwatch unused1_rwatch" "Hardware read watchpoint \[0-9\]+: unused1_rwatch"
  67. gdb_test "rwatch unused2_rwatch" "Hardware read watchpoint \[0-9\]+: unused2_rwatch"
  68. }
  69. gdb_test "continue" \
  70. "Hardware read watchpoint \[0-9\]+: thread\[12\]_rwatch\r\n\r\nValue = 0\r\n0x\[0-9a-f\]+ in thread\[12\]_func .*" \
  71. "continue b"
  72. # While the debug output itself is not checked in this testcase one bug was
  73. # found in the DEBUG_INFRUN code path.
  74. gdb_test "set debug infrun 1"
  75. set prompt "$gdb_prompt \\\[infrun\\\] fetch_inferior_event: exit\r\n$"
  76. gdb_test_multiple "continue" "continue to breakpoint: break-at-exit" -prompt $prompt {
  77. -re ".*break-at-exit.*$prompt$" {
  78. pass $gdb_test_name
  79. }
  80. }
  81. }}