diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-06-15 19:31:19 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-06-15 19:31:19 +0000 |
commit | 48f6098e1de5a86f18446acd6fa51a0e7a90c937 (patch) | |
tree | e19631010e5180d1fb4fa2b2399192eb94a97a7b /gdb | |
parent | bec7a138ab492579bb85c4a8cce2419c3d337f07 (diff) | |
download | gdb-48f6098e1de5a86f18446acd6fa51a0e7a90c937.zip gdb-48f6098e1de5a86f18446acd6fa51a0e7a90c937.tar.gz gdb-48f6098e1de5a86f18446acd6fa51a0e7a90c937.tar.bz2 |
Wed Jun 15 12:10:10 1994 Stan Shebs (shebs@andros.cygnus.com)
* Makefile.in (site.exp): Don't insert host_os, etc.
(just-check): Just use RUNTEST with RUNTESTFLAGS only.
(distclean): Check existence of subdir.
* gdb.base/configure.in (hppa*-*-hpux*): Recognize.
* gdb.base/Makefile.in: General cleanup and simplification.
Use CC, CFLAGS, and LDFLAGS instead of ..._FOR_TARGET versions
to build executables. Use default rule to build .o files.
(EXPECT, RUNTEST, CC): Fix relative pathname.
(site.exp): Don't insert host_os, etc.
* gdb.base/signals.c (main): Don't call signal unless SIGALRM
and/or SIGUSR1 defined.
* gdb.base/watchpoint.c: Don't include stdio.h a second time.
* gdb.c++/Makefile.in: General cleanup and simplification.
Use CC, CFLAGS, and LDFLAGS instead of ..._FOR_TARGET versions
(CFLAGS): Remove.
(EXPECT, RUNTEST_FOR_TARGET, CXX): Fix relative pathname.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 19 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/configure.in | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index eecef10..315c67c 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,22 @@ +Wed Jun 15 12:10:10 1994 Stan Shebs (shebs@andros.cygnus.com) + + * Makefile.in (site.exp): Don't insert host_os, etc. + (just-check): Just use RUNTEST with RUNTESTFLAGS only. + (distclean): Check existence of subdir. + * gdb.base/configure.in (hppa*-*-hpux*): Recognize. + * gdb.base/Makefile.in: General cleanup and simplification. + Use CC, CFLAGS, and LDFLAGS instead of ..._FOR_TARGET versions + to build executables. Use default rule to build .o files. + (EXPECT, RUNTEST, CC): Fix relative pathname. + (site.exp): Don't insert host_os, etc. + * gdb.base/signals.c (main): Don't call signal unless SIGALRM + and/or SIGUSR1 defined. + * gdb.base/watchpoint.c: Don't include stdio.h a second time. + * gdb.c++/Makefile.in: General cleanup and simplification. + Use CC, CFLAGS, and LDFLAGS instead of ..._FOR_TARGET versions + (CFLAGS): Remove. + (EXPECT, RUNTEST_FOR_TARGET, CXX): Fix relative pathname. + Fri Jun 10 10:55:09 1994 Jeff Law (law@snake.cs.utah.edu) * gdb.base/recurse.exp: Misc changes to get tests running again diff --git a/gdb/testsuite/gdb.base/configure.in b/gdb/testsuite/gdb.base/configure.in index d55c708..52c6d9d 100644 --- a/gdb/testsuite/gdb.base/configure.in +++ b/gdb/testsuite/gdb.base/configure.in @@ -16,6 +16,7 @@ target_makefile_frag=config/mt-unix # this section is for all targets case "${target}" in + hppa*-*-hpux*) target_makefile_frag=config/mt-hpux ;; i386-*-aout) target_makefile_frag=config/mt-i386-aout ;; *-*-lynx) target_makefile_frag=config/mt-lynx ;; *-*-vxworks) target_makefile_frag=config/mt-vxworks ;; |