Fix more cases of improper test names
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / randomize.exp
index 43fef8f5e3f48516fc332aa9f225f481c28d33ea..2c9d6d0446b0504b84cce25682b0144d5b4c200d 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
+# Copyright 2008-2016 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-set testfile randomize
-set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
-    untested "Couldn't compile test program"
+standard_testfile
+
+if {[prepare_for_testing "failed to prepare" $testfile $srcfile debug]} {
     return -1
 }
 
-# Get things started.
-
-gdb_exit
-gdb_start
-gdb_reinitialize_dir $srcdir/$subdir
-gdb_load ${binfile}
-
 proc address_get { testname } {
     global gdb_prompt
 
@@ -51,11 +42,11 @@ proc address_get { testname } {
 set test "set disable-randomization off"
 gdb_test_multiple "${test}" "${test}" {
     -re "Disabling randomization .* unsupported .*$gdb_prompt $" {
-       untested "Disabling randomization is not supported on this Linux GDB"
+       untested "disabling randomization is not supported on this Linux GDB"
        return -1
     }
     -re "No symbol .* in current context.*$gdb_prompt $" {
-       untested "Disabling randomization is not supported on this GDB platform"
+       untested "disabling randomization is not supported on this GDB platform"
        return -1
     }
     -re "$gdb_prompt $" {
@@ -70,13 +61,13 @@ set addr1 [address_get "randomized first address"]
 set addr2 [address_get "randomized second address"]
 set test "randomized addresses should not match"
 if [string equal $addr1 $addr2] {
-    untested "No randomization detected on this system"
+    untested "no randomization detected on this system"
     return -1
 } else {
     pass $test
 }
 
-gdb_test "set disable-randomization on"
+gdb_test_no_output "set disable-randomization on"
 gdb_test "show disable-randomization"        \
          "Disabling randomization .* is on." \
          "show disable-randomization on"
This page took 0.026243 seconds and 4 git commands to generate.