gdb/testsuite/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 6 Sep 2010 15:48:34 +0000 (15:48 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Mon, 6 Sep 2010 15:48:34 +0000 (15:48 +0000)
* gdb.base/printcmds.exp (test_float_accepted): Import gdb_prompt.
Move here, negate and extend by XFAIL the "p 0x1.1" test from ...
(test_float_rejected): ... here.
* gdb.java/jv-print.exp (test_float_accepted): Import gdb_prompt.
Move here, negate and extend by XFAIL the "p 0x1.1" test from ...
(test_float_rejected): ... here.
* gdb.objc/print.exp (test_float_accepted): Import gdb_prompt.
Move here, negate and extend by XFAIL the "p 0x1.1" test from ...
(test_float_rejected): ... here.
* gdb.pascal/print.exp (test_float_accepted): Import gdb_prompt.
Move here, negate and extend by XFAIL the "p 0x1.1" test from ...
(test_float_rejected): ... here.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/printcmds.exp
gdb/testsuite/gdb.java/jv-print.exp
gdb/testsuite/gdb.objc/print.exp
gdb/testsuite/gdb.pascal/print.exp

index 50c1f402ebede6b55382b354cbd299c10ad4aa7f..a4db465fafb7ffde56edc8f7e0c204e666d4563e 100644 (file)
@@ -1,3 +1,18 @@
+2010-09-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * gdb.base/printcmds.exp (test_float_accepted): Import gdb_prompt.
+       Move here, negate and extend by XFAIL the "p 0x1.1" test from ...
+       (test_float_rejected): ... here.
+       * gdb.java/jv-print.exp (test_float_accepted): Import gdb_prompt.
+       Move here, negate and extend by XFAIL the "p 0x1.1" test from ...
+       (test_float_rejected): ... here.
+       * gdb.objc/print.exp (test_float_accepted): Import gdb_prompt.
+       Move here, negate and extend by XFAIL the "p 0x1.1" test from ...
+       (test_float_rejected): ... here.
+       * gdb.pascal/print.exp (test_float_accepted): Import gdb_prompt.
+       Move here, negate and extend by XFAIL the "p 0x1.1" test from ...
+       (test_float_rejected): ... here.
+
 2010-09-04  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * gdb.base/watchpoint.exp: Call test_inaccessible_watchpoint
index d377597c59baa0b234979b629c4f0afec4e0c5af..497e9cf4b468eb3c4f6f78a48092f9f2be4de12e 100644 (file)
@@ -119,6 +119,8 @@ proc test_integer_literals_rejected {} {
 }
 
 proc test_float_accepted {} {
+    global gdb_prompt
+
     # This test is useful to catch successful parsing of the first fp value.
     gdb_test "p 123.4+56.7" " = 180.(099\[0-9]*|100\[0-9\]*)" "check for floating addition"
 
@@ -129,6 +131,18 @@ proc test_float_accepted {} {
     gdb_test "p 1.5f" " = 1.5"
     gdb_test "p 1.l" " = 1"
     gdb_test "p 1.5l" " = 1.5"
+
+    # Test hexadecimal floating point.
+    set test "p 0x1.1"
+    gdb_test_multiple $test $test {
+       -re " = 1\\.0625\r\n$gdb_prompt $" {
+           pass $test
+       }
+       -re "Invalid number \"0x1\\.1\"\\.\r\n$gdb_prompt $" {
+           # Older glibc does not support hex float, newer does.
+           xfail $test
+       }
+    }
 }
 
 proc test_float_rejected {} {
@@ -140,7 +154,6 @@ proc test_float_rejected {} {
 
     test_print_reject "p 123foobar.bazfoo3"
     test_print_reject "p 123EEEEEEEEEEEEEEEEE33333k333"
-    test_print_reject "p 0x1.1"
 
     # Test bad suffixes.
     test_print_reject "p 1.1x"
index cdb598ce0a798b247108caea60512f36a76e06db..d201ee8daaaf3c6419d05f6ed31ef0dd00245c4b 100644 (file)
@@ -98,6 +98,8 @@ proc test_integer_literals_rejected {} {
 }
 
 proc test_float_accepted {} {
+    global gdb_prompt
+
     # Test parsing of fp value with legit text following.
     gdb_test "p 1234.5+1" " = 1235.5" "check fp + text"
 
@@ -108,12 +110,21 @@ proc test_float_accepted {} {
     gdb_test "p 1.5f" " = 1.5"
     gdb_test "p 1.d" " = 1"
     gdb_test "p 1.5d" " = 1.5"
+
+    # Test hexadecimal floating point.
+    set test "p 0x1.1"
+    gdb_test_multiple $test $test {
+       -re " = 1\\.0625\r\n$gdb_prompt $" {
+           pass $test
+       }
+       -re "Invalid number \"0x1\\.1\"\r\n$gdb_prompt $" {
+           # Older glibc does not support hex float, newer does.
+           xfail $test
+       }
+    }
 }
 
 proc test_float_rejected {} {
-    # Test invalid fp values.
-    test_print_reject "p 0x1.1"
-
     # Test bad suffixes.
     test_print_reject "p 1.1x"
     test_print_reject "p 1.1ff"
index 2988d200f96b496fe239affb688a1827eb37c2e5..c9d5497fd80740e68e6195b4895d807a8ebd57f8 100644 (file)
@@ -28,6 +28,8 @@ if $tracelevel {
 load_lib "objc.exp"
 
 proc test_float_accepted {} {
+    global gdb_prompt
+
     # Test parsing of fp value with legit text following.
     gdb_test "p 1234.5+1" " = 1235.5" "check fp + text"
 
@@ -42,12 +44,21 @@ proc test_float_accepted {} {
     gdb_test "p 1.l" " = 1"
     setup_kfail gdb/11925 "*-*-*"
     gdb_test "p 1.5l" " = 1.5"
+
+    # Test hexadecimal floating point.
+    set test "p 0x1.1"
+    gdb_test_multiple $test $test {
+       -re " = 1\\.0625\r\n$gdb_prompt $" {
+           pass $test
+       }
+       -re "Invalid number \"0x1\\.1\"\\.\r\n$gdb_prompt $" {
+           # Older glibc does not support hex float, newer does.
+           xfail $test
+       }
+    }
 }
 
 proc test_float_rejected {} {
-    # Test invalid fp values.
-    test_print_reject "p 0x1.1"
-
     # Test bad suffixes.
     test_print_reject "p 1.1x"
     test_print_reject "p 1.1ff"
index 61f6d3744d0fcc348850c856c66097f60680ad58..e8e4f4417f4fd056c331bae777d82842ab3e54f4 100644 (file)
@@ -28,6 +28,8 @@ if $tracelevel {
 load_lib "pascal.exp"
 
 proc test_float_accepted {} {
+    global gdb_prompt
+
     # Test parsing of fp value with legit text following.
     gdb_test "p 1234.5+1" " = 1235.5" "check fp + text"
 
@@ -38,12 +40,21 @@ proc test_float_accepted {} {
     gdb_test "p 1.5f" " = 1.5"
     gdb_test "p 1.l" " = 1"
     gdb_test "p 1.5l" " = 1.5"
+
+    # Test hexadecimal floating point.
+    set test "p 0x1.1"
+    gdb_test_multiple $test $test {
+       -re " = 1\\.0625\r\n$gdb_prompt $" {
+           pass $test
+       }
+       -re "Invalid number \"0x1\\.1\"\\.\r\n$gdb_prompt $" {
+           # Older glibc does not support hex float, newer does.
+           xfail $test
+       }
+    }
 }
 
 proc test_float_rejected {} {
-    # Test invalid fp values.
-    test_print_reject "p 0x1.1"
-
     # Test bad suffixes.
     test_print_reject "p 1.1x"
     test_print_reject "p 1.1ff"