diff options
author | Pedro Alves <palves@redhat.com> | 2014-10-17 14:49:04 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2014-10-24 17:56:56 +0100 |
commit | 09dd9a6907f0929f2b634e57e68f11a008dfbf68 (patch) | |
tree | 79d52ea906fbb857c32e99647ab9725bff0a3f39 /gdb/testsuite/gdb.threads | |
parent | 5ab806deff413e90bb2dc988b78857e13dfc1b5b (diff) | |
download | gdb-09dd9a6907f0929f2b634e57e68f11a008dfbf68.zip gdb-09dd9a6907f0929f2b634e57e68f11a008dfbf68.tar.gz gdb-09dd9a6907f0929f2b634e57e68f11a008dfbf68.tar.bz2 |
Remove Vax Ultrix and VAX BSD support
Built and tested on x86_64 Fedora 20, with --enable-targets=all.
gdb/
2014-10-24 Pedro Alves <palves@redhat.com>
* Makefile.in (ALLDEPFILES): Remove vax-nat.c.
* NEWS (Removed targets): Add VAX BSD and VAX Ultrix.
* config/vax/vax.mh: Delete.
* configure.host: Move vax-*-bsd* and vax-*-ultrix* to the
obsolete configurations section.
* configure.tgt (vax-*-*): Don't mention 4.2BSD nor Ultrix.
* vax-nat.c: Delete file.
gdb/testsuite/
2014-10-24 Pedro Alves <palves@redhat.com>
* gdb.base/corefile.exp: Remove references to ultrix.
* gdb.base/interrupt.exp: Likewise.
* gdb.base/whatis.exp: Likewise.
* gdb.gdb/selftest.exp: Likewise.
* gdb.threads/manythreads.exp: Likewise.
* gdb.threads/print-threads.exp: Likewise.
* gdb.threads/pthreads.exp:: Likewise.
* gdb.threads/schedlock.exp: Likewise.
Diffstat (limited to 'gdb/testsuite/gdb.threads')
-rw-r--r-- | gdb/testsuite/gdb.threads/manythreads.exp | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/print-threads.exp | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/pthreads.exp | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/schedlock.exp | 6 |
4 files changed, 4 insertions, 20 deletions
diff --git a/gdb/testsuite/gdb.threads/manythreads.exp b/gdb/testsuite/gdb.threads/manythreads.exp index c35d6ab..3fe7882 100644 --- a/gdb/testsuite/gdb.threads/manythreads.exp +++ b/gdb/testsuite/gdb.threads/manythreads.exp @@ -35,11 +35,7 @@ runto_main # We'll need this when we send_gdb a ^C to GDB. Need to do it before we # run the program and gdb starts saving and restoring tty states. -# On Ultrix, we don't need it and it is really slow (because shell_escape -# doesn't use vfork). -if ![istarget "*-*-ultrix*"] then { - gdb_test "shell stty intr '^C'" ".*" -} +gdb_test "shell stty intr '^C'" ".*" set message "first continue" gdb_test_multiple "continue" "first continue" { diff --git a/gdb/testsuite/gdb.threads/print-threads.exp b/gdb/testsuite/gdb.threads/print-threads.exp index 7b2bfe3..8325596 100644 --- a/gdb/testsuite/gdb.threads/print-threads.exp +++ b/gdb/testsuite/gdb.threads/print-threads.exp @@ -40,11 +40,7 @@ gdb_test_no_output "set width 0" # We'll need this when we send_gdb a ^C to GDB. Need to do it before we # run the program and gdb starts saving and restoring tty states. -# On Ultrix, we don't need it and it is really slow (because shell_escape -# doesn't use vfork). -if ![istarget "*-*-ultrix*"] then { - gdb_test "shell stty intr '^C'" ".*" -} +gdb_test "shell stty intr '^C'" ".*" proc test_all_threads { name kill } { global gdb_prompt inferior_exited_re diff --git a/gdb/testsuite/gdb.threads/pthreads.exp b/gdb/testsuite/gdb.threads/pthreads.exp index 990dfaa..5ac3ade 100644 --- a/gdb/testsuite/gdb.threads/pthreads.exp +++ b/gdb/testsuite/gdb.threads/pthreads.exp @@ -40,11 +40,7 @@ gdb_test_no_output "set width 0" # We'll need this when we send_gdb a ^C to GDB. Need to do it before we # run the program and gdb starts saving and restoring tty states. -# On Ultrix, we don't need it and it is really slow (because shell_escape -# doesn't use vfork). -if ![istarget "*-*-ultrix*"] then { - gdb_test "shell stty intr '^C'" ".*" -} +gdb_test "shell stty intr '^C'" ".*" proc all_threads_running {} { global gdb_prompt diff --git a/gdb/testsuite/gdb.threads/schedlock.exp b/gdb/testsuite/gdb.threads/schedlock.exp index e105689..c32ed0c 100644 --- a/gdb/testsuite/gdb.threads/schedlock.exp +++ b/gdb/testsuite/gdb.threads/schedlock.exp @@ -130,11 +130,7 @@ gdb_reinitialize_dir $srcdir/$subdir # We'll need this when we send_gdb a ^C to GDB. Need to do it before we # run the program and gdb starts saving and restoring tty states. -# On Ultrix, we don't need it and it is really slow (because shell_escape -# doesn't use vfork). -if ![istarget "*-*-ultrix*"] then { - gdb_test "shell stty intr '^C'" ".*" -} +gdb_test "shell stty intr '^C'" ".*" gdb_load ${binfile} |