aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ.T. Conklin <jtc@acorntoolworks.com>1994-10-21 18:34:40 +0000
committerJ.T. Conklin <jtc@acorntoolworks.com>1994-10-21 18:34:40 +0000
commit6b55e5e3b9c8cfb439d3a11c6afbb071a927fbf8 (patch)
treed6fe979769c485a5883d0460670c7cc2c293f4fb
parent42fd5795387ca2bd8eb573155b17788c8181b09a (diff)
downloadgdb-6b55e5e3b9c8cfb439d3a11c6afbb071a927fbf8.zip
gdb-6b55e5e3b9c8cfb439d3a11c6afbb071a927fbf8.tar.gz
gdb-6b55e5e3b9c8cfb439d3a11c6afbb071a927fbf8.tar.bz2
* configure.in (*-*-netware): Use config/mt-netware.
* config/mt-netware: New file. * config/mt-i386-netware: Removed, separate configs for different netware architectures are no longer needed now that we have --with-headers.
-rw-r--r--gdb/testsuite/ChangeLog14
-rw-r--r--gdb/testsuite/config/.Sanitize2
-rw-r--r--gdb/testsuite/config/mt-i386-netware3
-rw-r--r--gdb/testsuite/config/mt-netware1
-rw-r--r--gdb/testsuite/configure.in2
5 files changed, 17 insertions, 5 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 1ddb695..a79402b 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,17 @@
+Fri Oct 21 11:10:16 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
+
+ * configure.in (*-*-netware): Use config/mt-netware.
+
+ * config/mt-netware: New file.
+ * config/mt-i386-netware: Removed, separate configs for different
+ netware architectures are no longer needed now that we have
+ --with-headers.
+
+Sat Oct 15 03:43:00 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
+
+ * gdb.base/exprs.exp: Remove xfail for alpha, it is fixed
+ by the recent changes to use ANSI C arithmetic conversions.
+
Sun Oct 9 07:44:06 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* gdb.base/corefile.exp: Add (xfail'd) test for reinit_frame_cache
diff --git a/gdb/testsuite/config/.Sanitize b/gdb/testsuite/config/.Sanitize
index d8a9019..2a9133f 100644
--- a/gdb/testsuite/config/.Sanitize
+++ b/gdb/testsuite/config/.Sanitize
@@ -27,11 +27,11 @@ mips-gdb.exp
mt-a29k-udi
mt-hpux
mt-i386-aout
-mt-i386-netware
mt-i960-nindy
mt-lynx
mt-m68k
mt-mips-ecoff
+mt-netware
mt-slite
mt-sparc-aout
mt-unix
diff --git a/gdb/testsuite/config/mt-i386-netware b/gdb/testsuite/config/mt-i386-netware
deleted file mode 100644
index 7d2f62f..0000000
--- a/gdb/testsuite/config/mt-i386-netware
+++ /dev/null
@@ -1,3 +0,0 @@
-CFLAGS = -I/s1/cygnus/dejagnu/i386-netware/include -g
-CXXFLAGS = ${CFLAGS}
-LDFLAGS = -r
diff --git a/gdb/testsuite/config/mt-netware b/gdb/testsuite/config/mt-netware
new file mode 100644
index 0000000..10d1ce4
--- /dev/null
+++ b/gdb/testsuite/config/mt-netware
@@ -0,0 +1 @@
+LDFLAGS = -r
diff --git a/gdb/testsuite/configure.in b/gdb/testsuite/configure.in
index be49c76..535d38a 100644
--- a/gdb/testsuite/configure.in
+++ b/gdb/testsuite/configure.in
@@ -25,8 +25,8 @@ target_makefile_frag=config/mt-unix
# this section is for all targets
case "${target}" in
i[345]86-*-aout) target_makefile_frag=config/mt-i386-aout ;;
- i[345]86-*-netware) target_makefile_frag=config/mt-i386-netware ;;
*-*-lynx) target_makefile_frag=config/mt-lynx ;;
+ *-*-netware) target_makefile_frag=config/mt-netware ;;
*-*-vxworks) target_makefile_frag=config/mt-vxworks ;;
m68k-*-*) target_makefile_frag=config/mt-m68k ;;
i960-*-nindy) target_makefile_frag=config/mt-i960-nindy ;;