arrayptr.exp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # Copyright 2008-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. foreach_with_prefix scenario {all minimal} {
  19. set flags [list debug additional_flags=-fgnat-encodings=$scenario]
  20. if {[gdb_compile_ada "${srcfile}" "${binfile}" executable $flags] != ""} {
  21. return -1
  22. }
  23. clean_restart ${testfile}
  24. set bp_location [gdb_get_line_number "STOP" ${testdir}/foo.adb]
  25. if ![runto "foo.adb:$bp_location" ] then {
  26. perror "Couldn't run ${testfile}"
  27. return
  28. }
  29. gdb_test "print string_p" \
  30. "= \\(foo\\.string_access\\) 0x\[0-9a-zA-Z\]+"
  31. gdb_test "print string_p(3..4)" "= \"ll\""
  32. gdb_test "print null_string" "= \\(foo\\.string_access\\) 0x0"
  33. gdb_test "print arr_ptr" "= \\(access foo\\.little_array\\) 0x\[0-9a-zA-Z\]+"
  34. gdb_test "print arr_ptr(2)" "= 22"
  35. gdb_test "print arr_ptr(3..4)" "= \\(3 => 23, 24\\)"
  36. gdb_test "ptype string_access" "= access array \\(<>\\) of character"
  37. # GNAT >= 12.0 has the needed fix here.
  38. set xfail_expected 0
  39. if {$scenario == "minimal" && ![test_compiler_info {gcc-1[2-9]-*}]} {
  40. set xfail_expected 1
  41. }
  42. gdb_test_multiple "print pa_ptr.all" "" {
  43. -re -wrap " = \\(10, 20, 30, 40, 50, 60, 62, 63, -23, 42\\)" {
  44. pass $gdb_test_name
  45. }
  46. -re -wrap " = \[0-9\]+" {
  47. if { $xfail_expected } {
  48. xfail $gdb_test_name
  49. } else {
  50. fail $gdb_test_name
  51. }
  52. }
  53. }
  54. set xfail_cannot_subscript_re \
  55. "cannot subscript or call something of type `foo__packed_array_ptr'"
  56. gdb_test_multiple "print pa_ptr(3)" "" {
  57. -re -wrap " = 30" {
  58. pass $gdb_test_name
  59. }
  60. -re -wrap $xfail_cannot_subscript_re {
  61. if { $xfail_expected } {
  62. xfail $gdb_test_name
  63. } else {
  64. fail $gdb_test_name
  65. }
  66. }
  67. }
  68. set xfail_attempt_to_index_re \
  69. "Attempt to index or call something other than an array or function"
  70. gdb_test_multiple "print pa_ptr.all(3)" "" {
  71. -re -wrap " = 30" {
  72. pass $gdb_test_name
  73. }
  74. -re -wrap $xfail_attempt_to_index_re {
  75. if { $xfail_expected } {
  76. xfail $gdb_test_name
  77. } else {
  78. fail $gdb_test_name
  79. }
  80. }
  81. }
  82. }