Remove unused support for target-based exception catching.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / relational.exp
index 6a0b38acad05e8060dd231727f66a7e6e212ec03..503e50b2deb77edc76001804994e65d02d9b7b69 100644 (file)
@@ -1,18 +1,17 @@
-# Copyright (C) 1998 Free Software Foundation, Inc.
+# Copyright 1998, 1999, 2007 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
-# the Free Software Foundation; either version 2 of the License, or
+# the Free Software Foundation; either version 3 of the License, or
 # (at your option) any later version.
-# 
+#
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 # Please email any bugs, comments, and/or additions to this file to:
 # bug-gdb@prep.ai.mit.edu
@@ -38,10 +37,14 @@ set bug_id 0
 set testfile "int-type"
 set srcfile ${testfile}.c
 set binfile ${objdir}/${subdir}/${testfile}
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-w}] != "" } {
-     gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
+     untested relational.exp
+     return -1
     }
 
+if [get_compiler_info ${binfile}] {
+    return -1;
+}
 
 gdb_exit
 gdb_start
@@ -108,7 +111,7 @@ gdb_expect {
 
 send_gdb "print x < y\n"
 gdb_expect {
-    -re ".*0.*$gdb_prompt $" {
+    -re ".*$false.*$gdb_prompt $" {
         pass "print value of x<y"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<y" }
@@ -117,7 +120,7 @@ gdb_expect {
 
 send_gdb "print x <= y\n"
 gdb_expect {
-    -re ".*0.*$gdb_prompt $" {
+    -re ".*$false.*$gdb_prompt $" {
         pass "print value of x<=y"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<=y" }
@@ -126,7 +129,7 @@ gdb_expect {
 
 send_gdb "print x > y\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x>y"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>y" }
@@ -135,7 +138,7 @@ gdb_expect {
 
 send_gdb "print x >= y\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x>=y"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>=y" }
@@ -144,7 +147,7 @@ gdb_expect {
 
 send_gdb "print x == y\n"
 gdb_expect {
-    -re ".*0.*$gdb_prompt $" {
+    -re ".*$false.*$gdb_prompt $" {
         pass "print value of x==y"
       }
     -re ".*$gdb_prompt $" { fail "print value of x==y" }
@@ -153,7 +156,7 @@ gdb_expect {
 
 send_gdb "print x != y\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x!=y"
       }
     -re ".*$gdb_prompt $" { fail "print value of x!=y" }
@@ -172,7 +175,7 @@ gdb_test "set variable z=2" ""  "set variable z"
 
 send_gdb "print x < y < z\n"
 gdb_expect {
-    -re ".*1\r\n$gdb_prompt $" {
+    -re ".*$true.*\r\n$gdb_prompt $" {
         pass "print value of x<y<z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<y<z" }
@@ -181,7 +184,7 @@ gdb_expect {
 
 send_gdb "print x <= y <= z\n"
 gdb_expect {
-    -re ".*1\r\n$gdb_prompt $" {
+    -re ".*$true\r\n$gdb_prompt $" {
         pass "print value of x<=y<=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<=y<=z" }
@@ -190,7 +193,7 @@ gdb_expect {
 
 send_gdb "print x > y > z\n"
 gdb_expect {
-    -re ".*0\r\n$gdb_prompt $" {
+    -re ".*$false.*\r\n$gdb_prompt $" {
         pass "print value of x>y>z"
       }
     -re 8".*$gdb_prompt $" { fail "print value of x>y>z" }
@@ -199,7 +202,7 @@ gdb_expect {
 
 send_gdb "print x >= y >= z\n"
 gdb_expect {
-    -re ".*0\r\n$gdb_prompt $" {
+    -re ".*$false.*\r\n$gdb_prompt $" {
         pass "print value of x>=y>=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>=y>=z" }
@@ -213,7 +216,7 @@ gdb_test "set variable z=1" ""  "set variable z"
 
 send_gdb "print x == y == z\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x==y==z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x==y==z" }
@@ -225,7 +228,7 @@ gdb_test "set variable z=0" ""  "set variable z"
 
 send_gdb "print x != y != z\n"
 gdb_expect {
-    -re ".*0\r\n$gdb_prompt $" {
+    -re ".*$false\r\n$gdb_prompt $" {
         pass "print value of x!=y!=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x!=y!=z" }
@@ -242,7 +245,7 @@ gdb_test "set variable z=2" ""  "set variable z"
 
 send_gdb "print x < y == z\n"
 gdb_expect {
-    -re ".*0.*$gdb_prompt $" {
+    -re ".*$false.*$gdb_prompt $" {
         pass "print value of x<y==z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<y==z" }
@@ -252,7 +255,7 @@ gdb_expect {
 # 0  2  2
 send_gdb "print x < y != z\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x<y!=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<y!=z" }
@@ -267,7 +270,7 @@ gdb_test "set variable z=1" ""  "set variable z"
 # 2 3 1
 send_gdb "print x < y <= z\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x<y<=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<y<=z" }
@@ -278,7 +281,7 @@ gdb_expect {
 # 2 3 1
 send_gdb "print x < y >= z\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x<y>=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<y>=z" }
@@ -292,7 +295,7 @@ gdb_test "set variable z=0" "" " set variable z"
 # 2 3 0
 send_gdb "print x < y > z\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x<y>z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<y>z" }
@@ -305,7 +308,7 @@ gdb_test "set variable x=1" "" " set variable x"
 # 1 3 0
 send_gdb "print x > y >= z\n"
 gdb_expect {
-    -re ".*1.*$gdb_prompt $" {
+    -re ".*$true.*$gdb_prompt $" {
         pass "print value of x>y>=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>y>=z" }
@@ -318,7 +321,7 @@ gdb_test "set variable z=2" "" " set variable z"
 # 1 3 2
 send_gdb "print x > y == z\n"
 gdb_expect {
-    -re ".*0.*$gdb_prompt $" {
+    -re ".*$false.*$gdb_prompt $" {
         pass "print value of x>y==z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>y==z" }
@@ -332,7 +335,7 @@ gdb_test "set variable z=0" "" " set variable z"
 # 2 3 0
 send_gdb "print x > y != z\n"
 gdb_expect {
-    -re ".*0.*$gdb_prompt $" {
+    -re ".*$false.*$gdb_prompt $" {
         pass "print value of x>y!=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>y!=z" }
@@ -345,7 +348,7 @@ gdb_test "set variable x=4" "" "set x to 4"
 # 4 3 0
 send_gdb "print x > y <= z\n"
 gdb_expect {
-    -re ".*0.*$gdb_prompt $" {
+    -re ".*$false.*$gdb_prompt $" {
         pass "print value of x>y<=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>y<=z" }
@@ -355,7 +358,7 @@ gdb_expect {
 # 4 3 0
 send_gdb "print x >= y == z\n"
 gdb_expect {
-    -re ".*0\r\n$gdb_prompt $" {
+    -re ".*$false\r\n$gdb_prompt $" {
         pass "print value of x>=y==z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>=y==z" }
@@ -368,7 +371,7 @@ gdb_test "set variable x=2" "" " set variable x"
 # 2 3 0
 send_gdb "print x >= y != z\n"
 gdb_expect {
-    -re ".*0\r\n$gdb_prompt $" {
+    -re ".*$false\r\n$gdb_prompt $" {
         pass "print value of x>=y!=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>=y!=z" }
@@ -382,7 +385,7 @@ gdb_test "set variable z=4" "" " set variable z"
 # 0 3 4 
 send_gdb "print x >= y <= z\n"
 gdb_expect {
-    -re ".*1\r\n$gdb_prompt $" {
+    -re ".*$true\r\n$gdb_prompt $" {
         pass "print value of x>=y<=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>=y<=z" }
@@ -392,7 +395,7 @@ gdb_expect {
 # 0 3 4
 send_gdb "print x <= y == z\n"
 gdb_expect {
-    -re ".*0\r\n$gdb_prompt $" {
+    -re ".*$false\r\n$gdb_prompt $" {
         pass "print value of x<=y==z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<=y==z" }
@@ -404,7 +407,7 @@ gdb_test "set variable x=2" "" " set variable x"
 # 2 3 4
 send_gdb "print x <= y != z\n"
 gdb_expect {
-    -re ".*1\r\n$gdb_prompt $" {
+    -re ".*$true\r\n$gdb_prompt $" {
         pass "print value of x<=y!=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x<=y!=z" }
@@ -415,7 +418,7 @@ gdb_expect {
 # 2 3 4
 send_gdb "print x == y != z\n"
 gdb_expect {
-    -re ".*1\r\n$gdb_prompt $" {
+    -re ".*$true\r\n$gdb_prompt $" {
         pass "print value of x==y!=z"
       }
     -re ".*$gdb_prompt $" { fail "print value of x==y!=z" }
@@ -432,7 +435,7 @@ gdb_test "set variable z=0" "" " set variable z"
 # 2 3 0
 send_gdb "print x >= (y < z)\n"
 gdb_expect {
-    -re ".*1\r\n$gdb_prompt $" {
+    -re ".*$true\r\n$gdb_prompt $" {
         pass "print value of x>=(y<z)"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>=(y<z)" }
@@ -443,7 +446,7 @@ gdb_expect {
 # 2 3 0
 send_gdb "print x >= (y != z)\n"
 gdb_expect {
-    -re ".*1\r\n$gdb_prompt $" {
+    -re ".*$true\r\n$gdb_prompt $" {
         pass "print value of x>=(y!=z)"
       }
     -re ".*$gdb_prompt $" { fail "print value of x>=(y*!=z)" }
@@ -453,7 +456,7 @@ gdb_expect {
 # 2 3 0
 send_gdb "print x == (y == z)\n"
 gdb_expect {
-    -re ".*0\r\n$gdb_prompt $" {
+    -re ".*$false\r\n$gdb_prompt $" {
         pass "print value of x==(y==z)"
       }
     -re ".*$gdb_prompt $" { fail "print value of x==(y==z)" }
@@ -467,7 +470,7 @@ gdb_test "set variable z=4" "" " set variable z"
 # 1 3 4
 send_gdb "print (x == y) < z\n"
 gdb_expect {
-    -re ".*1\r\n$gdb_prompt $" {
+    -re ".*$true\r\n$gdb_prompt $" {
         pass "print value of (x==y)<z"
       }
     -re ".*$gdb_prompt $" { fail "print value of (x==y)<z" }
This page took 0.028695 seconds and 4 git commands to generate.