* gdb.base/interrupt.exp: Setup "i*86-*-linux" xfail for
authorFred Fish <fnf@specifix.com>
Fri, 28 Jul 1995 04:58:12 +0000 (04:58 +0000)
committerFred Fish <fnf@specifix.com>
Fri, 28 Jul 1995 04:58:12 +0000 (04:58 +0000)
"call function when asleep" and "send end of file".
* gdb.base/corefile.exp: Add "i*86-*-linuxaout" to xfail list
for "backtrace in corefile.exp".
* gdb.base/a1-selftest.exp: Add "i*86-*-linux*" to xfail list
for "backtrace through signal handler".
* gdb.base/corefile.exp: Make sure we actually generate a core file
before trying the core tests.  Some systems allow the user to suppress
generation of core files and default to that (linux for example).
* gdb.base/signals.exp: Change xfail for "next" acting like "continue"
from "i*86-*-linux" to "i*86-*-linuxaout".  Works with ELF beta.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/a1-selftest.exp
gdb/testsuite/gdb.chill/ChangeLog
gdb/testsuite/gdb.chill/misc.exp
gdb/testsuite/gdb.chill/pr-5016.exp

index aba259c0083093894ff6d6e761d3870f3059cbfe..74a973bff07cd56eb0dc2f010ddcc0b259a5fb79 100644 (file)
@@ -1,3 +1,24 @@
+Thu Jul 27 12:17:14 1995  Fred Fish  (fnf@cygnus.com)
+
+       * gdb.base/interrupt.exp: Setup "i*86-*-linux" xfail for
+       "call function when asleep" and "send end of file".
+       * gdb.base/corefile.exp: Add "i*86-*-linuxaout" to xfail list
+       for "backtrace in corefile.exp".
+       * gdb.base/a1-selftest.exp: Add "i*86-*-linux*" to xfail list
+       for "backtrace through signal handler".
+       * gdb.base/corefile.exp: Make sure we actually generate a core file
+       before trying the core tests.  Some systems allow the user to suppress
+       generation of core files and default to that (linux for example).
+       * gdb.base/signals.exp: Change xfail for "next" acting like "continue"
+       from "i*86-*-linux" to "i*86-*-linuxaout".  Works with ELF beta.
+
+Tue Jul 25 17:30:10 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
+
+       * gdb.threads: New directory with some crude multi-threaded
+       gdb tests (step.exp and step2.exp).
+       * config/mt-lynx (STEP_EXECUTABLE): Define.
+       (THREADFLAGS): Define.
+
 Tue Jul 25 01:03:52 1995  Jeff Law  (law@snake.cs.utah.edu)
 
        * gdb.base/sigall.exp: Avoid losing in SIGPRIO test on lynx.
index 5a56a895c715fb4c958bf4ea40d7e7c01f704ea1..a01ab00a438a7fc8f18fcad78c0ceec8b71c4178 100644 (file)
@@ -446,7 +446,7 @@ GDB.*Copyright \[0-9\]+ Free Software Foundation, Inc..*$prompt $"\
     }
     
     # get a stack trace
-    setup_xfail "i486-*-sysv4"
+    setup_xfail "i*86-*-sysv4" "i*86-*-linux*"
     set description "backtrace through signal handler"
     send "backtrace\n"
     expect {
index 4df4eb693720b634935cdb9b165c7d0e742e4844..35ef24e792cca8bfb9105ac49806a3b7e4e21aa9 100644 (file)
@@ -1,3 +1,10 @@
+Thu Jul 27 20:36:30 1995  Fred Fish  (fnf@cygnus.com)
+
+       * pr-5016.exp: xfail "i*86-*-linux*" for "whatis int-range"
+       test.  Thinks it is "_cint" rather than "m_index".
+       * misc.exp: xfail "i*86-*-linux*" for "info line" test.
+       Line number is off by one.
+
 Wed Jun 14 13:07:45 1995  Per Bothner  <bothner@kalessin.cygnus.com>
 
        * chillvars.exp, string.exp:  New tests for LOWER/UPPER/LENGTH.
index e80057d3c954ae84276953b114959a7541a5c466..45f203d6c42d72bd339acad95554fc613f3a3f81 100644 (file)
@@ -75,6 +75,8 @@ if ![set_lang_chill] then {
     gdb_test "print OTto" " = 42"
     gdb_test "print NULL" " = NULL" "print emptiness literal"
 
+    # Linux thinks this is at line 6, but is otherwise ok.
+    setup_xfail "i*86-*-linux*"
     gdb_test "info line" \
        {Line 5 of .*misc.ch.* at address H'[0-9a-fA-F]+.*}\
        "info about current line"
index 612a16f6bda51b79c8b10ca9fbfc54cbe3a4e45f..9adef8bcee92658544384c6297ced1719c7d7b87 100644 (file)
@@ -39,6 +39,8 @@ proc do_tests {} {
     send "set language chill\n" ; expect -re "$prompt $"
 
     runto dump
+    # Linux thinks type is "_cint"
+    setup_xfail "i*86-*-linux*"
     gdb_test "whatis i" "type = m_index" "whatis int-range"
     gdb_test_exact "ptype m_index" "type = RANGE (1:10)" "ptype m_index"
     gdb_test_exact "whatis a" "type = /*LOC*/ vector"