Thu Oct 14 11:40:30 1993 Jeffrey Law (law@cs.uah.edu)
* configure.in (configdirs): Add gdb.disasm * gdb.disasm: New directory for GDB disassembler tests. * gdb.disasm/hppa.{exp,s,mt}: Disassembly tests for the HPPA.
This commit is contained in:
parent
5450813848
commit
478826389e
6 changed files with 1160 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Thu Oct 14 11:40:30 1993 Jeffrey Law (law@cs.uah.edu)
|
||||
|
||||
* configure.in (configdirs): Add gdb.disasm
|
||||
* gdb.disasm: New directory for GDB disassembler tests.
|
||||
* gdb.disasm/hppa.{exp,s,mt}: Disassembly tests for the HPPA.
|
||||
|
||||
Thu Oct 14 11:40:30 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
* gdb.t00/help.exp: Don't test "help set".
|
||||
|
|
|
@ -9,7 +9,7 @@ srcname="DejaGnu"
|
|||
# Directories to use in all configurations.
|
||||
configdirs="gdb.t00 gdb.t01 gdb.t02 gdb.t03 gdb.t04 gdb.t05 gdb.t06 \
|
||||
gdb.t07 gdb.t08 gdb.t09 gdb.t10 gdb.t11 gdb.t12 gdb.t13 gdb.t15 \
|
||||
gdb.t16 gdb.t17 gdb.t24 gdb.t30"
|
||||
gdb.t16 gdb.t17 gdb.t24 gdb.t30 gdb.disasm"
|
||||
|
||||
# Directories to use for a configuration which uses stabs. C++ tests
|
||||
# are also here because I don't believe they work well for any other
|
||||
|
|
17
gdb/testsuite/gdb.disasm/Makefile.in
Normal file
17
gdb/testsuite/gdb.disasm/Makefile.in
Normal file
|
@ -0,0 +1,17 @@
|
|||
#### host, target, and site specific Makefile frags come in here.
|
||||
|
||||
srcdir = .
|
||||
CFLAGS = -g
|
||||
|
||||
.PHONY: all clean mostlyclean distclean realclean
|
||||
|
||||
all: $(EXECUTABLES)
|
||||
|
||||
clean mostlyclean:
|
||||
-rm -f *.o $(EXECUTABLES) *.diff *~ *.bad core foo twice-tmp.c
|
||||
|
||||
distclean realclean: clean
|
||||
-rm -f Makefile config.status
|
||||
|
||||
Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
|
||||
$(SHELL) ./config.status
|
17
gdb/testsuite/gdb.disasm/configure.in
Normal file
17
gdb/testsuite/gdb.disasm/configure.in
Normal file
|
@ -0,0 +1,17 @@
|
|||
# This file is a shell script fragment that supplies the information
|
||||
# necessary to tailor a template configure script into the configure
|
||||
# script appropriate for this directory. For more information, check
|
||||
# any existing configure script.
|
||||
|
||||
srctrigger="configure.in"
|
||||
srcname="gdb.disasm"
|
||||
|
||||
# per-host:
|
||||
|
||||
# per-target:
|
||||
|
||||
case "${target}" in
|
||||
|
||||
hppa*-*-*) target_makefile_frag=hppa.mt ;;
|
||||
|
||||
esac
|
1114
gdb/testsuite/gdb.disasm/hppa.exp
Normal file
1114
gdb/testsuite/gdb.disasm/hppa.exp
Normal file
File diff suppressed because it is too large
Load diff
5
gdb/testsuite/gdb.disasm/hppa.mt
Normal file
5
gdb/testsuite/gdb.disasm/hppa.mt
Normal file
|
@ -0,0 +1,5 @@
|
|||
EXECUTABLES = hppa
|
||||
hppa: hppa.s
|
||||
$(AS) $(ASFLAGS) hppa.s -o hppa.o
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o hppa hppa.o $(LIBS)
|
||||
|
Loading…
Reference in a new issue