* rs6000-tdep.c (ppc_displaced_step_fixup): Change type of
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / randomize.exp
CommitLineData
10568435
JK
1# Copyright 2008 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
16set testfile randomize
17set srcfile ${testfile}.c
18set binfile ${objdir}/${subdir}/${testfile}
19if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
20 untested "Couldn't compile test program"
21 return -1
22}
23
24# Get things started.
25
26gdb_exit
27gdb_start
28gdb_reinitialize_dir $srcdir/$subdir
29gdb_load ${binfile}
30
31proc address_get { testname } {
32 global gdb_prompt
33
34 if {![runto_main]} {
35 return -1
36 }
37
38 # Do not rely on printf; some test configurations don't work with stdio.
39
40 gdb_breakpoint [gdb_get_line_number "print p"]
41 gdb_continue_to_breakpoint "$testname - address set"
42
43 gdb_test_multiple "print/x p" $testname {
44 -re "\\$\[0-9\]+ = (0x\[0-9a-f\]*)\r?\n$gdb_prompt $" {
45 pass $testname
46 return $expect_out(1,string)
47 }
48 }
49}
50
51set test "set disable-randomization off"
52gdb_test_multiple "${test}" "${test}" {
53 -re "Disabling randomization .* unsupported .*$gdb_prompt $" {
54 untested "No randomization supported by this GDB"
55 return -1
56 }
57 -re "$gdb_prompt $" {
58 pass $test
59 }
60}
61gdb_test "show disable-randomization" \
62 "Disabling randomization .* is off." \
63 "show disable-randomization off"
64
65set addr1 [address_get "randomized first address"]
66set addr2 [address_get "randomized second address"]
67set test "randomized addresses should not match"
68if {$addr1 eq $addr2} {
69 untested "No randomization detected on this system"
70 return -1
71} else {
72 pass $test
73}
74
75gdb_test "set disable-randomization on"
76gdb_test "show disable-randomization" \
77 "Disabling randomization .* is on." \
78 "show disable-randomization on"
79
80set addr1 [address_get "fixed first address"]
81set addr2 [address_get "fixed second address"]
82set test "fixed addresses should match"
83if {$addr1 eq $addr2} {
84 pass $test
85} else {
86 fail $test
87}
This page took 0.025564 seconds and 4 git commands to generate.