binutils-gdb/gdb/testsuite/gdb.dwarf2
Maciej W. Rozycki 621661e3fa Correct invalid assumptions made by (mostly) DWARF-2 tests
Address issues triggered by the MIPS ISA bit handling change, usually in
tests that make artificial DWARF-2 records:

* gdb.cp/expand-psymtabs-cxx.exp -- this test is debugging an object file
  and assuming addresses will be 0; with the ISA bit set code addresses
  are 1 instead:

(gdb) PASS: gdb.cp/expand-psymtabs-cxx.exp: set language c++
p 'method(long)'
$1 = {void (long)} 0x1 <method(long)>
(gdb) FAIL: gdb.cp/expand-psymtabs-cxx.exp: before expand
p method
$2 = {void (long)} 0x1 <method(long)>
(gdb) FAIL: gdb.cp/expand-psymtabs-cxx.exp: force expand
p 'method(long)'
$3 = {void (long)} 0x1 <method(long)>
(gdb) FAIL: gdb.cp/expand-psymtabs-cxx.exp: after expand

  Fix by matching any hex number, there's no value AFAICT for the test
  in matching 0 exactly, and I suppose the method's offset within
  section can be non-zero for some other reasons on other targets too.

* gdb.cp/nsalias.exp -- this assumes instructions can be aligned
  arbitrarily and places code labels at odd addreses, setting the ISA
  bit and wreaking havoc:

(gdb) PASS: gdb.cp/nsalias.exp: print outer::inner::innermost::x
list outer::inner::innermost::foo
Function "outer::inner::innermost::foo" not defined.
(gdb) FAIL: gdb.cp/nsalias.exp: list outer::inner::innermost::foo
break *outer::inner::innermost::foo
No symbol "foo" in namespace "outer::inner::innermost".
(gdb) FAIL: gdb.cp/nsalias.exp: setting breakpoint at
*outer::inner::innermost::foo
delete $bpnum
No breakpoint number 6.
(gdb) FAIL: gdb.cp/nsalias.exp: (outer::inner::innermost): delete $bpnum

  -- etc., etc...  Fix by aligning labels to 4; required by many
  processors.

* gdb.dwarf2/dw2-canonicalize-type.exp, gdb.dwarf2/dw2-empty-pc-range.exp,
  gdb.dwarf2/pr11465.exp -- these assume an instruction and consequently
  a function can take as little as 1 byte, which makes it impossible to
  look up a code symbol by an address with the ISA bit set as the
  address is already beyond the end of the function:

(gdb) ptype f
No symbol "f" in current context.
(gdb) FAIL: gdb.dwarf2/dw2-canonicalize-type.exp: ptype f

(gdb) PASS: gdb.dwarf2/dw2-empty-pc-range.exp: empty range before CU load
ptype realrange
No symbol "realrange" in current context.
(gdb) FAIL: gdb.dwarf2/dw2-empty-pc-range.exp: valid range after CU load

(gdb) p N::c.C
Cannot take address of method C.
(gdb) FAIL: gdb.dwarf2/pr11465.exp: p N::c.C

  -- fix by increasing the size of the function to 4 (perhaps code in
  gdb/mips-tdep.c could look up code symbols up to twice, with and
  failing that without the ISA bit set, but it seems wrong to me to
  implement specific handling for invalid code just to satisfy test
  cases that assume too much about the target).

* gdb.dwarf2/dw2-case-insensitive.exp -- an artificial code label is
  created, but does not work because data (a `.align' pseudo-op in this
  case) follows and as a result the label has no MIPS16 or microMIPS
  annotation in the symbol table:

(gdb) PASS: gdb.dwarf2/dw2-case-insensitive.exp: set case-sensitive off
info functions fUnC_lang
All functions matching regular expression "fUnC_lang":

File file1.txt:
foo FUNC_lang(void);

Non-debugging symbols:
0x004006e0  FUNC_lang_start
(gdb) FAIL: gdb.dwarf2/dw2-case-insensitive.exp: regexp case-sensitive off

  -- fix by adding a `.insn' pseudo-op on MIPS targets; the pseudo-op
  marks data as instructions.

* gdb.dwarf2/dw2-stack-boundary.exp -- the test case enables complaints
  and assumes none will be issued beyond ones explicitly arranged by the
  test case, however overlapping sections are noticed while minimal
  symbols are looked up by `mips_adjust_dwarf2_addr' in DWARF-2 record
  processing:

(gdb) set complaints 100
(gdb) PASS: gdb.dwarf2/dw2-stack-boundary.exp: set complaints 100
file ./dw2-stack-boundary
Reading symbols from ./dw2-stack-boundary...location description stack
underflow...location description stack overflow...unexpected overlap
between:
 (A) section `.reginfo' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x18)
 (B) section `*COM*' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x0).
Will ignore section B...unexpected overlap between:
 (A) section `.reginfo' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x18)
 (B) section `*UND*' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x0).
Will ignore section B...unexpected overlap between:
 (A) section `.reginfo' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x18)
 (B) section `*ABS*' from `.../gdb.dwarf2/dw2-stack-boundary' [0x0, 0x0).
Will ignore section B...done.

(gdb) FAIL: gdb.dwarf2/dw2-stack-boundary.exp: check partial symtab errors

  -- fix by ignoring any extra noise as long as what we look for is
  found.

	* gdb.cp/expand-psymtabs-cxx.exp: Accept any address of
	`method(long)', not just 0x0.
	* gdb.cp/nsalias.exp: Align code labels to 4.
	* gdb.dwarf2/dw2-canonicalize-type.S (main): Expand to 4-bytes.
	* gdb.dwarf2/dw2-empty-pc-range.S (main): Likewise.
	* gdb.dwarf2/pr11465.S (_ZN1N1cE): Likewise.
	* gdb.dwarf2/dw2-case-insensitive.c (START_INSNS): New macro.
	(cu_text_start, FUNC_lang_start): Use `START_INSNS'.
	* gdb.dwarf2/dw2-stack-boundary.exp: Accept noise in complaints.
2014-12-04 00:06:10 +00:00
..
Makefile.in Test for binary,dwp symlinks into different directories. 2014-02-12 11:38:48 -08:00
arr-stride.c DWARF: Add array DW_AT_bit_stride and DW_AT_byte_stride support 2014-02-26 06:32:39 -08:00
arr-stride.exp Exploit 'prepare_for_testing' etc. for 'Dwarf::assemble'-generated files 2014-03-12 16:22:18 +01:00
arr-subrange.c DWARF: Set enum type "flag_enum" and "unsigned" flags at type creation. 2014-02-26 10:39:25 -08:00
arr-subrange.exp Exploit 'prepare_for_testing' etc. for 'Dwarf::assemble'-generated files 2014-03-12 16:22:18 +01:00
callframecfa.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
callframecfa.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
clztest.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
clztest.c
clztest.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
corrupt.c PR gdb/15827 2014-04-16 14:39:10 -07:00
corrupt.exp PR gdb/15827 2014-04-16 14:39:10 -07:00
count.exp test: cover subranges with present DW_AT_count attribute 2014-04-14 09:23:44 -07:00
data-loc.c DW_AT_data_location and DW_OP_push_object_address testcase. 2014-08-18 18:14:14 +02:00
data-loc.exp Fix handling of typedefs to types having a data_location attribute. 2014-08-20 15:34:19 +02:00
dup-psym.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dup-psym.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-abs-hi-pc-hello-dbg.S DWARF: Read constant-class addresses correctly 2014-02-26 11:43:23 -08:00
dw2-abs-hi-pc-hello.c DWARF: Read constant-class addresses correctly 2014-02-26 11:43:23 -08:00
dw2-abs-hi-pc-world-dbg.S DWARF: Read constant-class addresses correctly 2014-02-26 11:43:23 -08:00
dw2-abs-hi-pc-world.c DWARF: Read constant-class addresses correctly 2014-02-26 11:43:23 -08:00
dw2-abs-hi-pc.c DWARF: Read constant-class addresses correctly 2014-02-26 11:43:23 -08:00
dw2-abs-hi-pc.exp * gdb.dwarf2/dw2-abs-hi-pc.exp: Build tests with "nodebug". 2014-03-27 11:38:30 -07:00
dw2-ada-ffffffff.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-ada-ffffffff.exp Revert patchset for c++/16253: it causes a large performance regression. 2014-06-07 10:40:39 -07:00
dw2-anon-mptr.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-anon-mptr.exp Revert patchset for c++/16253: it causes a large performance regression. 2014-06-07 10:40:39 -07:00
dw2-anonymous-func.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-anonymous-func.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
dw2-bad-parameter-type.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-bad-parameter-type.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-basic.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-basic.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
dw2-canonicalize-type.S Correct invalid assumptions made by (mostly) DWARF-2 tests 2014-12-04 00:06:10 +00:00
dw2-canonicalize-type.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-case-insensitive-debug.S gdb.dwarf2: Testsuite 64-bit pointer truncation fixes 2014-10-14 21:16:07 +01:00
dw2-case-insensitive.c Correct invalid assumptions made by (mostly) DWARF-2 tests 2014-12-04 00:06:10 +00:00
dw2-case-insensitive.exp gdb.dwarf2: Testsuite 64-bit pointer truncation fixes 2014-10-14 21:16:07 +01:00
dw2-common-block.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-common-block.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-compdir-oldgcc.S [arm] Fix fails in dw2-compdir-oldgcc.exp 2014-11-22 21:22:01 +08:00
dw2-compdir-oldgcc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-compressed.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-compressed.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
dw2-const.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-const.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-cp-infcall-ref-static-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-cp-infcall-ref-static.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-cp-infcall-ref-static.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-cu-size.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-cu-size.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-dir-file-name.c Fix the gdb.dwarf2/dw2-dir-file-name.exp test on MIPS 2014-10-18 21:53:15 +01:00
dw2-dir-file-name.exp Fix the gdb.dwarf2/dw2-dir-file-name.exp test on MIPS 2014-10-18 21:53:15 +01:00
dw2-dos-drive.S Fix testsuite/gdb.dwarf2/dw2-dos-drive.exp on ARM. 2014-01-16 10:09:34 +00:00
dw2-dos-drive.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-double-set-die-type.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-double-set-die-type.exp Revert patchset for c++/16253: it causes a large performance regression. 2014-06-07 10:40:39 -07:00
dw2-dup-frame.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-dup-frame.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-dup-frame.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-empty-namespace.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-empty-namespace.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-empty-pc-range.S Correct invalid assumptions made by (mostly) DWARF-2 tests 2014-12-04 00:06:10 +00:00
dw2-empty-pc-range.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-entry-value-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-entry-value.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-entry-value.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-error.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-error.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-error.exp testsuite: Use istarget and is_lp64_target for 3 testcases. 2014-06-23 08:24:36 +02:00
dw2-filename.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-filename.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
dw2-icc-opaque.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-icc-opaque.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-icycle.S Fix dw2-icycle.exp -fsanitize=address GDB crash. 2014-02-25 18:28:38 +01:00
dw2-icycle.c Fix PR symtab/16581 2014-02-20 09:13:53 -08:00
dw2-icycle.exp Fix PR symtab/16581 2014-02-20 09:13:53 -08:00
dw2-ifort-parameter.c Fix dw2-ifort-parameter.exp fail with clang 2014-11-14 08:55:07 +08:00
dw2-ifort-parameter.exp Fix dw2-ifort-parameter.exp fail with clang 2014-11-14 08:55:07 +08:00
dw2-inheritance.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-inheritance.exp Revert patchset for c++/16253: it causes a large performance regression. 2014-06-07 10:40:39 -07:00
dw2-inline-break.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-inline-break.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-inline-param-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-inline-param.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-inline-param.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-intercu.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-intercu.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
dw2-intermix.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-intermix.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
dw2-linkage-name-trust-main.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-linkage-name-trust.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-linkage-name-trust.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-minsym-in-cu.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-minsym-in-cu.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-modula2-self-type.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-modula2-self-type.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-namespaceless-anonymous.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-namespaceless-anonymous.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-noloc-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-noloc.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-noloc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-objfile-overlap-inner.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-objfile-overlap-outer.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-objfile-overlap.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-op-call.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-op-call.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-op-out-param.S gdb.dwarf2/dw2-op-out-param.S: Fix comment. 2014-11-26 14:44:46 -08:00
dw2-op-out-param.exp Handle partially optimized out values similarly to unavailable values 2014-08-20 00:07:40 +01:00
dw2-op-stack-value.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-op-stack-value.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-param-error-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-param-error.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-param-error.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-producer.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-producer.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
dw2-ranges.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-ranges.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-ranges2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-ranges3.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-ref-missing-frame-func.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-ref-missing-frame-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-ref-missing-frame.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-ref-missing-frame.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-reg-undefined.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-reg-undefined.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-reg-undefined.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-restore.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-restore.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-restrict.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-restrict.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-restrict.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-simple-locdesc.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-simple-locdesc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-single-line-discriminators.S Fix pr 17276. 2014-08-22 17:25:59 -07:00
dw2-single-line-discriminators.c Fix pr 17276. 2014-08-22 17:25:59 -07:00
dw2-single-line-discriminators.exp Fix pr 17276. 2014-08-22 17:25:59 -07:00
dw2-skip-prologue.S gdb.dwarf2: Testsuite 64-bit pointer truncation fixes 2014-10-14 21:16:07 +01:00
dw2-skip-prologue.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-skip-prologue.exp gdb.dwarf2: Testsuite 64-bit pointer truncation fixes 2014-10-14 21:16:07 +01:00
dw2-stack-boundary.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-stack-boundary.exp Correct invalid assumptions made by (mostly) DWARF-2 tests 2014-12-04 00:06:10 +00:00
dw2-strp.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-strp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-undefined-ret-addr.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-undefined-ret-addr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-undefined-ret-addr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-unresolved-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-unresolved.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-unresolved.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-var-zero-addr.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw2-var-zero-addr.exp Run dw2-var-zero-addr.exp with --readnow 2014-09-19 16:53:34 +08:00
dw4-sig-type-unused.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw4-sig-type-unused.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw4-sig-types-b.cc
dw4-sig-types.cc
dw4-sig-types.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dw4-sig-types.h
dwp-symlink.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dwp-symlink.exp Test for binary,dwp symlinks into different directories. 2014-02-12 11:38:48 -08:00
dwz.exp Get start and end address of main in dwz.exp 2014-11-14 08:55:06 +08:00
dwzbuildid.exp Relax the pattern in dwzbuildid.exp 2014-05-07 11:07:12 +08:00
dynarr-ptr.c print PTR.all where PTR is an Ada thin pointer 2014-09-10 06:24:25 -07:00
dynarr-ptr.exp dynarr-ptr.exp: Add ptype tests. 2014-09-10 06:33:25 -07:00
enum-type.exp implement support for "enum class" 2014-04-14 11:42:18 -06:00
file1.txt
fission-base.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-base.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-base.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-loclists.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-loclists.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-mix.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-mix.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-mix.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-mix2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fission-reread.S Make more robust when run in parallel mode. 2014-05-15 15:50:34 -07:00
fission-reread.exp Make more robust when run in parallel mode. 2014-05-15 15:50:34 -07:00
gdb-index.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
implptr-64bit.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
implptr-64bit.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
implptr-optimized-out.exp Fix implptr-optimized-out.exp fail 2014-11-14 08:55:06 +08:00
implptr.S
implptr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
implptr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
implptrconst.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
implptrconst.exp Exploit 'prepare_for_testing' etc. for 'Dwarf::assemble'-generated files 2014-03-12 16:22:18 +01:00
implptrpiece.exp Exploit 'prepare_for_testing' etc. for 'Dwarf::assemble'-generated files 2014-03-12 16:22:18 +01:00
mac-fileno.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
mac-fileno.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
main.c Get start and end address of main in dwz.exp 2014-11-14 08:55:06 +08:00
member-ptr-forwardref.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
member-ptr-forwardref.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
method-ptr.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
method-ptr.exp Exploit 'prepare_for_testing' etc. for 'Dwarf::assemble'-generated files 2014-03-12 16:22:18 +01:00
missing-sig-type.exp Exploit 'prepare_for_testing' etc. for 'Dwarf::assemble'-generated files 2014-03-12 16:22:18 +01:00
nostaticblock.exp Exploit 'prepare_for_testing' etc. for 'Dwarf::assemble'-generated files 2014-03-12 16:22:18 +01:00
pieces-optimized-out.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pieces-optimized-out.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pieces-optimized-out.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pieces.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pieces.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pieces.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr10770.c
pr10770.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr11465.S Correct invalid assumptions made by (mostly) DWARF-2 tests 2014-12-04 00:06:10 +00:00
pr11465.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr13961.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr13961.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
subrange.exp Exploit 'prepare_for_testing' etc. for 'Dwarf::assemble'-generated files 2014-03-12 16:22:18 +01:00
symtab-producer.exp Fix prints in tests for Python 3 2014-11-28 11:36:52 -05:00
trace-crash.S PR c++/14999: 2013-01-18 18:32:35 +00:00
trace-crash.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
typeddwarf-amd64.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
typeddwarf.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
typeddwarf.c
typeddwarf.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valop.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valop.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-notconst.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-notconst.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-notconst2.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-notconst2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00