call_pn.exp 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # Copyright 2010-2022 Free Software Foundation, Inc.
  2. #
  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. load_lib "ada.exp"
  16. if { [skip_ada_tests] } { return -1 }
  17. standard_ada_testfile foo
  18. if {[gdb_compile_ada "${srcfile}" "${binfile}" executable [list debug ]] != "" } {
  19. return -1
  20. }
  21. clean_restart ${testfile}
  22. set bp_location [gdb_get_line_number "STOP" ${testdir}/foo.adb]
  23. if ![runto "foo.adb:$bp_location" ] then {
  24. perror "Couldn't run ${testfile}"
  25. return
  26. }
  27. # The xfail mentioned below triggers for the "after" print, but may not
  28. # trigger for the "before" print, though it will for -readnow. This is
  29. # related to PR25764 - "LOC_UNRESOLVED symbol missing from partial symtab".
  30. # Stabilize test results by ensuring that the xfail triggers for the "before"
  31. # print.
  32. gdb_test_no_output "maint expand-symtabs"
  33. # The xfail is for PR gcc/94469, which occurs with target board
  34. # unix/-flto/-O0/-flto-partition=none/-ffat-lto-objects and gcc-8 and later.
  35. # Note: We don't check for the filename in xfail_re because it might be
  36. # wrong, filed as gdb PR25771.
  37. set xfail_re \
  38. [multi_line \
  39. "Multiple matches for last_node_id" \
  40. "\\\[0\\\] cancel" \
  41. "\\\[1\\\] pck\.last_node_id at .*.adb:17" \
  42. "\\\[2\\\] pck\.last_node_id at .*.adb:17" \
  43. "> $"]
  44. # Make sure that last_node_id is set to zero...
  45. gdb_test_multiple "print last_node_id" "print last_node_id before calling pn" {
  46. -re $xfail_re {
  47. xfail $gdb_test_name
  48. # One of the choices will print the correct value, the other one
  49. # <optimized out>. Since we don't known which one to choose to get
  50. # the correct value, cancel.
  51. gdb_test_multiple "0" "cancel after xfail 1" {
  52. -re -wrap "cancelled" {
  53. }
  54. }
  55. }
  56. -re -wrap "= 0" {
  57. pass $gdb_test_name
  58. }
  59. }
  60. # Now, call procedure Pn, which should set Last_Node_Id to the value
  61. # of the parameter used in the function call. Verify that we can print
  62. # the returned value correctly, while we're at it.
  63. gdb_test "print pn(4321)" "= 4321"
  64. # Make sure that last_node_id now has the correct value...
  65. gdb_test_multiple "print last_node_id" "print last_node_id after calling pn" {
  66. -re $xfail_re {
  67. xfail $gdb_test_name
  68. # Cancel
  69. gdb_test_multiple "0" "cancel after xfail 2" {
  70. -re -wrap "cancelled" {
  71. }
  72. }
  73. }
  74. -re -wrap "= 4321" {
  75. pass $gdb_test_name
  76. }
  77. }