gdb.trace/testsuite: Bump stack collection fudge factor.
[external/binutils.git] / gdb / testsuite / ChangeLog
1 2016-01-25  Marcin Kościelnicki  <koriakin@0x04.net>
2
3         * gdb.trace/backtrace.exp: Bump stack collection fudge factor.
4         * gdb.trace/entry-values.exp: Bump stack collection fudge factor.
5
6 2016-01-23  Marcin Kościelnicki  <koriakin@0x04.net>
7
8         * gdb.trace/unavailable-dwarf-piece.exp: Fix bitfield handling on big
9         endian targets.
10
11 2016-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
12             Pedro Alves  <palves@redhat.com>
13
14         Fix testsuite compatibility with Guile.
15         * gdb.gdb/selftest.exp (send ^C to child process): Drop expected Thread
16         number.
17
18 2016-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
19
20         Fix testsuite compatibility with Guile.
21         * gdb.gdb/selftest.exp (send ^C to child process): Accept also Thread.
22         (thread 1): New test for backtrace through signal handler.
23
24 2016-01-22  Yao Qi  <yao.qi@linaro.org>
25
26         PR testsuite/19491
27         * gdb.base/multi-forks.c: Include
28         ../lib/unbuffer_output.c
29         (main): Call gdb_unbuffer_output.
30
31 2016-01-21  Doug Evans  <dje@google.com>
32
33         * lib/ada.exp (gdb_compile_ada): Fix typo.
34
35 2016-01-21  Joel Brobecker  <brobecker@adacore.com>
36
37         * gdb.base/break-fun-addr.exp: New file.
38         * gdb.base/break-fun-addr1.c: New file.
39         * gdb.base/break-fun-addr2.c: New file.
40
41 2016-01-20  Simon Marchi  <simon.marchi@polymtl.ca>
42
43         * gdb.python/py-pp-maint.exp: Change/add enum flag tests.
44         * gdb.python/py-pp-maint.c (enum flag_enum): Use more complex
45         enum flag values.
46
47 2016-01-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
48
49         * gdb.base/gnu_vector.exp: Re-establish handling for should_kfail
50         when GDB can not set the vector return value.  Add more comments
51         for clarification.
52
53 2016-01-20  Antoine Tremblay  <antoine.tremblay@ericsson.com>
54
55         * gdb.trace/tspeed.exp:  Use shlib instead of libs in gdb_compile
56         command.
57
58 2016-01-19  Simon Marchi  <simon.marchi@ericsson.com>
59
60         * Makefile.in (DO_RUNTEST): Add --status and update usages.
61
62 2016-01-19  Simon Marchi  <simon.marchi@ericsson.com>
63
64         * Makefile.in (check-single): Pass --status to runtest.
65         (check/%.exp): Likewise.
66
67 2016-01-19  Simon Marchi  <simon.marchi@ericsson.com>
68
69         * Makefile.in (check-parallel): Propagate return code from make
70         do-check-parallel.
71
72 2016-01-19  Pedro Alves  <palves@redhat.com>
73
74         * ax-gdb.c (agent_command_1): Adjust call to decode_line_full.
75         * break-catch-throw.c (re_set_exception_catchpoint): Pass the
76         current program space down to linespec decoding and breakpoint
77         location updating.
78         * breakpoint.c (parse_breakpoint_sals): Adjust calls to
79         decode_line_full.
80         (until_break_command): Adjust calls to decode_line_1.
81         (base_breakpoint_decode_location, bkpt_decode_location): Add
82         'search_pspace' parameter.  Pass it along.
83         (bkpt_probe_create_sals_from_location): Adjust calls to
84         parse_probes.
85         (tracepoint_decode_location, tracepoint_probe_decode_location)
86         (strace_marker_decode_location): Add 'search_pspace' parameter.
87         Pass it along.
88         (all_locations_are_pending): Rewrite to take a breakpoint and
89         program space as arguments instead.
90         (hoist_existing_locations): New function.
91         (update_breakpoint_locations): Add 'filter_pspace' parameter.  Use
92         hoist_existing_locations instead of always removing all locations,
93         and adjust to all_locations_are_pending change.
94         (location_to_sals): Add 'search_pspace' parameter.  Pass it along.
95         Don't disable the breakpoint if there are other locations in
96         another program space.
97         (breakpoint_re_set_default): Adjust to pass down the current
98         program space as filter program space.
99         (decode_location_default): Add 'search_pspace' parameter and pass
100         it along.
101         (prepare_re_set_context): Don't switch program space here.
102         (breakpoint_re_set): Use save_current_space_and_thread instead of
103         save_current_program_space.
104         * breakpoint.h (struct breakpoint_ops) <decode_location>: Add
105         'search_pspace' parameter.
106         (update_breakpoint_locations): Add 'filter_pspace' parameter.
107         * cli/cli-cmds.c (edit_command, list_command): Adjust calls to
108         decode_line_1.
109         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the current
110         program space as filter program space.
111         * linespec.c (struct linespec_state) <search_pspace>: New field.
112         (create_sals_line_offset, convert_explicit_location_to_sals)
113         (parse_linespec): Pass the search program space down.
114         (linespec_state_constructor): Add 'search_pspace' parameter.
115         Store it.
116         (linespec_parser_new): Add 'search_pspace' parameter and pass it
117         along.
118         (linespec_lex_to_end): Adjust.
119         (decode_line_full, decode_line_1): Add 'search_pspace' parameter
120         and pass it along.
121         (decode_line_with_last_displayed): Adjust.
122         (collect_symtabs_from_filename, symtabs_from_filename): New
123         'search_pspace' parameter.  Use it.
124         (find_function_symbols): Pass the search program space down.
125         * linespec.h (decode_line_1, decode_line_full): Add
126         'search_pspace' parameter.
127         * probe.c (parse_probes_in_pspace): New function, factored out
128         from ...
129         (parse_probes): ... this.  Add 'search_pspace' parameter and use
130         it.
131         * probe.h (parse_probes): Add pspace' parameter.
132         * python/python.c (gdbpy_decode_line): Adjust.
133         * tracepoint.c (scope_info): Adjust.
134
135 2016-01-19  Marcin Kościelnicki  <koriakin@0x04.net>
136
137         * gdb.trace/ftrace.exp: Fix expected message on continue.
138         * gdb.trace/pending.exp: Fix expected message on continue.
139         * gdb.trace/trace-break.exp: Fix expected message on continue.
140
141 2016-01-18  Simon Marchi  <simon.marchi@ericsson.com>
142
143         * lib/gdb.exp (gdb_test): Remove unused global references.
144
145 2016-01-18  Pedro Alves  <palves@redhat.com>
146
147         * gdb.base/async-shell.exp: Adjust expected output.
148         * gdb.base/dprintf-non-stop.exp: Adjust expected output.
149         * gdb.base/siginfo-thread.exp: Adjust expected output.
150         * gdb.base/watchpoint-hw-hit-once.exp: Adjust expected output.
151         * gdb.java/jnpe.exp: Adjust expected output.
152         * gdb.threads/clone-new-thread-event.exp: Adjust expected output.
153         * gdb.threads/continue-pending-status.exp: Adjust expected output.
154         * gdb.threads/leader-exit.exp: Adjust expected output.
155         * gdb.threads/manythreads.exp: Adjust expected output.
156         * gdb.threads/pthreads.exp: Adjust expected output.
157         * gdb.threads/schedlock.exp: Adjust expected output.
158         * gdb.threads/siginfo-threads.exp: Adjust expected output.
159         * gdb.threads/signal-command-multiple-signals-pending.exp: Adjust
160         expected output.
161         * gdb.threads/signal-delivered-right-thread.exp: Adjust expected
162         output.
163         * gdb.threads/sigthread.exp: Adjust expected output.
164         * gdb.threads/watchpoint-fork.exp: Adjust expected output.
165
166 2016-01-18  Yao Qi  <yao.qi@linaro.org>
167
168         * gdb.guile/scm-section-script.c: Replace @progbits with
169         %progbits.
170         * gdb.python/py-section-script.c: Likewise.
171
172 2016-01-15  Pedro Alves  <palves@redhat.com>
173
174         * gdb.multi/tids.exp: Test star wildcard ranges.
175
176 2016-01-15  Pedro Alves  <palves@redhat.com>
177
178         * gdb.multi/tids.exp (thr_apply_info_thr_error): Remove "p 1234"
179         command from "thread apply" invocation.
180         (thr_apply_info_thr_invalid): Default the expected output to the
181         input tid list.
182         (top level): Add tests that use convenience variables.  Add tests
183         for "thread apply" with a valid TID list, but missing the command.
184
185 2016-01-13  Pedro Alves  <palves@redhat.com>
186
187         * gdb.base/default.exp: Expect $_gthread as well.
188         * gdb.multi/tids.exp: Test $_gthread.
189         * gdb.threads/thread-specific.exp: Test $_gthread.
190
191 2016-01-13  Pedro Alves  <palves@redhat.com>
192
193         * gdb.multi/tids.exp: Test "info threads -gid".
194
195 2016-01-13  Pedro Alves  <palves@redhat.com>
196
197         * gdb.multi/tids.exp: Test InferiorThread.global_num and
198         Breakpoint.thread.
199         * gdb.python/py-infthread.exp: Test InferiorThread.global_num.
200
201 2016-01-07  Pedro Alves  <palves@redhat.com>
202
203         * gdb.base/break.exp: Adjust to output changes.
204         * gdb.base/hbreak2.exp: Likewise.
205         * gdb.base/sepdebug.exp: Likewise.
206         * gdb.base/watch_thread_num.exp: Likewise.
207         * gdb.linespec/keywords.exp: Likewise.
208         * gdb.multi/info-threads.exp: Likewise.
209         * gdb.threads/thread-find.exp: Likewise.
210         * gdb.multi/tids.c: New file.
211         * gdb.multi/tids.exp: New file.
212
213 2016-01-13  Pedro Alves  <palves@redhat.com>
214
215         * gdb.python/py-infthread.exp: Test InferiorThread.inferior.
216
217 2016-01-13  Pedro Alves  <palves@redhat.com>
218
219         * gdb.base/default.exp: Expect $_inferior as well.
220         * gdb.multi/base.exp: Test $_inferior.
221
222 2016-01-13  Pedro Alves  <palves@redhat.com>
223
224         PR breakpoints/19388
225         * gdb.base/catch-signal-siginfo-cond.c: New file.
226         * gdb.base/catch-signal-siginfo-cond.exp: New file.
227
228 2016-01-12  Josh Stone  <jistone@redhat.com>
229             Philippe Waroquiers  <philippe.waroquiers@skynet.be>
230
231         * gdb.base/catch-syscall.c (do_execve): New variable.
232         (main): Conditionally trigger an execve.
233         * gdb.base/catch-syscall.exp: Enable testing for remote targets.
234         (test_catch_syscall_execve): New, check entry/return across execve.
235         (do_syscall_tests): Call test_catch_syscall_execve.
236
237 2016-01-12  Pedro Alves  <palves@redhat.com>
238
239         * gdb.base/random-signal.exp (do_test): New procedure, with body
240         of testcase moved in.
241
242 2016-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
243             Pedro Alves  <palves@redhat.com>
244
245         * gdb.base/funcargs.exp (finish from indirectly called function):
246         Reintroduce the case for 'First'.
247
248 2016-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
249             Pedro Alves  <palves@redhat.com>
250
251         * gdb.base/foll-vfork.exp (tcatch_vfork_then_parent_follow)
252         (tcatch_vfork_then_child_follow_exec)
253         (tcatch_vfork_then_child_follow_exit): Revert back DWARF vfork
254         identification.
255
256 2016-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
257
258         * gdb.guile/scm-value.exp (test_value_in_inferior): Set print elements
259         and repeats to unlimited.
260         * gdb.python/py-value.exp: Likewise.
261         * lib/gdb.exp (gdb_has_argv0): Save and temporarily set print elements
262         and repeats to unlimited.
263
264 2016-01-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
265
266         * gdb.multi/goodbye.c: Fix compilation warnings by adding return types
267         and reordering the functions.
268         * gdb.multi/hangout.c: Likewise.
269         * gdb.multi/hello.c: Likewise.
270
271 2016-01-08  Simon Marchi  <simon.marchi@ericsson.com>
272
273         * gdb.perf/lib/perftest/perftest.py: Change relative imports to
274         absolute.
275         (SingleStatisticTestResult.report): Use dict.keys instead of
276         dict.iterkeys.
277
278 2016-01-06  Pedro Alves  <palves@redhat.com>
279
280         * gdb.python/py-infthread.exp: Fix typo.  Expect t0.num to be 1.
281
282 2016-01-04  Markus Metzger  <markus.t.metzger@intel.com>
283
284         * gdb.btrace/dlopen.exp: New.
285         * gdb.btrace/dlopen.c: New.
286         * gdb.btrace/dlopen-dso.c: New.
287
288 2015-12-25  Sandra Loosemore  <sandra@codesourcery.com>
289
290         * lib/gdb.exp (gdb_test): Update comments to clarify that the
291         PATTERN argument is optional.
292
293 2015-12-24  Joel Brobecker  <brobecker@adacore.com>
294
295         * lib/ada.exp (target_compile_ada_from_dir): New function.
296         (gdb_compile_ada): Reimplement avoiding the use of project files.
297         * gdb.ada/gnat_ada.gpr: Delete.
298         * gdb.ada/cond_lang.exp: Adjust test to make path before
299         filename optional.
300         * gdb.ada/small_reg_param.exp: Likewise.
301
302 2015-12-22  Simon Marchi  <simon.marchi@ericsson.com>
303
304         * gdb.base/foll-vork.exp: Remove HP-UX special case.
305
306 2015-12-22  Thomas Preud'homme  <thomas.preudhomme@arm.com>
307
308         * lib/mi-support.exp (mi_run_cmd_full): Add an expect for the CLI jump
309         case.
310
311 2015-12-21  Simon Marchi  <simon.marchi@ericsson.com>
312
313         * gdb.base/break.exp: Remove dead code.
314         * gdb.base/sepdebug.exp: Likewise.
315
316 2015-12-21  Simon Marchi  <simon.marchi@polymtl.ca>
317
318         * gdb.asm/asm-source.exp: Remove HP-UX references.
319         * gdb.base/annota1.exp: Likewise.
320         * gdb.base/annota3.exp: Likewise.
321         * gdb.base/attach.exp: Likewise.
322         * gdb.base/bigcore.exp: Likewise.
323         * gdb.base/break.exp: Likewise.
324         * gdb.base/call-ar-st.exp: Likewise.
325         * gdb.base/callfuncs.exp: Likewise.
326         * gdb.base/catch-fork-static.exp: Likewise.
327         * gdb.base/display.exp: Likewise.
328         * gdb.base/foll-exec-mode.exp: Likewise.
329         * gdb.base/foll-exec.exp: Likewise.
330         * gdb.base/foll-fork.exp: Likewise.
331         * gdb.base/foll-vfork.exp: Likewise.
332         * gdb.base/funcargs.exp: Likewise.
333         * gdb.base/hbreak2.exp: Likewise.
334         * gdb.base/inferior-died.exp: Likewise.
335         * gdb.base/interrupt.exp: Likewise.
336         * gdb.base/multi-forks.exp: Likewise.
337         * gdb.base/nodebug.exp: Likewise.
338         * gdb.base/sepdebug.exp: Likewise.
339         * gdb.base/solib1.c: Likewise.
340         * gdb.base/step-test.exp: Likewise.
341         * gdb.mi/non-stop.c: Likewise.
342         * gdb.mi/pthreads.c: Likewise.
343         * gdb.multi/bkpt-multi-exec.ex: Likewise.
344         * gdb.threads/pthreads.c: Likewise.
345         * gdb.threads/staticthreads.exp: Likewise.
346         * lib/future.exp: Likewise.
347         * lib/gdb.exp: Likewise.
348         * gdb.base/so-indr-cl.c: Remove.
349         * gdb.base/so-indr-cl.exp: Likewise.
350         * gdb.base/solib.c: Likewise.
351         * gdb.base/solib.exp: Likewise.
352         * gdb.base/solib2.c: Likewise.
353
354 2015-12-21  Simon Marchi  <simon.marchi@polymtl.ca>
355
356         * gdb.base/break.exp: Remove references to HP CC/aCC compilers.
357         * gdb.base/call-ar-st.exp: Likewise.
358         * gdb.base/callfuncs.exp: Likewise.
359         * gdb.base/condbreak.exp: Likewise.
360         * gdb.base/constvars.exp: Likewise.
361         * gdb.base/hbreak2.exp: Likewise.
362         * gdb.base/langs.exp: Likewise.
363         * gdb.base/list.exp: Likewise.
364         * gdb.base/long_long.exp: Likewise.
365         * gdb.base/ptype.exp: Likewise.
366         * gdb.base/scope.exp: Likewise.
367         * gdb.base/signals.exp: Likewise.
368         * gdb.base/so-impl-ld.exp: Likewise.
369         * gdb.base/varargs.exp: Likewise.
370         * gdb.base/volatile.exp: Likewise.
371         * gdb.base/whatis.exp: Likewise.
372         * gdb.cp/cplusfuncs.exp: Likewise.
373         * gdb.cp/inherit.exp: Likewise.
374         * gdb.cp/local.exp: Likewise.
375         * gdb.cp/member-ptr.exp: Likewise.
376         * gdb.cp/method.exp: Likewise.
377         * gdb.cp/overload.exp: Likewise.
378         * gdb.cp/templates.exp: Likewise.
379         * gdb.stabs/weird.exp: Likewise.
380         * lib/compiler.c: Likewise.
381         * lib/compiler.cc: Likewise.
382         * lib/cp-support.exp: Likewise.
383         * lib/gdb.exp: Likewise.
384
385 2015-12-20  Simon Marchi  <simon.marchi@polymtl.ca>
386
387         * configure.ac: Remove HP-UX case.
388         * configure: Regenerate.
389
390 2015-12-18  Simon Marchi  <simon.marchi@ericsson.com>
391
392         * lib/gdb.exp (gdb_compile): Add function doc.
393
394 2015-12-17  Pedro Alves  <palves@redhat.com>
395
396         PR threads/19354
397         * gdb.multi/info-threads.exp: New file.
398
399 2015-12-15  Yao Qi  <yao.qi@linaro.org>
400
401         * gdb.trace/ftrace.exp: Set arg0exp to "$x0" if target
402         is aarch64*-*-*.
403
404 2015-12-14  Sandra Loosemore  <sandra@codesourcery.com>
405
406         * gdb.base/history-duplicates.exp: Skip if no readline support.
407
408 2015-12-14  Sandra Loosemore  <sandra@codesourcery.com>
409
410         * gdb.base/gdbinit-history.exp: Skip for remote-host testing.
411
412 2015-12-14  Sandra Loosemore  <sandra@codesourcery.com>
413
414         * gdb.base/gdbhistsize-history.exp: Skip for remote-host testing.
415
416 2015-12-14  Sandra Loosemore  <sandra@codesourcery.com>
417
418         * gdb.base/completion.exp: Skip tests that interrupt GDB with
419         ctrl-C if nointerrupts target property is set.
420         * gdb.base/double-prompt-target-event-error.exp: Likewise.
421         * gdb.base/paginate-after-ctrl-c-running.exp: Likewise.
422         * gdb.base/paginate-bg-execution.exp: Likewise.
423         * gdb.base/paginate-execution-startup.exp: Likewise.
424         * gdb.base/random-signal.exp: Likewise.
425         * gdb.base/range-stepping.exp: Likewise.
426         * gdb.cp/annota2.exp: Likewise.
427         * gdb.cp/annota3.exp: Likewise.
428         * gdb.gdb/selftest.exp: Likewise.
429         * gdb.threads/continue-pending-status.exp: Likewise.
430         * gdb.threads/leader-exit.exp: Likewise.
431         * gdb.threads/manythreads.exp: Likewise.
432         * gdb.threads/pthreads.exp: Likewise.
433         * gdb.threads/schedlock.exp: Likewise.
434         * gdb.threads/sigthread.exp: Likewise.
435
436 2015-12-11  Don Breazeal  <donb@codesourcery.com>
437
438         * gdb.base/execl-update-breakpoints.exp (main): Enable for target
439         remote.
440         * gdb.base/foll-exec-mode.exp (main): Disable for target remote.
441         * gdb.base/foll-exec.exp (main): Enable for target remote.
442         * gdb.base/foll-fork.exp (main): Likewise.
443         * gdb.base/foll-vfork.exp (main): Likewise.
444         * gdb.base/multi-forks.exp (main): Likewise, and use clean_restart.
445         (proc continue_to_exit_bp_loc): Use clean_restart.
446         * gdb.base/pie-execl.exp (main): Disable for target remote.
447         * gdb.base/watch-vfork.exp (main): Enable for target remote.
448         * gdb.mi/mi-nsthrexec.exp (main): Likewise.
449         * gdb.threads/execl.exp (main): Likewise.
450         * gdb.threads/fork-child-threads.exp (main): Likewise.
451         * gdb.threads/fork-plus-threads.exp (main): Disable for target
452         remote.
453         * gdb.threads/fork-thread-pending.exp (main): Enable for target
454         remote.
455         * gdb.threads/linux-dp.exp (check_philosopher_stack): Allow
456         pid.tid style ptids, instead of just tid.
457         * gdb.threads/thread-execl.exp (main): Enable for target remote.
458         * gdb.threads/watchpoint-fork.exp (main): Likewise.
459         * gdb.trace/report.exp (use_collected_data): Allow pid.tid style
460         ptids, instead of just tid.
461
462 2015-12-11  Andrew Burgess  <andrew.burgess@embecosm.com>
463
464         * gdb.base/list.exp (test_list_forward): Add end of file error
465         test.
466         (test_repeat_list_command): Add end of file error test.
467         (test_list_backwards): Add beginning of file error test.
468
469 2015-12-11  Andrew Burgess  <andrew.burgess@embecosm.com>
470
471         * gdb.base/list.exp (test_list_invalid_args): New function,
472         defined, and called.
473
474 2015-12-11  Andrew Burgess  <andrew.burgess@embecosm.com>
475
476         * gdb.base/list.exp (test_list): Make test names unique.
477
478 2015-12-11  Yao Qi  <yao.qi@linaro.org>
479
480         * gdb.base/coremaker2.c: Remove.
481
482 2015-12-10  Pedro Alves  <palves@redhat.com>
483
484         * gdb.multi/base.exp: Remove stale "spaces" references.
485
486 2015-12-10  Pedro Alves  <palves@redhat.com>
487
488         * gdb.multi/base.exp: Don't use nowarnings.
489         * gdb.multi/bkpt-multi-exec.exp: Don't use nowarnings.
490         * gdb.multi/hangout.c: Include stdio.h.
491         * gdb.multi/hello.c: Include stdlib.h.
492         * gdb.multi/multi-arch-exec.c: Include stdlib.h.
493         * gdb.multi/multi-arch-exec.exp: Don't use nowarnings.
494         * gdb.multi/multi-arch.exp: Don't use nowarnings.
495
496 2015-12-10  Andrew Burgess  <andrew.burgess@embecosm.com>
497
498         * gdb.dwarf2/dw2-ranges-base.c: New file.
499         * gdb.dwarf2/dw2-ranges-base.exp: New file.
500         * lib/dwarf.exp (namespace eval Dwarf): Add new variables to
501         support additional line table, and debug ranges generation.
502         (Dwarf::ranges): New function, generate .debug_ranges.
503         (Dwarf::lines): Support generating simple line table programs.
504         (Dwarf::assemble): Initialise new namespace variables.
505
506 2015-12-09  Kevin Buettner  <kevinb@redhat.com>
507
508         * gdb.base/async.exp (proc test_background): Add case for
509         asynchronous execution not supported.
510
511 2015-12-09  Luis Machado  <lgustavo@codesourcery.com>
512
513         * gdb.mi/mi-var-display.exp: Add new checks for the zero-hexadecimal
514           format and change test names to make them unique.
515
516 2015-12-09  Ruslan Kabatsayev  <b7.10110111@gmail.com>
517             Pedro Alves  <pedro@redhat.com>
518
519         PR gdb/18702
520         Add checking of floatformats setup on x86_64 hosts.
521         * gdb.arch/i386-float.S (main): Load bigval and smallval.
522         (smallval, bigval): New labels/constants.
523         * gdb.arch/i386-float.exp: Use with_test_prefix and test "info
524         float" after loading bigval and smallval.
525
526 2015-12-07  Pierre-Marie de Rodat  <derodat@adacore.com>
527
528         * gdb.ada/fun_overload_menu.exp: New testcase.
529         * gdb.ada/fun_overload_menu/foo.adb: New testcase.
530
531 2015-12-04  Josh Stone  <jistone@redhat.com>
532
533         * gdb.base/catch-fork-static.exp: New.
534
535 2015-12-03  Yao Qi  <yao.qi@linaro.org>
536
537         * gdb.base/sizeof.c: Don't include stdio.h and
538         ../lib/unbuffer_output.c.
539         (main): New variable 'size' and 'value'.  Remove printf and
540         gdb_unbuffer_output.  Assign return value to size and value.
541         * gdb.base/sizeof.exp: Remove the checking to gdb,noinferiorio
542         at the beginning.
543         (check_sizeof): Check the result by printing variable 'size'.
544         (check_valueof): Check the result by printing variable 'value'.
545
546 2015-12-01  Yao Qi  <yao.qi@linaro.org>
547
548         * gdb.base/disp-step-syscall.exp: Define syscall instruction
549         for aarch64*-*-linux* target.
550
551 2015-11-30  Pedro Alves  <palves@redhat.com>
552
553         * gdb.threads/no-unwaited-for-left.exp: Remove setup_kfail calls.
554
555 2015-11-30  Pedro Alves  <palves@redhat.com>
556
557         * lib/range-stepping-support.exp (exec_cmd_expect_vCont_count):
558         Handle non-stop mode vCont replies.
559
560 2015-11-30  Pedro Alves  <palves@redhat.com>
561
562         * gdb.base/dprintf-non-stop.exp: Use build_executable instead of
563         prepare_for_testing.  Start gdb with "set non-stop on" appended to
564         GDBFLAGS.  Lax expected stop output.
565
566 2015-11-27  Yao Qi  <yao.qi@linaro.org>
567
568         * gdb.arch/arm-neon.exp: New.
569         * gdb.arch/arm-neon.c: New.
570
571 2015-11-27  Yao Qi  <yao.qi@linaro.org>
572
573         * gdb.cp/annota2.exp: Rewrite the pattern using multi_line.
574
575 2015-11-27  Yao Qi  <yao.qi@linaro.org>
576
577         * gdb.cp/annota2.exp: Allow multiple occurrences of the
578         frames-invalid annotation.
579
580 2015-11-27  Yao Qi  <yao.qi@linaro.org>
581
582         * gdb.cp/annota2.exp: Use ${frames_invalid}.
583
584 2015-11-26  Simon Marchi  <simon.marchi@ericsson.com>
585
586         * gdb.threads/names.exp: New file.
587         * gdb.threads/names.c: New file.
588         * README: Mention gdb,no_thread_names.
589
590 2015-11-26  Markus Metzger  <markus.t.metzger@intel.com>
591
592         PR 19297
593         * lib/gdb.exp (skip_btrace_pt_tests): Check for a "GDB does not
594         support" error.
595
596 2015-11-24  Pedro Alves  <palves@redhat.com>
597
598         PR 17539
599         * gdb.base/display.exp: Expect displays to be sorted in ascending
600         order.  Use multi_line.
601         * gdb.base/solib-display.exp: Likewise.
602
603 2015-11-24  Pedro Alves  <palves@redhat.com>
604
605         PR 17539
606         * gdb.base/display.exp: Expect displays to be sorted in ascending
607         order.  Use multi_line.
608         * gdb.base/solib-display.exp: Likewise.
609
610 2015-11-24  Pedro Alves  <palves@redhat.com>
611
612         PR 17539
613         * gdb.base/foll-exec-mode.exp: Adjust to GDB listing inferiors and
614         threads in ascending order.
615         * gdb.base/foll-fork.exp: Likewise.
616         * gdb.base/foll-vfork.exp: Likewise.
617         * gdb.base/multi-forks.exp: Likewise.
618         * gdb.mi/mi-nonstop.exp: Likewise.
619         * gdb.mi/mi-nsintrall.exp: Likewise.
620         * gdb.multi/base.exp: Likewise.
621         * gdb.multi/multi-arch.exp: Likewise.
622         * gdb.python/py-inferior.exp: Likewise.
623         * gdb.threads/break-while-running.exp: Likewise.
624         * gdb.threads/execl.exp: Likewise.
625         * gdb.threads/gcore-thread.exp: Likewise.
626         * gdb.threads/info-threads-cur-sal.exp: Likewise.
627         * gdb.threads/kill.exp: Likewise.
628         * gdb.threads/linux-dp.exp: Likewise.
629         * gdb.threads/multiple-step-overs.exp: Likewise.
630         * gdb.threads/next-bp-other-thread.exp: Likewise.
631         * gdb.threads/step-bg-decr-pc-switch-thread.exp: Likewise.
632         * gdb.threads/step-over-lands-on-breakpoint.exp: Likewise.
633         * gdb.threads/step-over-trips-on-watchpoint.exp: Likewise.
634         * gdb.threads/thread-find.exp: Likewise.
635         * gdb.threads/tls.exp: Likewise.
636         * lib/mi-support.exp (mi_reverse_list): Delete.
637         (mi_check_thread_states): No longer reverse list.
638
639 2015-11-24  Pedro Alves  <palves@redhat.com>
640
641         * gdb.python/py-inferior.exp: Use with_test_prefix.  Consistently
642         use lowercase.
643
644 2015-11-23  Simon Marchi  <simon.marchi@ericsson.com>
645
646         * gdb.trace/actions.c: Include trace-common.h.
647         (main): Add a location for a fast tracepoint.
648         * gdb.trace/save-trace.exp: Set a fast tracepoint in addition to
649         the normal tracepoints.
650         (gdb_verify_tracepoints): Adjust number of expected tracepoints.
651
652 2015-11-23  Simon Marchi  <simon.marchi@ericsson.com>
653
654         * save-trace.exp: Factor out code to these...
655         (gdb_save_tracepoints): New.
656         (gdb_load_tracepoints): New.
657         (do_save_load_test): New.
658
659 2015-11-23  Kevin Buettner  <kevinb@redhat.com>
660
661         * gdb.base/asmlabel.exp: New test.
662         * gdb.base/asmlabel.c: New test case.
663
664 2015-11-23  Joel Brobecker  <brobecker@adacore.com>
665
666         * gdb.base/wrong_frame_bt_full-main.c: New file.
667         * gdb.base/wrong_frame_bt_full-opaque.c: New file.
668         * gdb.base/wrong_frame_bt_full.exp: New file.
669
670 2015-11-23  Joel Brobecker  <brobecker@adacore.com>
671
672         * testsuite/gdb.ada/var_rec_arr.exp: Add "ptype a1(1)" test.
673
674 2015-11-20  Jose E. Marchesi  <jose.marchesi@oracle.com>
675
676         * gdb.base/callfuncs.exp (fetch_all_registers): Filter out the
677         pstate register when comparing registers values in
678         sparc64-*-linux-gnu targets to avoid spurious differences.
679
680 2015-11-20  Jose E. Marchesi  <jose.marchesi@oracle.com>
681
682         * gdb.arch/sparc-sysstep.c: Include unistd.h for getpid.
683
684 2015-11-19  Sandra Loosemore  <sandra@codesourcery.com>
685
686         * gdb.base/nested-subp1.exp: Pass executable, not executable name,
687         as type argument to gdb_compile.
688         * gdb.base/nested-subp2.exp: Likewise.
689         * gdb.base/nested-subp3.exp: Likewise.
690
691 2015-11-17  Dominik Vogt  <vogt@linux.vnet.ibm.com>
692
693         * lib/dwarf.exp (_note): Fix left shift of negative value.
694         * gdb.trace/trace-condition.exp: Likewise.
695
696 2015-11-13  Yao Qi  <yao.qi@linaro.org>
697
698         * gdb.base/call-sc.exp (test_scalar_returns): Remove the
699         comments about d10v.
700         (test_scalar_returns): Likewise.
701         * gdb.base/d10v.ld: Remove.
702         * gdb.base/overlays.exp: Remove the target triplet checking for
703         d10v-*-*.
704         * gdb.base/structs.exp (test_struct_returns): Remove the
705         comments about d10v.
706         (test_struct_calls): Likewise.
707
708 2015-11-13  Yao Qi  <yao.qi@linaro.org>
709
710         * gdb.base/gnu_vector.exp: Check the return value by "p res".
711         * gdb.base/gnu_vector.c: Don't include stdio.h.
712         (main): Don't print res and call add_some_intvecs.
713
714 2015-11-11  Marcin Kościelnicki  <koriakin@0x04.net>
715
716         * gdb.trace/change-loc.h: include "trace-common.h", remove SYMBOL
717         macro.
718         (func5): Removed.
719         (func4): Use FAST_TRACEPOINT_LABEL.
720         * gdb.trace/ftrace-lock.c: include "trace-common.h", remove SYMBOL
721         macro.
722         (func): Removed.
723         (thread_function): Use FAST_TRACEPOINT_LABEL.
724         * gdb.trace/ftrace.c: include "trace-common.h", remove SYMBOL macro.
725         (func): Remove.
726         (marker): Use FAST_TRACEPOINT_LABEL.
727         * gdb.trace/pendshr1.c: include "trace-common.h", remove SYMBOL macro.
728         (pendfunc1): Remove.
729         (pendfunc): Use FAST_TRACEPOINT_LABEL.
730         * gdb.trace/pendshr2.c: include "trace-common.h", remove SYMBOL macro.
731         (foo): Remove.
732         (pendfunc2): Use FAST_TRACEPOINT_LABEL.
733         * gdb.trace/trace-break.c: include "trace-common.h", remove SYMBOL
734         macro.
735         (func): Remove.
736         (marker): Use FAST_TRACEPOINT_LABEL.
737         * gdb.trace/trace-common.h: New header.
738         * gdb.trace/trace-condition.c: include "trace-common.h", remove SYMBOL
739         macro.
740         (func): Remove.
741         (marker): Use FAST_TRACEPOINT_LABEL.
742         * gdb.trace/trace-mt.c: include "trace-common.h", remove SYMBOL macro.
743         (func): Remove.
744         (thread_function): Use FAST_TRACEPOINT_LABEL.
745
746 2015-11-10  Marcin Kościelnicki  <koriakin@0x04.net>
747
748         * gdb.trace/backtrace.exp: Use global fpreg/spreg definition, add $
749         in front.
750         * gdb.trace/change-loc.exp: Use global pcreg definition.
751         * gdb.trace/collection.exp: Use global pcreg/fpreg/spreg definition.
752         * gdb.trace/entry-values.exp: Use global spreg definition, add $
753         in front.
754         * gdb.trace/mi-trace-frame-collected.exp: Use global pcreg definition.
755         * gdb.trace/pending.exp: Likewise.
756         * gdb.trace/report.exp: Use global pcreg/fpreg/spreg definition.
757         * gdb.trace/trace-break.exp: Likewise.
758         * gdb.trace/trace-condition.exp: Use global pcreg definition, add $
759         in front.
760         * gdb.trace/unavailable.exp: Use global pcreg/fpreg/spreg definition.
761         * gdb.trace/while-dyn.exp: Use global fpreg definition, add $
762         in front.
763         * lib/trace-support.exp: Define fpreg, spreg, pcreg variables.
764
765 2015-11-09  Joel Brobecker  <brobecker@adacore.com>
766
767         * gdb.ada/fin_fun_out: New testcase.
768
769 2015-11-07  Kevin Buettner  <kevinb@redhat.com>
770
771         * gdb.dwarf2/data-loc.exp (Dwarf::assemble): Don't hardcode
772         value associated with DW_AT_byte_size.
773         * gdb.dwarf2/dynarr-ptr.exp (Dwarf::assemble): Don't hardcode
774         constants for DW_AT_byte_size, DW_AT_lower_bound, and
775         DW_AT_upper_bound.
776
777 2015-11-07  Kevin Buettner  <kevinb@redhat.com>
778
779         * lib/gdb (gdb_target_symbol_prefix_flags_asm): New proc.
780         (gdb_target_symbol_prefix_flags): Define in terms of _asm
781         version.
782         * gdb.arch/i386-float.exp, gdb.arch/i386-permbkpt.exp,
783         gdb.dwarf2/dw2-canonicalize-type.exp,
784         gdb.dwarf2/dw2-compdir-oldgcc.exp, gdb.dwarf2/dw2-minsym-in-cu.exp,
785         gdb.dwarf2/dw2-op-stack-value.exp, gdb.dwarf2/dw2-unresolved.exp,
786         gdb.dwarf2/fission-reread.exp, gdb.dwarf2/pr13961.exp: Use flags
787         provided by gdb_target_symbol_prefix_flags_asm.
788         * gdb.dwarf2/dw2-canonicalize-type.S, gdb.dwarf2/dw2-compdir-oldgcc.S,
789         testsuite/gdb.dwarf2/dw2-minsym-in-cu.S,
790         testsuite/gdb.dwarf2/dw2-unresolved-main.c,
791         testsuite/gdb.dwarf2/dw2-unresolved.S, gdb.dwarf2/fission-reread.S,
792         gdb.dwarf2/pr13961.S: Define and use SYMBOL macro (and supporting
793         macros where needed).  Use this macro for symbols which require
794         the prefix provided by SYMBOL_PREFIX.
795
796 2015-11-05  Kevin Buettner  <kevinb@redhat.com>
797
798         * lib/gdb.exp (gdb_target_symbol_prefix, gdb_target_symbol):
799         New procs.
800         * lib/dwarf.exp (_handle_DW_TAG): Handle attribute values,
801         representing expressions, of more than one list element.
802         * gdb.dwarf2/atomic-type.exp (Dwarf::assemble): Use gdb_target_symbol
803         to prepend linker symbol prefix to f.
804         * gdb.dwarf2/data-loc.exp (Dwarf::assemble): Likewise, for
805         table_1 and table_2.
806         * gdb.dwarf2/dw2-bad-mips-linkage-name.exp (Dwarf::assemble):
807         Likewise, for f and g.
808         * gdb.dwarf2/dw2-ifort-parameter.exp (Dwarf::assemble): Likewise,
809         for ptr.
810         * gdb.dwarf2/dw2-regno-invalid.exp (Dwarf::assemble): Likewise,
811         for main.
812         * gdb.dwarf2/dynarr-ptr.exp (Dwarf::assemble): Likewise, for
813         table_1_ptr and table_2_ptr.
814
815 2015-11-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
816             Joel Brobecker  <brobecker@adacore.com>
817
818         * gdb.mi/mi-vla-fortran.exp (evaluate allocated vla): Permit any data.
819
820 2015-11-04  Marcin Kościelnicki  <koriakin@0x04.net>
821
822         * gdb.reverse/s390-mvcle.c: New test.
823         * gdb.reverse/s390-mvcle.exp: New file.
824         * lib/gdb.exp: Enable reverse tests on s390*-linux.
825
826 2015-11-02  Marcin Kościelnicki  <koriakin@0x04.net>
827
828         * gdb.reverse/readv-reverse.exp: Obvious typo fixed.
829
830 2015-11-02  Marcin Kościelnicki  <koriakin@0x04.net>
831
832         * gdb.reverse/fstatat-reverse.exp: Set breakpoint on marker1 after
833         reaching marker2.
834         * gdb.reverse/getresuid-reverse.exp: Likewise.
835         * gdb.reverse/pipe-reverse.exp: Likewise.
836         * gdb.reverse/readv-reverse.exp: Likewise.
837         * gdb.reverse/recvmsg-reverse.exp: Likewise.
838         * gdb.reverse/time-reverse.exp: Likewise.
839         * gdb.reverse/waitpid-reverse.exp: Likewise and add KFAILs.
840
841 2015-10-30  Yao Qi  <yao.qi@linaro.org>
842
843         * gdb.threads/wp-replication.c (watch_count_done): Remove.
844         (empty_cycle): Remove.
845         (main): Don't call empty_cycle.  Don't use watch_count_done.
846         * gdb.threads/wp-replication.exp: Don't set breakpoint on
847         empty_cycle.  Rewrite the code counting HW watchpoints.
848
849 2015-10-30  Marcin Kościelnicki  <koriakin@0x04.net>
850
851         * gdb.reverse/fstatat-reverse.c: New test.
852         * gdb.reverse/fstatat-reverse.exp: New file.
853         * gdb.reverse/getresuid-reverse.c: New test.
854         * gdb.reverse/getresuid-reverse.exp: New file.
855         * gdb.reverse/pipe-reverse.c: New test.
856         * gdb.reverse/pipe-reverse.exp: New file.
857         * gdb.reverse/readv-reverse.c: New test.
858         * gdb.reverse/readv-reverse.exp: New file.
859         * gdb.reverse/recvmsg-reverse.c: New test.
860         * gdb.reverse/recvmsg-reverse.exp: New file.
861         * gdb.reverse/time-reverse.c: New test.
862         * gdb.reverse/time-reverse.exp: New file.
863         * gdb.reverse/waitpid-reverse.c: New test.
864         * gdb.reverse/waitpid-reverse.exp: New file.
865
866 2015-10-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
867
868         * gdb.ada/access_to_packed_array.exp: Fix typos erroring the testfile.
869
870 2015-10-26  Doug Evans  <dje@google.com>
871
872         PR symtab/17391
873         * lib/dwarf.exp (_location): Add support for DW_OP_regx.
874         * gdb.dwarf2/bad-regnum.c: New file.
875         * gdb.dwarf2/bad-regnum.exp: New file.
876
877 2015-10-26  Doug Evans  <dje@google.com>
878
879         PR python/18938
880         * gdb.python/python.exp: Add test for symlink from .py file to .notpy
881         file.
882
883 2015-10-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
884
885         * gdb.compile/compile.exp (compile code globalvar): Update expectation
886         for a change by "Mention language in compile error message".
887
888 2015-10-21  Simon Marchi  <simon.marchi@polymtl.ca>
889
890         PR python/18073
891         * gdb.python/py-type.c (C::a_method): New.
892         (C::a_const_method): New.
893         (C::a_static_method): New.
894         (a_function): New.
895         * gdb.python/py-type.exp (test_fields): Test getting fields
896         from function and method.
897
898 2015-10-21  Keven Boell  <keven.boell@intel.com>
899
900         * gdb.fortran/vla-alloc-assoc.exp: New file.
901         * gdb.fortran/vla-datatypes.exp: New file.
902         * gdb.fortran/vla-datatypes.f90: New file.
903         * gdb.fortran/vla-history.exp: New file.
904         * gdb.fortran/vla-ptype-sub.exp: New file.
905         * gdb.fortran/vla-ptype.exp: New file.
906         * gdb.fortran/vla-sizeof.exp: New file.
907         * gdb.fortran/vla-sub.f90: New file.
908         * gdb.fortran/vla-value-sub-arbitrary.exp: New file.
909         * gdb.fortran/vla-value-sub-finish.exp: New file.
910         * gdb.fortran/vla-value-sub.exp: New file.
911         * gdb.fortran/vla-value.exp: New file.
912         * gdb.fortran/vla-ptr-info.exp: New file.
913         * gdb.mi/mi-vla-fortran.exp: New file.
914         * gdb.mi/vla.f90: New file.
915
916 2015-10-21  Sandra Loosemore  <sandra@codesourcery.com>
917
918         * gdb.base/freebpcmd.exp: Use with_timeout_factor instead
919         of hardwired timeout value.
920
921 2015-10-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
922             Pedro Alves  <palves@redhat.com>
923
924         * gdb.dwarf2/dw2-regno-invalid.exp: New file.
925         * lib/dwarf.exp (Dwarf): Add DW_OP_bregx.
926
927 2015-10-19  Josh Stone  <jistone@redhat.com>
928
929         * gdb.base/catch-syscall.c: Include <sched.h>.
930         (unknown_syscall): New variable.
931         (main): Trigger a vfork and an unknown syscall.
932         * gdb.base/catch-syscall.exp (vfork_syscalls): New variable.
933         (unknown_syscall_number): Likewise.
934         (check_call_to_syscall): Accept an optional syscall pattern.
935         (check_return_from_syscall): Likewise.
936         (check_continue): Likewise.
937         (test_catch_syscall_without_args): Check for vfork and ENOSYS.
938         (test_catch_syscall_skipping_return): New test toggling off 'catch
939         syscall' to step over the syscall return, then toggling back on.
940         (test_catch_syscall_mid_vfork): New test turning on 'catch syscall'
941         during a PTRACE_EVENT_VFORK stop, in the middle of a vfork syscall.
942         (do_syscall_tests): Call test_catch_syscall_without_args and
943         test_catch_syscall_mid_vfork.
944         (test_catch_syscall_without_args_noxml): Check for vfork and ENOSYS.
945         (fill_all_syscalls_numbers): Initialize unknown_syscall_number.
946
947 2015-10-19  Andrew Stubbs  <ams@codesourcery.com>
948
949         * gdb.cp/inherit.exp (print g_vB, print g_vC, print g_vD,
950         print g_vE): Add new pass patterns.
951         * gdb.cp/virtbase.exp (print *this, print *(D *) e): Allow GDB to
952         print various symbol names for vptr fields.
953
954 2015-10-12  Andrew Burgess  <andrew.burgess@embecosm.com>
955
956         * gdb.base/dbx.exp (test_func): Remove xfails, update expected
957         results.
958
959 2015-10-12  Yao Qi  <yao.qi@linaro.org>
960
961         * gdb.arch/disp-step-insn-reloc.exp: New test case.
962
963 2015-10-12  Yao Qi  <yao.qi@linaro.org>
964
965         * lib/gdb.exp (support_displaced_stepping): Return 1 if target
966         is aarch64*-*-linux*.
967
968 2015-10-12  Yao Qi  <yao.qi@linaro.org>
969
970         * gdb.arch/insn-reloc.c (can_relocate_bcond): Rename to ...
971         (can_relocate_bcond_true): ... it.
972         (can_relocate_bcond_false): New function.
973         (foo): Likewise.
974         (can_relocate_bl): Likewise.
975         (testcases) [__aarch64__]: Add can_relocate_bcond_false and
976         can_relocate_bl.
977
978 2015-10-12  Pierre-Marie de Rodat  <derodat@adacore.com>
979
980         * gdb.base/nested-addr.c: New file.
981         * gdb.base/nested-addr.exp: New testcase.
982
983 2015-10-09  Markus Metzger  <markus.t.metzger@intel.com>
984
985         * gdb.btrace/vdso.c (main): Remove breakpoint markers.
986         * gdb.btrace/vdso.exp: Change stepping command to "next" and ignore
987         its output.  Ignore the output of "record goto begin" and instead
988         check that GDB is replaying.
989
990 2015-10-09  Pedro Alves  <palves@redhat.com>
991
992         * gdb.base/a2-run.exp (maybe_exp_continue): New procedure.
993         (top level): Use it in the run with no args test.
994
995 2015-10-08  Iain Buclaw  <ibuclaw@gdcproject.org>
996
997         * gdb.dlang/properties.exp: New file.
998
999 2015-10-02  Sandra Loosemore  <sandra@codesourcery.com>
1000
1001         * gdb.dwarf2/staticvirtual.exp: Generalize regexp so it can match
1002         whether or not address 0x1000 is mapped on the target.
1003
1004 2015-09-30  Simon Marchi  <simon.marchi@ericsson.com>
1005
1006         * gdb.python/py-type.exp: Do not run tests if binaries fail to
1007         build.
1008
1009 2015-09-30  Markus Metzger  <markus.t.metzger@intel.com>
1010
1011         * gdb.btrace/tsx.exp: Consider multiple correct outputs in the record
1012         instruction-history test.
1013
1014 2015-09-28  Doug Evans  <dje@google.com>
1015
1016         * gdb.base/gcore.c (array_func): Add reference to static_array.
1017
1018 2015-09-25  Simon Marchi  <simon.marchi@ericsson.com>
1019
1020         * gdb.gdb/selftest.exp (do_steps_and_nexts): Adjust expected
1021         source line.
1022
1023 2015-09-24 Sandra Loosemore <sandra@codesourcery.com>
1024
1025         * gdb.cp/classes.exp (test_enums): Generalize regexp to allow
1026         short or char as base type.
1027
1028 2015-09-23 Sandra Loosemore <sandra@codesourcery.com>
1029
1030         * gdb.cp/var-tag.exp (do_global_tests): Generalize opt_underlying
1031         to allow any size enum.
1032
1033 2015-09-23  Pierre-Marie de Rodat  <derodat@adacore.com>
1034
1035         * gdb.ada/array_ptr_renaming.exp: New testcase.
1036         * gdb.ada/array_ptr_renaming/foo.adb: New file.
1037         * gdb.ada/array_ptr_renaming/pack.ads: New file.
1038
1039 2015-09-21  Pierre Langlois  <pierre.langlois@arm.com>
1040
1041         * gdb.trace/ftrace-lock.c: New file.
1042         * gdb.trace/ftrace-lock.exp: New file.
1043
1044 2015-09-21  Pierre Langlois  <pierre.langlois@arm.com>
1045
1046         * gdb.arch/insn-reloc.c: New file.
1047         * gdb.arch/ftrace-insn-reloc.exp: New file.
1048
1049 2015-09-21  Pierre Langlois  <pierre.langlois@arm.com>
1050
1051         * gdb.trace/change-loc.h (func4) [__aarch64__]: Add a nop
1052         instruction.
1053         * gdb.trace/pendshr1.c (pendfunc): Likewise.
1054         * gdb.trace/pendshr2.c (pendfunc2): Likewise.
1055         * gdb.trace/range-stepping.c: Likewise.
1056         * gdb.trace/trace-break.c: Likewise.
1057         * gdb.trace/trace-mt.c (thread_function): Likewise.
1058         * gdb.trace/ftrace.c (marker): Likewise.
1059         * gdb.trace/trace-condition.c (marker): Likewise.
1060         * gdb.trace/ftrace.exp: Enable ftrace test if is_aarch64_target.
1061         * gdb.trace/trace-condition.exp: Set pcreg to "\$pc" if
1062         is_aarch64_target.
1063
1064 2015-09-18  Doug Evans  <xdje42@gmail.com>
1065
1066         * gdb.dwarf2/dw2-bad-unresolved.c: New file.
1067         * gdb.dwarf2/dw2-bad-unresolved.exp: New file.
1068
1069 2015-09-18  Sandra Loosemore  <sandra@codesourcery.com>
1070
1071         * gdb.base/dso2dso.exp: Don't use directory prefix when setting
1072         the breakpoint.
1073
1074 2015-09-18  Sandra Loosemore  <sandra@codesourcery.com>
1075
1076         * gdb.mi/mi-pending.exp: Don't use directory prefix when setting
1077         the pending breakpoint.  Remove timeout override for "Run till
1078         MI pending breakpoint on pendfunc3 on thread 2" test.
1079
1080 2015-09-18  Sandra Loosemore  <sandra@codesourcery.com>
1081
1082         * gdb.mi/mi-cli.exp: Don't require directory prefix in breakpoint
1083         filename pattern.
1084
1085 2015-09-18  Sandra Loosemore  <sandra@codesourcery.com>
1086
1087         * gdb.mi/mi-dprintf-pending.exp: Don't require directory prefix
1088         in breakpoint filename pattern.
1089
1090 2015-09-18  Sandra Loosemore  <sandra@codesourcery.com>
1091
1092         * gdb.base/global-var-nested-by-dso.exp: Call gdb_load_shlibs.
1093
1094 2015-09-18  Sandra Loosemore  <sandra@codesourcery.com>
1095
1096         * gdb.linespec/explicit.exp: Check for readline support for
1097         tab-completion tests.  Fix obvious typo.
1098
1099 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
1100
1101         * gdb.btrace/multi-thread-step.exp: Test scheduler-locking on, step,
1102         and replay.
1103
1104 2015-09-18  Markus Metzger  <markus.t.metzger@intel.com>
1105
1106         * gdb.btrace/non-stop.c: New.
1107         * gdb.btrace/non-stop.exp: New.
1108
1109 2015-09-17  Pierre Langlois  <pierre.langlois@arm.com>
1110             Yao Qi  <yao.qi@linaro.org>
1111
1112         * gdb.trace/trace-condition.c: New file.
1113         * gdb.trace/trace-condition.exp: New file.
1114
1115 2015-09-16  Wei-cheng Wang  <cole945@gmail.com>
1116
1117         * gdb.trace/ftrace.exp: (test_ftrace_condition) New function
1118         for testing bytecode compilation.
1119
1120 2015-09-16  Pedro Alves  <palves@redhat.com>
1121             Sandra Loosemore <sandra@codesourcery.com>
1122
1123         * gdb.threads/non-stop-fair-events.c (timeout): New global.
1124         (SECONDS): Redefine.
1125         (main): Call pthread_kill and alarm early.
1126         * gdb.threads/non-stop-fair-events.exp: Probe displaced stepping
1127         support.
1128         (test): If the target can't hardware step and doesn't support
1129         displaced stepping, increase the timeout.
1130
1131 2015-09-16  Pedro Alves  <palves@redhat.com>
1132
1133         * gdb.threads/non-stop-fair-events.exp (gdb_test_no_anchor)
1134         (enable_debug): New procedures.
1135         (test): Use them.  Bail out if waiting for threads fails.
1136         (top level): Bail out if a test fails.
1137
1138 2015-09-16  Yao Qi  <yao.qi@linaro.org>
1139
1140         * gdb.asm/asm-source.exp: Set asm-arch for
1141         aarch64*-*-* target.
1142         * gdb.asm/aarch64.inc: New file.
1143
1144 2015-09-15  Pierre-Marie de Rodat  <derodat@adacore.com>
1145
1146         * gdb.ada/array_of_variable_length.exp: New testcase.
1147         * gdb.ada/array_of_variable_length/foo.adb: New file.
1148         * gdb.ada/array_of_variable_length/pck.adb: New file.
1149         * gdb.ada/array_of_variable_length/pck.ads: New file.
1150
1151 2015-09-15  Doug Evans  <dje@google.com>
1152
1153         * gdb.base/callfuncs.exp (do_function_calls): Handle clang naming
1154         of function static local variable.
1155
1156 2015-09-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1157
1158         * gdb.threads/tls-so_extern.exp: New test file.
1159         * gdb.threads/tls-so_extern.c: New test file.
1160         * gdb.threads/tls-so_extern_main.c: New test file.
1161
1162 2015-09-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1163
1164         * gdb.opt/solib-intra-step-lib.c: New file.
1165         * gdb.opt/solib-intra-step-main.c: New file.
1166         * gdb.opt/solib-intra-step.exp: New file.
1167
1168 2015-09-15  Pedro Alves  <palves@redhat.com>
1169
1170         * gdb.threads/non-ldr-exc-3.exp (do_test): Use
1171         gdb_continue_to_breakpoint instead of gdb_test_multiple.
1172
1173 2015-09-14  Pedro Alves  <palves@redhat.com>
1174
1175         * gdb.base/hook-stop-continue.c: Delete.
1176         * gdb.base/hook-stop-continue.exp: Delete.
1177         * gdb.base/hook-stop-frame.c: Delete.
1178         * gdb.base/hook-stop-frame.exp: Delete.
1179         * gdb.base/hook-stop.c: New file.
1180         * gdb.base/hook-stop.exp: New file.
1181
1182 2015-09-14  Pierre-Marie de Rodat  <derodat@adacore.com>
1183
1184         * gdb.ada/access_to_packed_array.exp: New testcase.
1185         * gdb.ada/access_to_packed_array/foo.adb: New file.
1186         * gdb.ada/access_to_packed_array/pack.adb: New file.
1187         * gdb.ada/access_to_packed_array/pack.ads: New file.
1188
1189 2015-09-14  Markus Metzger  <markus.t.metzger@intel.com>
1190
1191         * gdb.btrace/buffer-size.exp: Remove recording with unlimited BTS
1192         buffer size test.
1193
1194 2015-09-11  Don Breazeal  <donb@codesourcery.com>
1195
1196         * gdb.base/foll-exec.c: Add copyright header.  Fix
1197         formatting issues.
1198         * gdb.base/foll-exec.exp (zap_session): Delete proc.
1199         (do_exec_tests): Use clean_restart in place of zap_session,
1200         and for test initialization.  Fix formatting issues.  Use
1201         fail in place of perror.
1202         * gdb.base/pie-execl.exp (main): Use 'inferior_spawn_id' in
1203         an expect statement to match an expression with output from
1204         the program under debug.
1205         * gdb.threads/non-ldr-exc-1.exp (do_test, main): Add
1206         non-stop tests and use save_vars to enable non-stop in GDBFLAGS.
1207         * gdb.threads/non-ldr-exc-2.exp: Likewise.
1208         * gdb.threads/non-ldr-exc-3.exp: Likewise.
1209         * gdb.threads/non-ldr-exc-4.exp: Likewise.
1210
1211 2015-09-09  Doug Evans  <dje@google.com>
1212
1213         * gdb.python/py-prettyprint.exp: Check result of run_lang_tests.
1214
1215 2015-09-09  Doug Evans  <dje@google.com>
1216
1217         * gdb.base/pie-execl.exp: Fix result test of build_executable.
1218
1219 2015-09-09  Doug Evans  <dje@google.com>
1220
1221         * gdb.base/savedregs.exp: Fix typo.
1222
1223 2015-09-09  Pedro Alves  <palves@redhat.com>
1224
1225         * gdb.mi/mi-cli.exp: Add CLI finish tests.
1226
1227 2015-09-08  Sandra Loosemore  <sandra@codesourcery.com>
1228
1229         * gdb.threads/hand-call-in-threads.exp: Make sure the thread
1230         command actually switches threads.  Give up on remaining
1231         tests if target fails to stop at breakpoint.
1232
1233 2015-09-03  Pierre-Marie de Rodat  <derodat@adacore.com>
1234
1235         * gdb.ada/funcall_char.exp: New testcase.
1236         * gdb.ada/funcall_char/foo.adb: New file.
1237
1238 2015-09-01  Pierre-Marie de Rodat  <derodat@adacore.com>
1239
1240         * gdb.ada/complete.exp: Add "pck.ambiguous_func" to the relevant
1241         expected outputs.  Add two testcases for completing ambiguous
1242         functions.
1243         * gdb.ada/complete/aux_pck.adb: New file.
1244         * gdb.ada/complete/aux_pck.ads: New file.
1245         * gdb.ada/complete/foo.adb: Pull Aux_Pck and call the two
1246         Ambiguous_Func functions.
1247         * gdb.ada/complete/pck.ads: Add an Ambiguous_Func function.
1248         * gdb.ada/complete/pck.adb: Likewise.
1249
1250 2015-08-27  Ulrich Weigand  <uweigand@de.ibm.com>
1251
1252         * lib/cell.exp (skip_cell_tests): Report UNRESOLVED on unexpected
1253         failures to run the test program under GDB.
1254
1255 2015-08-26  Luis Machado  <lgustavo@codesourcery.com>
1256
1257         * gdb.compile/compile-ifunc.exp (with_test_prefix): Force language
1258         to C.
1259
1260 2015-08-26  Patrick Palka  <patrick@parcs.ath.cx>
1261
1262         * gdb.base/run-after-attach.exp: New test file.
1263         * gdb.base/run-after-attach.c: New test file.
1264
1265 2015-08-26  Don Breazeal  <donb@codesourcery.com>
1266
1267         * gdb.base/foll-exec-2.c: New test program.
1268         * gdb.base/foll-exec-2.exp: New test.
1269
1270 2015-08-25  Pierre-Marie de Rodat  <derodat@adacore.com>
1271
1272         * gdb.base/nested-subp1.exp: New file.
1273         * gdb.base/nested-subp1.c: New file.
1274         * gdb.base/nested-subp2.exp: New file.
1275         * gdb.base/nested-subp2.c: New file.
1276         * gdb.base/nested-subp3.exp: New file.
1277         * gdb.base/nested-subp3.c: New file.
1278
1279 2015-08-24  Pedro Alves  <palves@redhat.com>
1280
1281         * gdb.server/connect-without-multi-process.c: New file.
1282         * gdb.server/connect-without-multi-process.exp: New file.
1283
1284 2015-08-24  Luis Machado  <lgustavo@codesourcery.com>
1285
1286         * gdb.opt/inline-markers.c: Make z int.
1287
1288 2015-08-24  Luis Machado  <lgustavo@codesourcery.com>
1289
1290         * gdb.opt/inline-markers.c: Make z volatile.
1291
1292 2015-08-24  Luis Machado  <lgustavo@codesourcery.com>
1293
1294         * gdb.opt/inline-bt.c: New volatile global z.
1295         * gdb.opt/inline-cmds.c: Likewise.
1296         * gdb.opt/inline-locals.c: Likewise.
1297         * gdb.opt/inline-markers.c: New extern global z.
1298         (marker): Use z.
1299         (inline_fn): Likewise.
1300
1301 2015-08-24  Pedro Alves  <palves@redhat.com>
1302
1303         * config/m32r-stub.exp: Remove file.
1304         * gdb.base/call-ar-st.exp: Remove reference to sparclet.
1305         * gdb.base/call-rt-st.exp: Likewise.
1306         * gdb.base/call-strs.exp: Likewise.
1307         * gdb.base/default.exp: Remove references to h8300-*-hms and
1308         *-*-udi*.
1309         * gdb.base/funcargs.exp: Remove reference to sparclet-*-*.
1310
1311 2015-08-24  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1312
1313         * gdb.base/gnu_vector.exp: Try compilation with "-mcpu=native
1314         -Wno-psabi" if "-mcpu=native" fails.  For the tests with "finish"
1315         and "return" use KFAIL when GDB can not read/write the vector
1316         return value.
1317
1318 2015-08-21  Gary Benson <gbenson@redhat.com>
1319
1320         * gdb.trace/pending.exp: Cope with remote transfer warnings.
1321
1322 2015-08-20  Pedro Alves  <palves@redhat.com>
1323
1324         * gdb.server/solib-list.exp: No longer expect an interior stop in
1325         non-stop mode.
1326
1327 2015-08-20  Pedro Alves  <palves@redhat.com>
1328
1329         * gdb.server/connect-stopped-target.c: New file.
1330         * gdb.server/connect-stopped-target.exp: New file.
1331
1332 2015-08-20  Pedro Alves  <palves@redhat.com>
1333
1334         * gdb.dwarf2/comp-unit-lang.exp: New file.
1335         * gdb.dwarf2/comp-unit-lang.c: New file.
1336
1337 2015-08-20  Pierre-Marie de Rodat  <derodat@adacore.com>
1338
1339         * gdb.ada/attr_ref_and_charlit.exp: New testcase.
1340         * gdb.ada/attr_ref_and_charlit/foo.adb: New file.
1341
1342 2015-08-19  Kevin Buettner  <kevinb@redhat.com>
1343
1344         * gdb.dwarf2/dw2-bad-mips-linkage-name.c: New file.
1345         * gdb.dwarf2/dw2-bad-mips-linkage-name.exp: New file.
1346
1347 2015-08-18  Doug Evans  <dje@google.com>
1348             Adrian Sendroiu <adrian.sendroiu@freescale.com>
1349
1350         * lib/gdb.exp (skip_python_tests_prompt): Renamed from
1351         skip_python_tests.  New arg prompt_regexp.
1352         (skip_python_tests): New function.
1353         * lib/mi-support.exp (mi_skip_python_tests): New function.
1354         * gdb.python/py-mi-objfile-gdb.py: New file.
1355         * gdb.python/py-mi-objfile.c: New file.
1356         * gdb.python/py-mi-objfile.exp: New file.
1357
1358 2015-08-17  Keith Seitz  <keiths@redhat.com>
1359
1360         * gdb.linespec/explicit.exp: Move strace test from here ...
1361         * gdb.trace/strace.exp: ... to here.
1362
1363 2015-08-15  Patrick Palka  <patrick@parcs.ath.cx>
1364
1365         * gdb.base/kill-detach-inferiors-cmd.exp: New test file.
1366         * gdb.base/kill-detach-inferiors-cmd.c: New test file.
1367
1368 2015-08-14  Doug Evans  <xdje42@gmail.com>
1369
1370         * gdb.perf/lib/perftest/utils.py (select_file): Kill any existing
1371         inferior before selecting a new file.
1372
1373 2015-08-14  Doug Evans  <xdje42@gmail.com>
1374
1375         * gdb.mi/mi-disassemble.exp: Update.
1376         * gdb.base/disasm-optim.S: New file.
1377         * gdb.base/disasm-optim.c: New file.
1378         * gdb.base/disasm-optim.h: New file.
1379         * gdb.base/disasm-optim.exp: New file.
1380
1381 2015-08-14  Keith Seitz  <keiths@redhat.com>
1382
1383         * lib/mi-support.exp (mi_make_breakpoint): Add option/handling for
1384         "evaluated-by".
1385
1386 2015-08-13  Joel Brobecker  <brobecker@adacore.com>
1387
1388         * gdb.base/dso2dso.exp: Improve the testcase's documentation.
1389
1390 2015-08-13  Pierre-Marie de Rodat  <derodat@adacore.com>
1391
1392         * gdb.ada/fun_renaming.exp: New testcase.
1393         * gdb.ada/fun_renaming/fun_renaming.adb: New file.
1394         * gdb.ada/fun_renaming/pack.adb: New file.
1395         * gdb.ada/fun_renaming/pack.ads: New file.
1396
1397 2015-08-12  Keith Seitz  <keiths@redhat.com>
1398
1399         * gdb.base/dso2dso.exp: Pass basename of source file in call to
1400         gdb_get_line_number.
1401
1402 2015-08-12  Joel Brobecker  <brobecker@adacore.com>
1403
1404         * gdb.base/dso2dso-dso2.c, gdb.base/dso2dso-dso2.h,
1405         gdb.base/dso2dso-dso1.c, gdb.base/dso2dso-dso1.h, gdb.base/dso2dso.c,
1406         gdb.base/dso2dso.exp: New files.
1407
1408 2015-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
1409             Pedro Alves  <palves@redhat.com>
1410             Keith Seitz  <keiths@redhat.com>
1411
1412         * gdb.base/checkpoint-ns.exp: Use save_vars to save and restore
1413         GDBFLAGS.
1414
1415 2015-08-12  Patrick Palka  <patrick@parcs.ath.cx>
1416
1417         * gdb.base/gdbhistsize-history.exp
1418         (test_histsize_history_setting): Use save_vars.
1419         * gdb.base/gdbinit-history.exp (test_gdbinit_history_setting):
1420         Use save_vars.
1421         (test_no_truncation_of_unlimited_history_file): Use save_vars.
1422         * gdb.base/readline.exp: Use save_vars.
1423
1424 2015-08-12  Patrick Palka  <patrick@parcs.ath.cx>
1425
1426         * lib/gdb.exp (save_vars): New proc.
1427
1428 2015-08-11  Keith Seitz  <keiths@redhat.com>
1429
1430         * gdb.base/help.exp: Update help_breakpoint_text.
1431
1432 2015-08-11  Keith Seitz  <keiths@redhat.com>
1433
1434         * gdb.mi/mi-break.exp (test_explicit_breakpoints): New proc.
1435         (at toplevel): Call test_explicit_breakpoints.
1436         * gdb.mi/mi-dprintf.exp: Add tests for explicit dprintf
1437         breakpoints.
1438         * lib/mi-support.exp (mi_make_breakpoint): Add support for
1439         breakpoint conditions, "-cond".
1440
1441 2015-08-11  Keith Seitz  <keiths@redhat.com>
1442
1443         * gdb.linespec/3explicit.c: New file.
1444         * gdb.linespec/cpexplicit.cc: New file.
1445         * gdb.linespec/cpexplicit.exp: New file.
1446         * gdb.linespec/explicit.c: New file.
1447         * gdb.linespec/explicit.exp: New file.
1448         * gdb.linespec/explicit2.c: New file.
1449         * gdb.linespec/ls-errs.exp: Add explicit location tests.
1450         * lib/gdb.exp (capture_command_output): Regexp-escape `command'
1451         before using in the matching pattern.
1452         Clarify that `prefix' is a regular expression.
1453
1454 2015-08-11  Keith Seitz  <keiths@redhat.com>
1455
1456         * gdb.base/dprintf-pending.exp: Update dprintf "without format"
1457         test.
1458         Add tests for missing ",FMT" and ",".
1459
1460 2015-08-10  Doug Evans  <dje@google.com>
1461             Keith Seitz  <keiths@redhat.com>
1462
1463         PR gdb/17960
1464         * gdb.base/completion.exp: Add location completer tests.
1465
1466 2015-08-07  Pedro Alves  <palves@redhat.com>
1467
1468         * gdb.arch/ppc64-atomic-inst.exp (do_test): New procedure, move
1469         tests here.
1470         (top level): Run do_test with and without displaced stepping.
1471
1472 2015-08-07  Pedro Alves  <palves@redhat.com>
1473
1474         * gdb.base/valgrind-disp-step.c: New file.
1475         * gdb.base/valgrind-disp-step.exp: New file.
1476
1477 2015-08-07  Pedro Alves  <palves@redhat.com>
1478
1479         * gdb.threads/step-over-lands-on-breakpoint.c (wait_threads):
1480         Delete function.
1481         (main): Add alarm.  Run an infinite loop instead of calling
1482         wait_threads.
1483         * gdb.threads/step-over-lands-on-breakpoint.exp (do_test): Change
1484         comment.
1485         * gdb.threads/step-over-trips-on-watchpoint.c (wait_threads):
1486         Delete function.
1487         (main): Add alarm.  Run an infinite loop instead of calling
1488         wait_threads.
1489         * gdb.threads/step-over-trips-on-watchpoint.exp (do_test): Change
1490         comment.
1491
1492 2015-08-07  Pedro Alves  <palves@redhat.com>
1493
1494         * gdb.base/checkpoint-ns.exp: New file.
1495         * gdb.base/checkpoint.exp: Pass explicit "checkpoint.c" to
1496         standard_testfile.
1497
1498 2015-08-07  Markus Metzger  <markus.t.metzger@intel.com>
1499
1500         * lib/gdb.exp (skip_tsx_tests, skip_btrace_pt_tests): New.
1501         * gdb.btrace/instruction_history.exp: Update.
1502         * gdb.btrace/tsx.exp: New.
1503         * gdb.btrace/tsx.c: New.
1504
1505 2015-08-06  Pedro Alves <palves@redhat.com>
1506
1507         * gdb.reverse/step-precsave.exp: Use with_timeout_factor to
1508         increase timeout.
1509         * gdb.reverse/until-precsave.exp: Bump timeouts.
1510
1511 2015-08-06  Pedro Alves  <palves@redhat.com>
1512
1513         * gdb.base/valgrind-infcall.exp: Issue a "disconnect".
1514
1515 2015-08-06  Pedro Alves  <palves@redhat.com>
1516
1517         PR gdb/18749
1518         * gdb.threads/process-dies-while-handling-bp.c: New file.
1519         * gdb.threads/process-dies-while-handling-bp.exp: New file.
1520
1521 2015-08-06  Pedro Alves  <palves@redhat.com>
1522
1523         * gdb.threads/forking-threads-plus-breakpoint.exp: New file.
1524         * gdb.threads/forking-threads-plus-breakpoint.c: New file.
1525
1526 2015-08-05  Pedro Alves  <palves@redhat.com>
1527
1528         * gdb.threads/next-while-other-thread-longjmps.c: New file.
1529         * gdb.threads/next-while-other-thread-longjmps.exp: New file.
1530
1531 2015-08-03  Sandra Loosemore  <sandra@codesourcery.com>
1532
1533         * gdb.base/bp-permanent.exp: Report test as unsupported if
1534         the target cannot stop at the permanent breakpoint.
1535
1536 2015-08-03  Doug Evans  <dje@google.com>
1537
1538         * gdb.perf/single-step.exp (SINGLE_STEP_COUNT): Change to 1000 from
1539         10000.
1540
1541 2015-08-03  Doug Evans  <dje@google.com>
1542
1543         * Makefile.in (workers/%.worker, build-perf): New rule.
1544         (GDB_PERFTEST_MODE): New variable.
1545         (check-perf): Use it.
1546         (clean): Clean up gdb.perf parallel build subdirs.
1547         * lib/build-piece.exp: New file.
1548         * lib/gdb.exp (make_gdb_parallel_path): New function
1549         (standard_output_file, standard_temp_file): Call it.
1550         (GDB_PARALLEL handling): Make outputs,temp,cache directories as subdirs
1551         of $GDB_PARALLEL.
1552         * lib/cache.exp (gdb_do_cache): Call make_gdb_parallel_path.
1553
1554 2015-08-03  Doug Evans  <dje@google.com>
1555
1556         * gdb.perf/lib/perftest/reporter.py (SUM_FILE_NAME): New global.
1557         (LOG_FILE_NAME): New global.
1558         (TextReporter.__init__): Initialize self.txt_sum.
1559         (TextReporter.report): Add support for multiple data-points.
1560         Move report to perftest.sum, put raw data in perftest.log.
1561         (TextReporter.start): Open sum and log files.
1562         (TextReporter.end): Close sum and log files.
1563         * gdb.perf/lib/perftest/testresult.py
1564         (SingleStatisticTestResult.record): Handle multiple data-points.
1565
1566 2015-07-31  Pedro Alves  <palves@redhat.com>
1567
1568         * gdb.base/attach-pie-misread.exp: Rename $res to $test_spawn_id.
1569         Use spawn_id_get_pid.  Wait for spawn id after eof.  Use
1570         kill_wait_spawned_process instead of explicit "kill -9".
1571         * gdb.base/attach-pie-noexec.exp: Adjust to spawn_wait_for_attach
1572         returning a spawn id instead of a pid.  Use spawn_id_get_pid and
1573         kill_wait_spawned_process.
1574         * gdb.base/attach-twice.exp: Likewise.
1575         * gdb.base/attach.exp: Likewise.
1576         (do_command_attach_tests): Use gdb_spawn_with_cmdline_opts and
1577         gdb_test_multiple.
1578         * gdb.base/solib-overlap.exp: Adjust to spawn_wait_for_attach
1579         returning a spawn id instead of a pid.  Use spawn_id_get_pid and
1580         kill_wait_spawned_process.
1581         * gdb.base/valgrind-infcall.exp: Likewise.
1582         * gdb.multi/multi-attach.exp: Likewise.
1583         * gdb.python/py-prompt.exp: Likewise.
1584         * gdb.python/py-sync-interp.exp: Likewise.
1585         * gdb.server/ext-attach.exp: Likewise.
1586         * gdb.threads/attach-into-signal.exp (corefunc): Use
1587         spawn_wait_for_attach, spawn_id_get_pid and
1588         kill_wait_spawned_process.
1589         * gdb.threads/attach-many-short-lived-threads.exp: Adjust to
1590         spawn_wait_for_attach returning a spawn id instead of a pid.  Use
1591         spawn_id_get_pid and kill_wait_spawned_process.
1592         * gdb.threads/attach-stopped.exp (corefunc): Use
1593         spawn_wait_for_attach, spawn_id_get_pid and
1594         kill_wait_spawned_process.
1595         * gdb.base/break-interp.exp: Rename $res to $test_spawn_id.
1596         Use spawn_id_get_pid.  Wait for spawn id after eof.  Use
1597         kill_wait_spawned_process instead of explicit "kill -9".
1598         * lib/gdb.exp (can_spawn_for_attach): Adjust comment.
1599         (kill_wait_spawned_process, spawn_id_get_pid): New procedures.
1600         (spawn_wait_for_attach): Use spawn instead of exec to spawn
1601         processes.  Don't map cygwin/windows pids here.  Now returns a
1602         spawn id list.
1603
1604 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
1605
1606         * gdb.cp/var-tag.exp (do_global_tests): Revert broken commit
1607         4bc4d42859e3b42c79c89295ef39944bdb3e6753 and apply the
1608         correct patch.
1609
1610 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
1611
1612         * gdb.arch/ppc64-symtab-cordic.exp: Restrict to ppc64 targets.
1613
1614 2015-07-30  Sandra Loosemore  <sandra@codesourcery.com>
1615
1616         Reapply:
1617         2014-05-21  Mark Wielaard  <mjw@redhat.com>
1618
1619         * gdb.cp/var-tag.exp (do_global_tests): Handle underlying type.
1620
1621 2015-07-30  Pedro Alves  <palves@redhat.com>
1622
1623         * linux-low.c (handle_extended_wait): Set the child's last
1624         reported status to TARGET_WAITKIND_STOPPED.
1625
1626 2015-07-30  Pedro Alves  <palves@redhat.com>
1627
1628         PR threads/18600
1629         * gdb.threads/fork-plus-threads.exp: Test that "info inferiors"
1630         only shows inferior 1.
1631
1632 2015-07-30  Simon Marchi  <simon.marchi@ericsson.com>
1633             Pedro Alves  <palves@redhat.com>
1634
1635         PR threads/18600
1636         * gdb.threads/fork-plus-threads.c: New file.
1637         * gdb.threads/fork-plus-threads.exp: New file.
1638
1639 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
1640
1641         * gdb.base/batch-preserve-term-settings.exp
1642         (test_terminal_settings_preserved_after_cli_exit): Use
1643         send_quit_command.
1644
1645 2015-07-29  Pedro Alves  <palves@redhat.com>
1646             Don Breazeal  <donb@codesourcery.com>
1647
1648         * gdb.base/multi-forks.exp (continue_to_exit_bp_loc): Expect
1649         output from both inferior_spawn_id and gdb_spawn_id.
1650
1651 2015-07-29  Sergio Durigan Junior  <sergiodj@redhat.com>
1652
1653         * gdb.threads/attach-into-signal.exp (corefunc): Use
1654         with_test_prefix on nested loops, uniquefying the test messages.
1655
1656 2015-07-29  Sergio Durigan Junior  <sergiodj@redhat.com>
1657
1658         * gdb.python/py-objfile.exp: Fix typo that snuck in from my last
1659         commit.
1660
1661 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
1662
1663         * gdb.base/batch-preserve-term-settings.exp (send_quit_command):
1664         New proc.
1665         (test_terminal_settings_preserved_after_sigterm): New test.
1666
1667 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
1668
1669         * gdb.base/batch-preserve-term-settings.exp
1670         (test_terminal_settings_preserved_after_cli_exit): New test.
1671
1672 2015-07-29  Patrick Palka  <patrick@parcs.ath.cx>
1673
1674         * gdb.base/batch-preserve-term-settings.exp: Remove top-level
1675         manipulation of saved_gdbflags.
1676         (test_terminal_settings_preserved): Remove global declaration of
1677         the unused variable pagination_prompt.  Remove manipulation of
1678         saved_gdbflags.  Use a local variable EXTRA_GDBFLAGS instead of
1679         GDBFLAGS.
1680
1681 2015-07-29  Pedro Alves  <palves@redhat.com>
1682
1683         * boards/gdbserver-base.exp: Don't set gdb,noinferiorio.
1684
1685 2015-07-29  Pedro Alves  <palves@redhat.com>
1686
1687         * gdb.base/interrupt.exp: Revert back to checking gdb,noinferiorio
1688         at the top.
1689
1690 2015-07-29  Pedro Alves  <palves@redhat.com>
1691
1692         * gdb.base/call-ar-st.c: Include "../lib/unbuffer_output.c".
1693         (main): Call gdb_unbuffer_output.
1694         * gdb.base/call-rt-st.c: Include "../lib/unbuffer_output.c".
1695         (main): Call gdb_unbuffer_output.
1696         * gdb.base/call-strs.c: Include "../lib/unbuffer_output.c".
1697         (main): Call gdb_unbuffer_output.
1698         * gdb.base/call-strs.exp: Adjust to step over the
1699         gdb_unbuffer_output call.
1700         * gdb.base/catch-gdb-caused-signals.c: Include
1701         "../lib/unbuffer_output.c".
1702         (main): Call gdb_unbuffer_output.
1703         * gdb.base/dprintf.c: Include "../lib/unbuffer_output.c".
1704         (main): Call gdb_unbuffer_output.
1705         * gdb.base/ending-run.c: Include "../lib/unbuffer_output.c".
1706         (main): Call gdb_unbuffer_output.
1707         * gdb.base/run.c: Include "../lib/unbuffer_output.c".
1708         (main): Call gdb_unbuffer_output.
1709         * gdb.base/shlib-call.exp: Adjust to step over the
1710         gdb_unbuffer_output call.
1711         * gdb.base/shmain.c: Include "../lib/unbuffer_output.c".
1712         (main): Call gdb_unbuffer_output.
1713         * gdb.base/sizeof.c: Include "../lib/unbuffer_output.c".
1714         (main): Call gdb_unbuffer_output.
1715         * gdb.base/varargs.c: Include "../lib/unbuffer_output.c".
1716         (main): Rename to ...
1717         (test): ... this.
1718         (main): Reimplement.
1719         * gdb.base/varargs.exp: Run to test instead of to main.
1720         * gdb.mi/mi-dprintf.c: Include "../lib/unbuffer_output.c".
1721         (main): Call gdb_unbuffer_output.
1722
1723 2015-07-29  Pedro Alves  <palves@redhat.com>
1724
1725         * gdb.mi/mi-dprintf.exp (mi_expect_dprintf): New procedure,
1726         factore out from mi_continue_dprintf.  For call-style dprintfs,
1727         expect dprintf output out of $inferior_spawn_id.
1728         (mi_continue_dprintf): Use mi_expect_dprintf.
1729         * gdb.mi/mi-dprintf.c: Include "../lib/unbuffer_output.c".
1730         (main): Call gdb_unbuffer_output.
1731
1732 2015-07-29  Pedro Alves  <palves@redhat.com>
1733
1734         * lib/mi-support.exp (mi_inferior_spawn_id): Delete.
1735         (default_mi_gdb_start): Set inferior_spawn_id instead of
1736         mi_inferior_spawn_id.  If $inferior_spawn_id is not set, set it to
1737         gdb_spawn_id.
1738         (mi_gdb_test): Always expect inferior output from both
1739         $inferior_spawn_id and $gdb_spawn_id.
1740
1741 2015-07-29  Pedro Alves  <palves@redhat.com>
1742
1743         * gdb.gdb/selftest.exp (test_with_self): Update comment.  Use
1744         send_inferior and $inferior_spawn_id.
1745
1746 2015-07-29  Pedro Alves  <palves@redhat.com>
1747
1748         * gdb.gdb/complaints.exp (test_initial_complaints)
1749         (test_serial_complaints, test_short_complaints): Use
1750         gdb_test_stdio.
1751         (test_empty_complaint): Handle $inferior_spawn_id !=
1752         $gdb_spawn_id.
1753
1754 2015-07-29  Pedro Alves  <palves@redhat.com>
1755
1756         * gdb.base/varargs.exp: Use gdb_test_stdio.
1757
1758 2015-07-29  Pedro Alves  <palves@redhat.com>
1759
1760         * gdb.base/shlib-call.exp: Use gdb_test_stdio.
1761
1762 2015-07-29  Pedro Alves  <palves@redhat.com>
1763
1764         * gdb.base/ending-run.exp: Use gdb_test_stdio.
1765
1766 2015-07-29  Pedro Alves  <palves@redhat.com>
1767
1768         * gdb.base/call-rt-st.exp (print_struct_call): Split "result"
1769         parameter into two new parameters, "inf_result" and "gdb_result".
1770         Expect inferior output and gdb output from $inferior_spawn_id and
1771         $gdb_spawn_id, respectively.  Adjust all callers.
1772
1773 2015-07-29  Pedro Alves  <palves@redhat.com>
1774
1775         * gdb.base/call-ar-st.exp: Use gdb_test_stdio+multi_line instead
1776         of gdb_test_sequence.
1777
1778 2015-07-29  Pedro Alves  <palves@redhat.com>
1779
1780         * gdb.base/a2-run.exp (saw_usage, saw_exit_wrapper)
1781         (saw_spurious_output): Expect inferior output from
1782         $inferior_spawn_id.  Use gdb_test_stdio.
1783
1784 2015-07-29  Pedro Alves  <palves@redhat.com>
1785
1786         * gdb.base/dprintf.exp: Use standard_testfile.  Change
1787         prepare_for_testing call.
1788         (srcfile): Don't set.
1789         (restart): New procedure.
1790         (test_dprintf): New procecure, use to continue over dprintfs.
1791         (test_call, test_agent): New procedures, tests moved here.
1792         Restart gdb and recreate dprintfs.  Adjust expected output.
1793
1794 2015-07-29  Pedro Alves  <palves@redhat.com>
1795
1796         * gdb.base/catch-gdb-caused-signals.exp: Use gdb_test_stdio.
1797
1798 2015-07-29  Pedro Alves  <palves@redhat.com>
1799
1800         * gdb.base/call-strs.exp: Use gdb_test_stdio instead of gdb_test.
1801
1802 2015-07-29  Pedro Alves  <palves@redhat.com>
1803
1804         * gdb.base/sizeof.exp (check_sizeof, check_valueof): Use
1805         gdb_test_stdio.
1806
1807 2015-07-29  Pedro Alves  <palves@redhat.com>
1808
1809         * lib/gdb.exp (gdb_test_stdio): New procedure.
1810
1811 2015-07-29  Pedro Alves  <palves@redhat.com>
1812
1813         * gdb.base/restore.exp (restore_tests): Use gdb_continue_to_end.
1814
1815 2015-07-29  Pedro Alves  <palves@redhat.com>
1816
1817         * gdb.base/call-signal-resume.exp: Remove check for
1818         gdb,noinferiorio.  Don't expect "no signal".  Use gdb_test.
1819         * gdb.base/unwindonsignal.exp: Likewise.
1820         * gdb.base/call-signals.c (gen_signal): Remove printf call.
1821         * gdb.base/unwindonsignal.c (gen_signal): Likewise.
1822
1823 2015-07-29  Pedro Alves  <palves@redhat.com>
1824
1825         * gdb.base/siginfo-addr.c (pass): New function.
1826         (handler): Call it iff si_addr is correct.
1827         * gdb.base/siginfo-addr.exp: Remove gdb_skip_stdio_test check.
1828         Set a breakpoint at "pass" and continue to it.
1829
1830 2015-07-28  Sergio Durigan Junior  <sergiodj@redhat.com>
1831
1832         * gdb.python/py-objfile.exp: Make some tests have unique names.
1833         * gdb.python/py-pp-registration.exp: Likewise.
1834
1835 2015-07-28  Pedro Alves  <palves@redhat.com>
1836
1837         * gdb.server/server-exec-info.exp: Issue a "disconnect".
1838
1839 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
1840
1841         * gdb.mi/mi-pending.c (thread_func): Replace return with return NULL.
1842
1843 2015-07-27  Simon Marchi  <simon.marchi@ericsson.com>
1844
1845         * gdb.mi/mi-watch.exp (test_watchpoint_triggering): Remove xfail.
1846
1847 2015-07-27  Patrick Palka  <patrick@parcs.ath.cx>
1848
1849         * gdb.base/gdb-sigterm-2.exp: New test.
1850
1851 2015-07-25  Doug Evans  <xdje42@gmail.com>
1852
1853         Revert:
1854         * Makefile.in (check/%.exp): Pass directory for GDB_PARALLEL.
1855         (workers/%.worker, build-perf): New rule.
1856         (GDB_PERFTEST_MODE): New variable.
1857         (check-perf): Use it.
1858         (clean): Clean up gdb.perf parallel build subdirs.
1859         * lib/build-piece.exp: New file.
1860         * lib/cache.exp (gdb_do_cache): Include $GDB_PARALLEL in path name.
1861         * lib/gdb.exp (standard_output_file): Include $GDB_PARALLEL in path
1862         name.
1863         (standard_temp_file): Ditto.
1864         (GDB_PARALLEL handling): Make outputs,temp,cache directories as subdirs
1865         of $GDB_PARALLEL.
1866
1867 2015-07-24  Doug Evans  <dje@google.com>
1868
1869         * gdb.perf/lib/perftest/utils.py: New file.
1870         * gdb.perf/gm-hello.cc: New file.
1871         * gdb.perf/gm-pervasive-typedef.cc: New file.
1872         * gdb.perf/gm-pervasive-typedef.h: New file.
1873         * gdb.perf/gm-std.cc: New file.
1874         * gdb.perf/gm-std.h: New file.
1875         * gdb.perf/gm-use-cerr.cc: New file.
1876         * gdb.perf/gm-utils.h: New file.
1877         * gdb.perf/gmonster-null-lookup.py: New file.
1878         * gdb.perf/gmonster-pervasive-typedef.py: New file.
1879         * gdb.perf/gmonster-print-cerr.py: New file.
1880         * gdb.perf/gmonster-ptype-string.py: New file.
1881         * gdb.perf/gmonster-runto-main.py: New file.
1882         * gdb.perf/gmonster-select-file.py: New file.
1883         * gdb.perf/gmonster1-null-lookup.exp: New file.
1884         * gdb.perf/gmonster1-pervasive-typedef.exp: New file.
1885         * gdb.perf/gmonster1-print-cerr.exp: New file.
1886         * gdb.perf/gmonster1-ptype-string.exp: New file.
1887         * gdb.perf/gmonster1-runto-main.exp: New file.
1888         * gdb.perf/gmonster1-select-file.exp: New file.
1889         * gdb.perf/gmonster1.cc: New file.
1890         * gdb.perf/gmonster1.exp: New file.
1891         * gdb.perf/gmonster2-null-lookup.exp: New file.
1892         * gdb.perf/gmonster2-pervasive-typedef.exp: New file.
1893         * gdb.perf/gmonster2-print-cerr.exp: New file.
1894         * gdb.perf/gmonster2-ptype-string.exp: New file.
1895         * gdb.perf/gmonster2-runto-main.exp: New file.
1896         * gdb.perf/gmonster2-select-file.exp: New file.
1897         * gdb.perf/gmonster2.cc: New file.
1898         * gdb.perf/gmonster2.exp: New file.
1899
1900 2015-07-24  Doug Evans  <dje@google.com>
1901
1902         * gdb.perf/README: New file.
1903         * lib/perftest.exp (tcl_string_list_to_python_list): New function.
1904         * lib/gen-perf-test.exp: New file.
1905
1906 2015-07-24  Doug Evans  <dje@google.com>
1907
1908         * lib/perftest.exp (PerfTest::compile): Unconditionally call body.
1909         (PerfTest::startup): New function.
1910         (PerfTest::run): Return result of calling body.
1911         (PerfTest::assemble): Rewrite.
1912         * gdb.perf/backtrace.exp (PerfTest::assemble): Update function result.
1913         * gdb.perf/disassemble.exp (PerfTest::assemble): Ditto.
1914         * gdb.perf/single-step.exp (PerfTest::assemble): Ditto.
1915         * gdb.perf/skip-prologue.exp (PerfTest::assemble): Ditto.
1916         * gdb.perf/solib.exp (PerfTest::assemble): Ditto.
1917
1918 2015-07-24  Doug Evans  <dje@google.com>
1919
1920         * lib/gdb.exp (clean_restart): Make executable optional.
1921
1922 2015-07-24  Doug Evans  <dje@google.com>
1923
1924         * gdb.base/watchpoint.exp (test_complex_watchpoint): Remove
1925         compiler_info references.
1926         * gdb.cp/temargs.exp: Ditto.
1927         * lib/gdb.exp: Unset compiler_info instead of setting to "unknown".
1928         (get_compiler_info): Early exit if already computed.  Set compiler_info
1929         to "unknown" if there was a problem.
1930         (test_compiler_info): Add function comment.  Call get_compiler_info.
1931
1932 2015-07-24  Doug Evans  <dje@google.com>
1933
1934         * Makefile.in (check/%.exp): Pass directory for GDB_PARALLEL.
1935         (workers/%.worker, build-perf): New rule.
1936         (GDB_PERFTEST_MODE): New variable.
1937         (check-perf): Use it.
1938         (clean): Clean up gdb.perf parallel build subdirs.
1939         * lib/build-piece.exp: New file.
1940         * lib/cache.exp (gdb_do_cache): Include $GDB_PARALLEL in path name.
1941         * lib/gdb.exp (standard_output_file): Include $GDB_PARALLEL in path
1942         name.
1943         (standard_temp_file): Ditto.
1944         (GDB_PARALLEL handling): Make outputs,temp,cache directories as subdirs
1945         of $GDB_PARALLEL.
1946
1947 2015-07-24  Doug Evans  <dje@google.com>
1948
1949         * lib/future.exp (gdb_default_target_compile): New option
1950         "early_flags".
1951         * lib/gdb.exp (gdb_compile): Undo debian's change in default of
1952         --as-needed.
1953
1954 2015-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
1955
1956         * gdb.base/catch-syscall.exp: Call gdb_exit before
1957         gdb_skip_xml_test.
1958
1959 2015-07-24  Pedro Alves  <palves@redhat.com>
1960
1961         * gdb.python/py-events.exp: Accept output between the stop event
1962         and the prompt.
1963         * gdb.python/py-evsignal.exp: Likewise.
1964         * gdb.python/py-evthreads.exp: Likewise.
1965
1966 2015-07-24  Pedro Alves  <palves@redhat.com>
1967
1968         PR gdb/18717
1969         * gdb.threads/non-ldr-exit.c: New file.
1970         * gdb.threads/non-ldr-exit.exp: New file.
1971
1972 2015-07-24  Yao Qi  <yao.qi@linaro.org>
1973
1974         * gdb.server/ext-wrapper.exp: Test --wrapper option when
1975         restarting process.
1976
1977 2015-07-24  Yao Qi  <yao.qi@linaro.org>
1978
1979         * gdb.server/ext-restart.exp: New file.
1980
1981 2015-07-24  Yao Qi  <yao.qi@linaro.org>
1982
1983         * lib/gdbserver-support.exp (gdbserver_start_extended): Add
1984         argument options.
1985         * gdb.server/ext-wrapper.exp: New file.
1986
1987 2015-07-23  Doug Evans  <dje@google.com>
1988
1989         * gdb.dwarf2/dw2-dummy-cu.S: New file.
1990         * gdb.dwarf2/dw2-dummy-cu.exp: New file.
1991
1992 2015-07-23  Pierre-Marie de Rodat  <derodat@adacore.com>
1993
1994         * gdb.ada/var_arr_typedef.exp: New testcase.
1995         * gdb.ada/var_arr_typedef/pack.adb: New file.
1996         * gdb.ada/var_arr_typedef/pack.ads: New file.
1997         * gdb.ada/var_arr_typedef/var_arr_typedef.adb: New file.
1998
1999 2015-07-20  Joel Brobecker  <brobecker@adacore.com>
2000
2001         * gdb.ada/info_exc.exp: Adjust "info exceptions" expected output.
2002
2003 2015-07-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2004
2005         * gdb.arch/i386-biarch-core.exp: Replace istarget
2006         by "complete set gnutarget". Remove expectation for the "core-file"
2007         command.
2008
2009 2015-07-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
2010
2011         Revert the previous commit:
2012         Tests for validate symbol file using build-id.
2013
2014 2015-07-15  Aleksandar Ristovski  <aristovski@qnx.com
2015
2016         Tests for validate symbol file using build-id.
2017         * gdb.base/solib-mismatch-lib.c: New file.
2018         * gdb.base/solib-mismatch-libmod.c: New file.
2019         * gdb.base/solib-mismatch.c: New file.
2020         * gdb.base/solib-mismatch.exp: New file.
2021
2022 2015-07-15  Sandra Loosemore  <sandra@codesourcery.com>
2023
2024         * gdb.base/sigaltstack.exp (finish_test): Add kfail for
2025         nios2-*-linux*.
2026         * gdb.base/sigbpt.exp (stepi_out): Likewise.
2027         * gdb.base/siginfo.exp: Likewise.
2028         * gdb.base/sigstep.exp (advance, advancei): Likewise.
2029
2030 2015-07-15  Pierre Langlois  <pierre.langlois@arm.com>
2031
2032         * gdb.base/range-stepping.exp (gdb_range_stepping_enabled):
2033         Move it to ...
2034         * lib/range-stepping-support.exp (gdb_range_stepping_enabled):
2035         ... here.
2036         * gdb.trace/range-stepping.exp: Check that the target supports
2037         range stepping.
2038
2039 2015-07-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
2040
2041         * gdb.arch/i386-biarch-core.exp: Fix comment typo.
2042
2043 2015-07-14  Pedro Alves  <palves@redhat.com>
2044
2045         * gdb.base/killed-outside.exp: New file.
2046         * gdb.base/killed-outside.c: New file.
2047
2048 2015-07-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
2049
2050         * gdb.asm/asm-source.exp (f at main): Stop at gdbasm_enter.
2051         (n at main): New.
2052         * gdb.asm/asmsrc1.s: Add comment "mark: main enter".
2053
2054 2015-07-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2055
2056         * gdb.base/gnu_vector.exp: On x86 and x86_64 targets, skip the
2057         infcall tests instead of setting up for KFAIL.
2058
2059 2015-07-10  Markus Metzger  <markus.t.metzger@intel.com>
2060
2061         * gdb.btrace/record_goto-step.exp: New.
2062
2063 2015-07-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
2064
2065         PR compile/18484
2066         * gdb.compile/compile.c (struct struct_type): Add volatile to
2067         selffield's type.
2068         * gdb.compile/compile.exp
2069         (compile code struct_object.selffield = &struct_object): Skip further
2070         struct_object tests if this one xfails.
2071
2072 2015-07-08  Robert O'Callahan  <robert@ocallahan.org>
2073
2074         PR exp/18617
2075         * gdb.trace/ax.exp: Add test.
2076
2077 2015-07-07  Yao Qi  <yao.qi@linaro.org>
2078
2079         * gdb.arch/aarch64-atomic-inst.exp: Check is_aarch64_target
2080         instead of istarget "aarch64*-*-*".
2081         * gdb.arch/aarch64-fp.exp: Likewise.
2082         * gdb.base/float.exp: Likewise.
2083         * gdb.reverse/aarch64.exp: Likewise.
2084         * lib/gdb.exp (is_aarch64_target): New proc.
2085
2086 2015-07-07  Yao Qi  <yao.qi@linaro.org>
2087
2088         * lib/gdb.exp (is_aarch32_target): New proc.
2089         * gdb.arch/arm-bl-branch-dest.exp: Check is_aarch32_target
2090         instead of "istarget "arm*-*-*"".
2091         * gdb.arch/arm-disp-step.exp: Likewise.
2092         * gdb.arch/thumb-bx-pc.exp: Likewise.
2093         * gdb.arch/thumb-prologue.exp: Likewise.
2094         * gdb.arch/thumb-singlestep.exp: Likewise.
2095         * gdb.base/disp-step-syscall.exp: Likewise.
2096         * gdb.base/float.exp: Likewise.
2097
2098 2015-07-07  Yao Qi  <yao.qi@linaro.org>
2099
2100         * gdb.base/catch-syscall.exp (test_catch_syscall_multi_arch):
2101         Set arch1, arch2, syscall1_name, syscall2_name and syscall_number.
2102
2103 2015-07-07  Yao Qi  <yao.qi@linaro.org>
2104
2105         * gdb.multi/multi-arch-exec.exp: Set march1 and march2 to "" if target
2106         is aarch64.  If target is aarch64, set compiler=${ARM_CC_FOR_TARGET}
2107         if it exists.
2108         * gdb.multi/multi-arch.exp: Likewise.
2109
2110 2015-07-07  Simon Marchi  <simon.marchi@ericsson.com>
2111
2112         * gdb.python/py-lazy-string.exp: Add missing parentheses to
2113         print.
2114
2115 2015-07-07  Yao Qi  <yao.qi@linaro.org>
2116
2117         * gdb.arch/thumb-singlestep.exp: Do one more single step.
2118
2119 2015-06-30  Martin Galvan  <martin.galvan@tallertechnologies.com>
2120
2121         * lib/gdb.exp (test_class_help): Remove the unneeded escaping of
2122         '[' and ']' characters.
2123
2124 2015-06-30  Iain Buclaw  <ibuclaw@gdcproject.org>
2125
2126         * gdb.dlang/demangle.exp: Sync tests from libiberty testsuite.
2127
2128 2015-06-29  Pedro Alves  <palves@redhat.com>
2129
2130         PR threads/18127
2131         * gdb.threads/hand-call-new-thread.c: New file.
2132         * gdb.threads/hand-call-new-thread.c: New file.
2133
2134 2015-06-26  Keith Seitz  <keiths@redhat.com>
2135             Doug Evans  <dje@google.com>
2136
2137         PR 16253
2138         * gdb.cp/var-tag-2.cc: New file.
2139         * gdb.cp/var-tag-3.cc: New file.
2140         * gdb.cp/var-tag-4.cc: New file.
2141         * gdb.cp/var-tag.cc: New file.
2142         * gdb.cp/var-tag.exp: New file.
2143
2144 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
2145
2146         * gdb.base/history-duplicates.exp: New test.
2147
2148 2015-06-26  Patrick Palka  <patrick@parcs.ath.cx>
2149
2150         * gdb.base/completion.exp: Test the completion of the "focus"
2151         command.
2152
2153 2015-06-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2154
2155         * gdb.arch/amd64-prologue-skip.S: New file.
2156         * gdb.arch/amd64-prologue-skip.exp: New file.
2157
2158 2015-06-25  Simon Marchi  <simon.marchi@ericsson.com>
2159
2160         * gdb.python/py-prettyprint.exp (run_lang_tests): Add
2161         is_address_zero_readable check.
2162
2163 2015-06-24  Peter Bergner  <bergner@vnet.ibm.com>
2164
2165         * gdb.arch/powerpc-power.exp <rfebb>: Fixup test results.
2166         * gdb.arch/powerpc-power.s <rfebb>: Likewise.
2167
2168 2015-06-24  Yao Qi  <yao.qi@linaro.org>
2169
2170         * lib/gdb.exp (supports_get_siginfo_type): Return 1 for all
2171         linux targets.
2172
2173 2015-06-24  Yao Qi  <yao.qi@linaro.org>
2174
2175         * lib/gdb.exp (supports_get_siginfo_type): New proc.
2176         * gdb.base/siginfo-obj.exp: Invoke supports_get_siginfo_type.
2177         * gdb.base/siginfo-thread.exp: Likewise.
2178
2179 2015-06-22  Yao Qi  <yao.qi@linaro.org>
2180
2181         * boards/remote-gdbserver-on-localhost.exp: Add comments.
2182
2183 2015-06-22  Yao Qi  <yao.qi@linaro.org>
2184
2185         * lib/gdb.exp (skip_hw_breakpoint_tests): Return 0 for target
2186         aarch64*-*-*.
2187         (skip_hw_watchpoint_tests): Likewise.
2188
2189 2015-06-18  Patrick Palka  <patrick@parcs.ath.cx>
2190
2191         * gdb.base/gdbinit-history.exp: Test the interaction between
2192         setting GDBHISTSIZE and setting the history size via .gdbinit.
2193
2194 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
2195
2196         PR gdb/16999
2197         * gdb.base/gdbhistsize-history.exp: New test.
2198
2199 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
2200
2201         * gdb.base/gdbinit-history.exp: Replace occurrences of HISTSIZE
2202         with GDBHISTSIZE.
2203         * gdb.base/readline.exp: Likewise.
2204
2205 2015-06-17  Yao Qi  <yao.qi@linaro.org>
2206
2207         * lib/gdb.exp (get_build_id): Move braces and "else" to the same
2208         line.
2209
2210 2015-06-17  Patrick Palka  <patrick@parcs.ath.cx>
2211
2212         * gdb.base/gdbinit-history.exp: Add test case to check that
2213         an unlimited history file does not get truncated on exit.
2214
2215 2015-06-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2216
2217         * gdb.base/gnu_vector.c: Include stdarg.h and stdio.h.
2218         (VECTOR): New macro.  Use it...
2219         (int4, uint4, char4, float4, int2, longlong2, float2, double2):
2220         ...for these typedefs.
2221         (int8, char1, int1, double1): New typedefs.
2222         (struct just_int2, struct two_int2): New structures.
2223         (add_some_intvecs, add_many_charvecs, add_various_floatvecs)
2224         (add_structvecs, add_singlevecs): New functions.
2225         (main): Call add_some_intvecs twice.
2226         * gdb.base/gnu_vector.exp: Drop GCC version check; just attempt
2227         the compile and exit upon failure.  Try compiling for the "native"
2228         architecture.  Test inferior function calls with vector arguments
2229         and vector return value handling with "finish" and "return".
2230
2231 2015-06-10  Jon Turney  <jon.turney@dronecode.org.uk>
2232
2233         * gdb.base/sepdebug.exp: Add EXEEXT where needed.
2234         * lib/gdb.exp (get_build_id): Teach how to extract build-id from a
2235         PE file.
2236         * lib/future.exp (gdb_find_objdump): Add gdb_find_objdump.
2237
2238 2015-06-12  Antoine Tremblay  <antoine.tremblay@ericsson.com>
2239
2240         PR breakpoints/16465
2241         * gdb.mi/mi-dprintf-pending.c: New file.
2242         * gdb.mi/mi-dprintf-pending.exp: New test.
2243         * gdb.mi/mi-dprintf-pendshr.c: New file.
2244
2245 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2246             Mircea Gherzan  <mircea.gherzan@intel.com>
2247
2248         * gdb.arch/i386-mpx-map.c: New file.
2249         * gdb.arch/i386-mpx-map.exp: New File.
2250
2251 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2252
2253         * gdb.arch/i386-mpx.c (have_mpx): Indentation fixed.
2254         * gdb.arch/i386-mpx.exp: Indentation fixed.
2255
2256 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2257
2258         * gdb.arch/i386-mpx.c: Added final return to the have_mpx
2259         function and improved indentation.
2260         * gdb.arch/i386-mpx.exp: Exchanging gdb_send and gdb_expect for
2261         gdb_test_multiple. Added additional tests to skip the test.
2262
2263 2015-06-10  Walfred Tedeschi  <walfred.tedeschi@intel.com>
2264
2265         * gdb.arch/i386-avx512.c: Change path in include file.
2266         * gdb.arch/i386-avx512.exp: Change include dir path
2267         compilation flag.
2268         * gdb.arch/i386-mpx.c: Change path in include file.
2269         * gdb.arch/i386-mpx.exp: Change include dir path compilation
2270         flag.
2271
2272 2015-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
2273
2274         * gdb.compile/compile-print.exp (compile print *vararray@3)
2275         (compile print *vararrayp@3): Change xfail to kfail compile/18489.
2276
2277 2015-06-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
2278
2279         * gdb.compile/compile.exp (keep jit in memory): Rename to ...
2280         (do not keep jit in memory): ... this.
2281         (expect 5): Change it to ...
2282         (expect no 5): ... this.
2283
2284 2015-06-02  Simon Marchi  <simon.marchi@ericsson.com>
2285
2286         PR gdb/15564
2287         * gdb.mi/mi-detach.exp: New file.
2288
2289 2015-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
2290
2291         PR symtab/18392
2292         * gdb.arch/amd64-tailcall-self.S: New file.
2293         * gdb.arch/amd64-tailcall-self.c: New file.
2294         * gdb.arch/amd64-tailcall-self.exp: New file.
2295
2296 2015-05-28  Don Breazeal  <donb@codesourcery.com>
2297
2298         * gdb.base/foll-vfork.exp (main): Disable exec-dependent
2299         tests for remote targets by checking is_target_gdbserver.
2300
2301 2015-05-27  Doug Evans  <dje@google.com>
2302
2303         * gdb.dwarf2/opaque-type-lookup-2.c: New file.
2304         * gdb.dwarf2/opaque-type-lookup.c: New file.
2305         * gdb.dwarf2/opaque-type-lookup.exp: New file.
2306
2307 2015-05-26  Doug Evans  <dje@google.com>
2308
2309         * gdb.cp/iostream.cc: New file.
2310         * gdb.cp/iostream.exp: New file.
2311
2312 2015-05-26  Doug Evans  <dje@google.com>
2313
2314         * gdb.dwarf2/dw2-op-call.exp: Update.
2315         * gdb.dwarf2/dw4-sig-types.exp: Update.
2316         * gdb.dwarf2/implptr.exp: Update.
2317         * gdb.mi/mi-cmd-param-changed.exp: Update.
2318
2319 2015-05-26  Doug Evans  <dje@google.com>
2320
2321         * gdb.python/py-lazy-string.c: New file.
2322         * gdb.python/py-lazy-string.exp: New file.
2323         * gdb.python/py-prettyprint.c (lazystring) <len>: New member.
2324         (main): Update.  Add estring3.
2325         * gdb.python/py-prettyprint.exp: Add tests for strings at address 0.
2326         * gdb.python/py-prettyprint.py (pp_ls): Handle length.
2327
2328 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
2329             Yao Qi  <yao.qi@linaro.org>
2330
2331         * gdb.reverse/aarch64.c: New.
2332         * gdb.reverse/aarch64.exp: New.
2333
2334 2015-05-26  Omair Javaid  <omair.javaid@linaro.org>
2335
2336         * lib/gdb.exp (supports_process_record): Return true for aarch64*-linux*.
2337         (supports_reverse): Likewise.
2338
2339 2015-05-22  Patrick Palka  <patrick@parcs.ath.cx>
2340
2341         * gdb.base/gdbinit-history.exp (test_gdbinit_history_setting):
2342         Use with_test_prefix.
2343
2344 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
2345
2346         * gdb.base/completion.exp: Add test for completion of layout
2347         names.
2348
2349 2015-05-20  Andrew Burgess  <andrew.burgess@embecosm.com>
2350
2351         * lib/gdb.exp (skip_tui_tests): New proc.
2352         * gdb.base/tui-layout.exp: Check skip_tui_tests.
2353
2354 2015-05-19  Pedro Alves  <palves@redhat.com>
2355
2356         * gdb.base/gdbinit-history.exp (test_gdbinit_history_setting):
2357         Save the whole env array instead of just HOME.  Unset HISTSIZE in
2358         the environment while testing.  Restore whole environment
2359         afterwards.
2360
2361 2015-05-16  Doug Evans  <xdje42@gmail.com>
2362
2363         * gdb.guile/scm-ports.c: New file.
2364         * gdb.guile/scm-ports.exp: Add memory port tests.
2365
2366 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2367
2368         * gdb.compile/compile-print.c: New file.
2369         * gdb.compile/compile-print.exp: New file.
2370
2371 2015-05-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
2372
2373         * gdb.compile/compile-ops.exp: Cast param to void.
2374         * gdb.compile/compile.exp: Complete type for _gdb_expr.
2375         (compile code struct_object.selffield = &struct_object): Add xfail.
2376
2377 2015-05-15  Joel Brobecker  <brobecker@adacore.com>
2378
2379         * gdb.ada/arr_enum_with_gap: New testcase.
2380
2381 2015-05-15  Joel Brobecker  <brobecker@adacore.com>
2382
2383         * gdb.ada/byte_packed_arr: New testcase.
2384
2385 2015-05-15  Joel Brobecker  <brobecker@adacore.com>
2386
2387         * gdb.ada/pckd_neg: New testcase.
2388
2389 2015-05-13  Patrick Palka  <patrick@parcs.ath.cx>
2390
2391         PR gdb/17820
2392         * gdb.base/gdbinit-history.exp: New test.
2393         * gdb.base/gdbinit-history/unlimited/.gdbinit: New file.
2394         * gdb.base/gdbinit-history/zero/.gdbinit: New file.
2395
2396 2015-05-09  Siva Chandra Reddy  <sivachandra@google.com>
2397
2398         * gdb.python/py-xmethods.cc: Enhance test case.
2399         * gdb.python/py-xmethods.exp: New tests.
2400         * gdb.python/py-xmethods.py (A_indexoper): New xmethod worker
2401         function.
2402         (B_indexoper): Likewise.
2403         (global_dm_list) : Add new xmethod worker functions.
2404
2405 2015-05-08  Sergio Durigan Junior  <sergiodj@redhat.com>
2406
2407         * gdb.base/coredump-filter.exp: Correctly unset
2408         "coredump_var_addr" array.
2409
2410 2015-05-08  Pedro Alves  <palves@redhat.com>
2411
2412         * gdb.server/non-existing-program.exp: Unset spawn_id.
2413
2414 2015-05-08  Siva Chandra Reddy  <sivachandra@google.com>
2415
2416         PR python/18291
2417         * gdb.python/py-xmethods.exp: Add tests.
2418
2419 2015-05-08  Yao Qi  <yao.qi@linaro.org>
2420
2421         PR gdb/18208
2422         * gdb.base/coredump-filter.c (set_coredump_filter): New function.
2423         * gdb.base/coredump-filter.exp (do_save_core): Call inferior
2424         function set_coredump_filter, and remove remote_exec call.
2425         Remove argument ipid.  Callers update.
2426         (top level): Don't get inferior's PID.
2427
2428 2015-05-08  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2429
2430         * gdb.base/watch_thread_num.exp: Skip test on targets without
2431         access watchpoints.
2432
2433 2015-05-06  Pedro Alves  <palves@redhat.com>
2434
2435         PR server/18081
2436         * gdb.server/non-existing-program.exp: New file.
2437
2438 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
2439
2440         * gdb.ada/out_of_line_in_inlined.exp: Add run and "bt" tests.
2441
2442 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
2443
2444         * gdb.ada/out_of_line_in_inlined: New testcase.
2445
2446 2015-05-05  Joel Brobecker  <brobecker@adacore.com>
2447
2448         * gdb.ada/var_rec_arr: New testcase.
2449
2450 2015-04-30  Yao Qi  <yao.qi@linaro.org>
2451
2452         * gdb.base/break-idempotent.exp: If
2453         skip_hw_watchpoint_multi_tests returns true, skip the tests
2454         on "rwatch" and "awatch".
2455
2456 2015-04-30  Yao Qi  <yao.qi@linaro.org>
2457
2458         * gdb.base/relativedebug.exp: Invoke gdb command
2459         "info sharedlibrary", and if libc.so doesn't have debug info,
2460         skip the test.
2461
2462 2015-04-29  Doug Evans  <dje@google.com>
2463
2464         * gdb.python/py-xmethods.exp: Add ptype tests.
2465         * gdb.python/py-xmethods.py (E_method_char_worker): Add
2466         get_result_type method.
2467
2468 2015-04-29  Luis Machado  <lgustavo@codesourcery.com>
2469
2470         * gdb.base/watch-bitfields.exp: Switch to software watchpoints if
2471         the target does not support hardware watchpoints.
2472
2473 2015-04-29  Luis Machado  <lgustavo@codesourcery.com>
2474
2475         * gdb.base/break-always.exp: Abort testing if writing to memory
2476         causes an error.
2477
2478 2015-04-28  Doug Evans  <dje@google.com>
2479
2480         * gdb.python/py-pp-maint.py: Move "replace" testing to ...
2481         * gdb.python/py-pp-registration.exp: ... here.  New file.
2482         * gdb.python/py-pp-registration.c: New file.
2483         * gdb.python/py-pp-registration.py: New file.
2484
2485 2015-04-28  Doug Evans  <dje@google.com>
2486
2487         * gdb.python/py-bad-printers.c: New file.
2488         * gdb.python/py-bad-printers.py: New file.
2489         * gdb.python/py-bad-printers.exp: New file.
2490
2491 2015-04-28  Sasha Smundak  <asmundak@google.com>
2492
2493         * gdb.python/py-type.exp: New test.
2494
2495 2015-04-28  Andy Wingo  <wingo@igalia.com>
2496
2497         * gdb.python/py-parameter.exp:
2498         * gdb.guile/scm-parameter.exp: Escape the path that we are
2499         matching against, as it might contain characters that are special
2500         to regular expressions.
2501
2502 2015-04-27  Joel Brobecker  <brobecker@adacore.com>
2503
2504         * gdb.ada/rec_comp: New testcase.
2505
2506 2015-04-26  Sergio Durigan Junior  <sergiodj@redhat.com>
2507
2508         * gdb.base/coredump-filter.exp: Clear variable "coredump_var_addr"
2509         before using it.
2510
2511 2015-04-24  Andrew Burgess  <andrew.burgess@embecosm.com>
2512
2513         * gdb.base/dump.exp: Add *.verilog files to all_files list.  Add
2514         new tests for verilog output.
2515
2516 2015-04-24  Yao Qi  <yao.qi@linaro.org>
2517
2518         * boards/remote-gdbserver-on-localhost.exp: New file.
2519
2520 2015-04-23  Pedro Alves  <palves@redhat.com>
2521
2522         * gdb.base/interrupt.exp: Use an indirect spawn id list holding
2523         $inferior_spawn_id instead of $inferior_spawn_id directly.  On
2524         "end of file", remove $inferior_spawn_id from the indirect list.
2525
2526 2015-04-23  Pedro Alves  <palves@redhat.com>
2527
2528         * gdb.base/interrupt.exp: Rename saw_eof to saw_end_of_file.
2529
2530 2015-04-23  Pedro Alves  <palves@redhat.com>
2531
2532         * lib/gdb.exp (gdb_test_multiple): Match eof/full_buffer/timeout
2533         on $any_spawn_id instead of only on $gdb_spawn_id.
2534
2535 2015-04-21  Pierre Muller  <muller@sourceware.org>
2536
2537         PR pascal/17815
2538         * lib/pascal.exp (gpc_compile): Add new option "class".
2539         (fpc_compile): Likewise.
2540         * gdb.pascal/case-insensitive-symbols.pas: New file.
2541         * gdb.pascal/case-insensitive-symbols.exp: New file.
2542
2543 2015-04-20  Gary Benson <gbenson@redhat.com>
2544
2545         * gdb.base/attach.exp: Fix three extended remote failures.
2546
2547 2015-04-17  Gary Benson <gbenson@redhat.com>
2548
2549         * gdb.server/server-exec-info.exp: Inhibit GDB from accessing
2550         the main executable over the remote protocol.
2551
2552 2015-04-16  Pedro Alves  <palves@redhat.com>
2553
2554         * boards/native-extended-gdbserver.exp (mi_gdb_start): Don't start
2555         a new gdbserver if gdbserver_reconnect_p is set.
2556
2557 2015-04-16  Pedro Alves  <palves@redhat.com>
2558
2559         * lib/gdbserver-support.exp (gdb_exit): If gdbserver_reconnect_p
2560         is set, don't exit gdbserver.
2561
2562 2015-04-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2563
2564         * gdb.arch/s390-vregs.S (change_vrs): Replace exrl by an
2565         appropriate .insn, such that an older assembler can be used.
2566         * gdb.arch/s390-vregs.exp: Add the compile flag -mzarch, to enable
2567         the z/Architecture instruction set on 31-bit targets as well.
2568
2569 2015-04-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2570
2571         * gdb.go/handcall.exp: Remove all logic related to the first
2572         breakpoint and rely on go_runto_main instead.
2573         * gdb.go/strings.exp: Likewise.
2574         * gdb.go/unsafe.exp: Likewise.
2575         * gdb.go/hello.exp: Likewise.  Also rename the remaining
2576         breakpoint marker to "breakpoint 1".
2577         * gdb.go/handcall.go: Remove comment "set breakpoint 1 here".
2578         * gdb.go/strings.go: Likewise.
2579         * gdb.go/unsafe.go: Likewise.
2580         * gdb.go/hello.go: Likewise.  Also remove the second occurrence of
2581         "set breakpoint 2 here" and rename the remaining breakpoint marker
2582         to "breakpoint 1".
2583
2584 2015-04-15  Simon Marchi  <simon.marchi@ericsson.com>
2585
2586         * gdb.python/py-framefilter.py (ErrorFilter.filter): Use map function
2587         if itertools.imap is not present.
2588         * gdb.python/py-objfile.exp: Add parentheses.
2589         * gdb.python/py-type.exp: Same.
2590         * gdb.python/py-unwind-maint.py: Same.
2591
2592 2015-04-15  Yao Qi  <yao.qi@linaro.org>
2593
2594         * gdb.dwarf2/dynarr-ptr.exp (assemble): Use $ptr_size instead
2595         of ":$ptr_size" and set its form explicitly.
2596
2597 2015-04-15  Pedro Alves  <palves@redhat.com>
2598             Yao Qi  <yao.qi@linaro.org>
2599
2600         * gdb.base/watch-bitfields.exp (test_watch_location): Increase
2601         timeout by factor of 4.
2602         (test_regular_watch): Likewise.
2603         * gdb.base/watchpoint-solib.exp: Use with_timeout_factor.
2604         * gdb.reverse/sigall-reverse.exp: Likewise.
2605         * gdb.reverse/until-precsave.exp: Likewise.
2606         * lib/gdb.exp (with_timeout_factor): New proc.
2607         (gdb_expect): Move some code to ...
2608         (get_largest_timeout): ... here.  New procedure.
2609
2610 2015-04-14  Luis Machado  <lgustavo@codesourcery.com>
2611
2612         * gdb.base/bp-permanent.exp (test): Reinstate correct test message.
2613
2614 2015-04-13  Luis Machado  <lgustavo@codesourcery.com>
2615
2616         * gdb.base/bp-permanent.exp (test): Handle the case of being unable
2617         to write to the .text section.
2618
2619 2015-04-13  Luis Machado  <lgustavo@codesourcery.com>
2620
2621         * gdb.base/coredump-filter.exp: Restrict test to Linux systems only.
2622         Handle the case of targets that do not provide PID information.
2623
2624 2015-04-13  Yao Qi  <yao.qi@linaro.org>
2625
2626         * lib/gdbserver-support.exp (gdb_exit): Catch exception
2627         and use expect instead of gdb_expect.
2628
2629 2015-04-13  Sergio Durigan Junior  <sergiodj@redhat.com>
2630
2631         * gdb.base/coredump-filter.exp: Rename variable "addr" to
2632         "coredump_var_addr" to avoid naming conflict with other testcases.
2633
2634 2015-04-10  Pedro Alves  <palves@redhat.com>
2635
2636         * gdb.threads/signal-while-stepping-over-bp-other-thread.exp: Use
2637         gdb_test_sequence and gdb_assert.
2638
2639 2015-04-10  Pedro Alves  <palves@redhat.com>
2640
2641         * gdb.threads/step-over-trips-on-watchpoint.exp (do_test): Use
2642         test messages that don't include the breakpoint address.
2643
2644 2015-04-10  Yao Qi  <yao.qi@linaro.org>
2645
2646         * gdb.base/watchpoint-reuse-slot.exp (valid_addr_p): Return
2647         false for some offset and width combinations which aren't
2648         supported by linux kernel.
2649
2650 2015-04-10  Pedro Alves  <palves@redhat.com>
2651
2652         * gdb.threads/step-over-lands-on-breakpoint.exp (do_test): New
2653         procedure, factored out from ...
2654         (top level): ... here.  Add "set displaced-stepping" testing axis.
2655         * gdb.threads/step-over-trips-on-watchpoint.exp (do_test): New
2656         parameter "displaced".  Use it.
2657         (top level): Use foreach and add "set displaced-stepping" testing
2658         axis.
2659
2660 2015-04-10  Pedro Alves  <palves@redhat.com>
2661
2662         * gdb.threads/step-over-trips-on-watchpoint.c (child_function):
2663         Remove comment.
2664         * gdb.threads/step-over-trips-on-watchpoint.exp (do_test): Find
2665         both the address of the instruction that triggers the watchpoint
2666         and the address of the instruction immediately after, and use
2667         those addresses for the test.  Fix comment.
2668
2669 2015-04-10  Pedro Alves  <palves@redhat.com>
2670
2671         * gdb.base/sigstep.exp (breakpoint_to_handler)
2672         (breakpoint_to_handler_entry): New parameter 'displaced'.  Use it.
2673         Test "backtrace" in handler.
2674         (breakpoint_over_handler): New parameter 'displaced'.  Use it.
2675         (top level): Add new "displaced" test axis to
2676         breakpoint_to_handler, breakpoint_to_handler_entry and
2677         breakpoint_over_handler.
2678
2679 2015-04-10  Pedro Alves  <palves@redhat.com>
2680
2681         PR gdb/18216
2682         * gdb.threads/multiple-step-overs.exp: Remove expected eof.
2683
2684 2015-04-10  Yao Qi  <yao.qi@linaro.org>
2685
2686         * gdb.arch/arm-disp-step.S (main): Call test_add_rn_pc.
2687         (test_add_rn_pc): New function.
2688         * gdb.arch/arm-disp-step.exp (test_add_rn_pc): New proc.
2689         (top level): Invoke test_add_rn_pc.
2690
2691 2015-04-10  Pedro Alves  <palves@redhat.com>
2692
2693         PR gdb/13858
2694         * gdb.base/step-over-no-symbols.exp: New file.
2695
2696 2015-04-09  Andy Wingo  <wingo@igalia.com>
2697
2698         * gdb.guile/scm-frame.exp: Add frame-read-register tests, modelled
2699         after the Python tests.
2700
2701 2015-04-08  Keith Seitz  <keiths@redhat.com>
2702
2703         PR python/16699
2704         * gdb.python/py-completion.exp: New tests for completion.
2705         * gdb.python/py-completion.py (CompleteLimit1): New class.
2706         (CompleteLimit2): Likewise.
2707         (CompleteLimit3): Likewise.
2708         (CompleteLimit4): Likewise.
2709         (CompleteLimit5): Likewise.
2710         (CompleteLimit6): Likewise.
2711         (CompleteLimit7): Likewise.
2712
2713 2015-04-08  Pedro Alves  <palves@redhat.com>
2714
2715         PR gdb/18214
2716         PR gdb/18216
2717         * gdb.threads/multiple-step-overs.c (sigusr1_handler): New
2718         function.
2719         (main): Install it as SIGUSR1 handler.
2720         * gdb.threads/multiple-step-overs.exp (setup): Remove 'prefix'
2721         parameter.  Always use "setup" as prefix.  Toggle "set
2722         displaced-stepping" off/on depending on global.  Don't switch to
2723         thread 1 here.
2724         (top level): Add displaced stepping "off/on" test axis.  Update
2725         "setup" calls.  Wrap each subtest with with_test_prefix.  Test
2726         continuing with a queued signal in each thread.
2727
2728 2015-04-08  Pedro Alves  <palves@redhat.com>
2729
2730         * gdb.trace/actions.exp: Use gdb_load before gdb_run_cmd.
2731         * gdb.trace/infotrace.exp: Use gdb_load before gdb_run_cmd.  Use
2732         gdb_breakpoint instead of gdb_test that doesn't expect anything.
2733         Return early if running to main fails.
2734         * gdb.trace/while-stepping.exp: Likewise.
2735
2736 2015-04-07  Pedro Alves  <palves@redhat.com>
2737
2738         * gdb.base/interrupt.exp: Don't skip if $inferior_spawn_id !=
2739         $gdb_spawn_id.  Use send_inferior and $inferior_spawn_id to
2740         interact with inferior program.
2741
2742 2015-04-07  Pedro Alves  <palves@redhat.com>
2743
2744         * lib/gdb.exp (inferior_spawn_id): New global.
2745         (gdb_test_multiple): Handle "-i".  Reset the spawn id to GDB's
2746         spawn id after processing the user code.
2747         (default_gdb_start): Set inferior_spawn_id.
2748         (send_inferior): New procedure.
2749         * lib/gdbserver-support.exp (gdbserver_start): Set
2750         inferior_spawn_id.
2751         (close_gdbserver, gdb_exit): Unset inferior_spawn_id.
2752
2753 2015-04-07  Pedro Alves  <palves@redhat.com>
2754
2755         * lib/gdb.exp (gdb_finish): Delete persistent gdbserver handling.
2756         * lib/gdbserver-support.exp (gdbserver_start): Make
2757         $server_spawn_id global.
2758         (gdbserver_start): Don't wait for gdbserver's spawn id with
2759         expect_background.
2760         (close_gdbserver): New procedure.
2761         (gdb_exit): Rename the default version and reimplement.
2762
2763 2015-04-07  Pedro Alves  <palves@redhat.com>
2764
2765         * lib/gdb.exp (gdb_test_multiple): When processing an argument,
2766         append the substituted item, not the original item.
2767
2768 2015-04-07  Pedro Alves  <palves@redhat.com>
2769
2770         * gdb.base/interrupt.exp: Use gdb_test_multiple instead of
2771         gdb_expect.
2772
2773 2015-04-07  Pedro Alves  <palves@redhat.com>
2774
2775         * gdb.base/interrupt.exp: Don't handle the case of the inferior
2776         output appearing once only.
2777
2778 2015-04-07  Pedro Alves  <palves@redhat.com>
2779
2780         * gdb.trace/actions.exp: Use gdb_breakpoint instead of gdb_test
2781         that doesn't expect anything.  Return early if running to main
2782         fails.
2783
2784 2015-04-07  Yao Qi  <yao.qi@linaro.org>
2785
2786         * gdb.threads/non-stop-fair-events.c (SECONDS): New macro.
2787         (child_function): Call alarm.
2788         (main): Move call to alarm into the loop.
2789         * gdb.threads/non-stop-fair-events.exp: Build program with
2790         -DTIMEOUT=$timeout.
2791
2792 2015-04-06  Doug Evans  <xdje42@gmail.com>
2793
2794         * lib/pascal.exp (gpc_compile): Rename dest arg to destfile.
2795         Fix dest parameter to board_info.
2796         (fpc_compile): Ditto.
2797         (gdb_compile_pascal): Rename dest arg to destfile.
2798
2799 2015-04-03  Pierre-Marie de Rodat  <derodat@adacore.com>
2800
2801         * gdb.ada/funcall_ref.exp: New file.
2802         * gdb.ada/funcall_ref/foo.adb: New file.
2803
2804 2015-04-02  Yao Qi  <yao.qi@linaro.org>
2805
2806         * gdb.threads/no-unwaited-for-left.exp: Set up kfail if target
2807         is remote.
2808
2809 2015-04-02  Gary Benson <gbenson@redhat.com>
2810
2811         * gdb.base/break-probes.exp: Cope with "target:" sysroot.
2812
2813 2015-04-01  Sasha Smundak  <asmundak@google.com>
2814
2815         * gdb.python/py-unwind-maint.c: New file.
2816         * gdb.python/py-unwind-maint.exp: New test.
2817         * gdb.python/py-unwind-maint.py: New file.
2818         * gdb.python/py-unwind.c: New file.
2819         * gdb.python/py-unwind.exp: New test.
2820         * gdb.python/py-unwind.py: New test.
2821
2822 2015-04-01  Pedro Alves  <palves@redhat.com>
2823
2824         * gdb.threads/manythreads.exp (interrupt_and_wait): Pass $message
2825         to fail instead of non-existent $test.
2826
2827 2015-04-01  Pedro Alves  <palves@redhat.com>
2828
2829         * lib/gdb.exp (gdb_spawn_with_cmdline_opts): Append space to
2830         GDBFLAGS if not empty.
2831
2832 2015-04-01  Pierre-Marie de Rodat  <derodat@adacore.com>
2833
2834         * gdb.ada/complete.exp: Remove "multi_line".
2835         * gdb.ada/info_exc.exp: Remove "multi_line".
2836         * gdb.ada/packed_tagged.exp: Remove "multi_line".
2837         * gdb.ada/ptype_field.exp: Remove "multi_line".
2838         * gdb.ada/sym_print_name.exp: Remove "multi_line".
2839         * gdb.ada/tagged.exp: Remove "multi_line".
2840         * gdb.btrace/buffer-size.exp: Replace [join [list ...]] with
2841         [multi_line ...]
2842         * gdb.btrace/delta.exp: Likewise.
2843         * gdb.btrace/exception.exp: Likewise.
2844         * gdb.btrace/function_call_history.exp: Likewise.
2845         * gdb.btrace/instruction_history.exp: Likewise.
2846         * gdb.btrace/nohist.exp: Likewise.
2847         * gdb.btrace/record_goto.exp: Likewise.
2848         * gdb.btrace/segv.exp: Likewise.
2849         * gdb.btrace/stepi.exp: Likewise.
2850         * gdb.btrace/tailcall.exp: Likewise.
2851         * gdb.btrace/unknown_functions.exp: Likewise.
2852         * gdb.dwarf2/dw2-undefined-ret-addr.exp: Likewise.
2853         * lib/gdb.exp: Add the "multi_line" helper.
2854
2855 2015-04-01  Pedro Alves  <palves@redhat.com>
2856
2857         * gdb.threads/tid-reuse.c: New file.
2858         * gdb.threads/tid-reuse.exp: New file.
2859
2860 2015-03-31  Sergio Durigan Junior  <sergiodj@redhat.com>
2861
2862         PR corefiles/16092
2863         * gdb.base/coredump-filter.c: New file.
2864         * gdb.base/coredump-filter.exp: Likewise.
2865
2866 2015-03-27  Petr Machata  <pmachata@redhat.com>
2867
2868         * lib/dwarf.exp (Dwarf::_handle_DW_FORM): Handle DW_FORM_sec_offset.
2869         (Dwarf::_line_count, Dwarf::_line_saw_file): New variables.
2870         (Dwarf::assemble): Initialize them.
2871         (Dwarf::lines): New function.
2872
2873 2015-03-26  Jon Turney  <jon.turney@dronecode.org.uk>
2874
2875         * lib/gdb.exp (gdb_target_symbol_prefix_flags): Don't set
2876         SYMBOL_PREFIX for x86_64-*-cygwin.
2877
2878 2015-03-26  Andy Wingo  <wingo@igalia.com>
2879
2880         PR symtab/18148
2881         * gdb.dwarf2/dw2-intercu.S (one, two): Add variables that have a
2882         const_value but not a location.
2883         * gdb.dwarf2/dw2-intercu.exp: Add tests that constants without
2884         location defined in non-main CUs are visible.
2885
2886 2015-03-26  Yao Qi  <yao.qi@linaro.org>
2887
2888         PR testsuite/18139
2889         * gdb.linespec/break-asm-file0.s (func): New label .Lfunc_2.
2890         Add a line number entry for the same line.
2891         * gdb.linespec/break-asm-file1.s (func): New label .Lfunc_2.
2892         Add a line number entry for the same line.
2893
2894 2015-03-26  Yao Qi  <yao.qi@linaro.org>
2895
2896         * gdb.linespec/break-asm-file0.s (func2): Use nop instead of
2897         .int 0.
2898         (func): Likewise.  Add .Lfunc_1 label.
2899         Use .Lfunc_1 label.
2900         * gdb.linespec/break-asm-file1.s (func3): Use nop instead of
2901         .int 0.
2902         (func): Likewise.
2903         Use .Lfunc_1 label.
2904
2905 2015-03-26  Yao Qi  <yao.qi@linaro.org>
2906
2907         * gdb.linespec/break-asm-file.exp: Don't call prepare_for_testing.
2908         Call gdb_compile instead to compile each .s files without debug
2909         information.
2910
2911 2015-03-26  Yao Qi  <yao.qi@linaro.org>
2912
2913         * gdb.base/savedregs.exp (process_saved_regs): Make
2914         "Saved registers:" optional in the pattern.
2915
2916 2015-03-25  Markus Metzger  <markus.t.metzger@intel.com>
2917
2918         * gdb.btrace/next.exp: Merged into step.exp.
2919         * gdb.btrace/finish.exp: Merged into step.exp.
2920         * gdb.btrace/nexti.exp: Merged into stepi.exp.
2921         * gdb.btrace/step.exp: Use record_goto.c as test file.  Avoid using
2922         "record goto" and checking the exact replay position.
2923         * gdb.btrace/stepi.exp: Choose test file based on target.  Do not
2924         check for "Recording format" in "info record" output.
2925         * gdb.btrace/record_goto.exp: Choose test file based on target.
2926         * gdb.btrace/x86-record_goto.S: Renamed into ...
2927         * gdb.btrace/x86_64-record_goto.S: ... this.
2928         * gdb.btrace/i686-record_goto.S: New.
2929         * gdb.btrace/x86-tailcall.S: Renamed into ...
2930         * gdb.btrace/x86_64-tailcall.S: ... this.
2931         * gdb.btrace/i686-tailcall.S: New.
2932         * gdb.btrace/x86-tailcall.c: Renamed into ...
2933         * gdb.btrace/tailcall.c: ... this.  Split "return ++answer" into two
2934         separate statements.  Update test.
2935         * gdb.btrace/delta.exp: Use record_goto.c as test file.
2936         * gdb.btrace/gcore.exp: Use record_goto.c as test file.
2937         * gdb.btrace/nohist.exp: Use record_goto.c as test file.
2938         * gdb.btrace/tailcall.exp: Choose test file based on target.
2939         * gdb.btrace/Makefile.in: Remove next, finish, and nexti.
2940
2941 2015-03-25  Markus Metzger  <markus.t.metzger@intel.com>
2942
2943         * gdb.btrace/exception.exp: Increase BTS buffer size.
2944
2945 2015-03-24  Pedro Alves  <palves@redhat.com>
2946
2947         * gdb.threads/no-unwaited-for-left.exp: Test "thread apply all".
2948
2949 2015-03-24  Pedro Alves  <palves@redhat.com>
2950
2951         * gdb.threads/schedlock.exp (test_step): No longer expect that
2952         "set scheduler-locking step" with "next" over a function call runs
2953         threads unlocked.
2954
2955 2015-03-24  Antoine Tremblay  <antoine.tremblay@ericsson.com>
2956
2957         * gdb.mi/mi-pending.exp: Fix output of breakpoint test.
2958
2959 2015-03-24  Antoine Tremblay  <antoine.tremblay@ericsson.com>
2960
2961         PR breakpoints/16466
2962         * gdb.mi/Makefile.in: Add mi-pendshr2.sl to cleanup.
2963         * gdb.mi/mi-pending.c (thread_func): New function.
2964         (int main): Add threading support required.
2965         * gdb.mi/mi-pending.exp: Add tests for this issue.
2966         * gdb.mi/mi-pendshr.c (pendfunc1): Remove stdio dependency.
2967         (pendfunc2): Remove stdio dependency.
2968         * gdb.mi/mi-pendshr2.c: New file.
2969
2970 2015-03-23  Keith Seitz  <keiths@redhat.com>
2971
2972         * gdb.linespec/keywords.c: New file.
2973         * gdb.linespec/keywords.exp: New file.
2974
2975 2015-03-23  Keith Seitz  <keiths@redhat.com>
2976
2977         PR gdb/18021
2978         * gdb.dwarf2/staticvirtual.exp: New test.
2979
2980 2015-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2981
2982         * Makefile.in (ALL_SUBDIRS): Remove gdb.hp.
2983         * README: Remove HP-UX and gdb.hp.
2984         (configuration):
2985         * configure: Regenerate.
2986         * configure.ac (AC_OUTPUT): Remove gdb.hp/Makefile,
2987         gdb.hp/gdb.objdbg/Makefile, gdb.hp/gdb.base-hp/Makefile,
2988         gdb.hp/gdb.aCC/Makefile, gdb.hp/gdb.compat/Makefile,
2989         gdb.hp/gdb.defects/Makefile.
2990         * gdb.hp/Makefile.in: File deleted.
2991         * gdb.hp/gdb.aCC/Makefile.in: File deleted.
2992         * gdb.hp/gdb.aCC/optimize.c: File deleted.
2993         * gdb.hp/gdb.aCC/optimize.exp: File deleted.
2994         * gdb.hp/gdb.aCC/run.c: File deleted.
2995         * gdb.hp/gdb.aCC/watch-cmd.exp: File deleted.
2996         * gdb.hp/gdb.base-hp/Makefile.in: File deleted.
2997         * gdb.hp/gdb.base-hp/callfwmall.c: File deleted.
2998         * gdb.hp/gdb.base-hp/callfwmall.exp: File deleted.
2999         * gdb.hp/gdb.base-hp/dollar.c: File deleted.
3000         * gdb.hp/gdb.base-hp/dollar.exp: File deleted.
3001         * gdb.hp/gdb.base-hp/genso-thresh.c: File deleted.
3002         * gdb.hp/gdb.base-hp/hwwatchbus.c: File deleted.
3003         * gdb.hp/gdb.base-hp/hwwatchbus.exp: File deleted.
3004         * gdb.hp/gdb.base-hp/pxdb.c: File deleted.
3005         * gdb.hp/gdb.base-hp/pxdb.exp: File deleted.
3006         * gdb.hp/gdb.base-hp/reg-pa64.exp: File deleted.
3007         * gdb.hp/gdb.base-hp/reg-pa64.s: File deleted.
3008         * gdb.hp/gdb.base-hp/reg.exp: File deleted.
3009         * gdb.hp/gdb.base-hp/reg.s: File deleted.
3010         * gdb.hp/gdb.base-hp/sized-enum.c: File deleted.
3011         * gdb.hp/gdb.base-hp/sized-enum.exp: File deleted.
3012         * gdb.hp/gdb.base-hp/so-thresh.exp: File deleted.
3013         * gdb.hp/gdb.base-hp/so-thresh.mk: File deleted.
3014         * gdb.hp/gdb.base-hp/so-thresh.sh: File deleted.
3015         * gdb.hp/gdb.compat/Makefile.in: File deleted.
3016         * gdb.hp/gdb.compat/average.c: File deleted.
3017         * gdb.hp/gdb.compat/sum.c: File deleted.
3018         * gdb.hp/gdb.compat/xdb.c: File deleted.
3019         * gdb.hp/gdb.compat/xdb0.c: File deleted.
3020         * gdb.hp/gdb.compat/xdb0.h: File deleted.
3021         * gdb.hp/gdb.compat/xdb1.c: File deleted.
3022         * gdb.hp/gdb.compat/xdb1.exp: File deleted.
3023         * gdb.hp/gdb.compat/xdb2.exp: File deleted.
3024         * gdb.hp/gdb.compat/xdb3.exp: File deleted.
3025         * gdb.hp/gdb.defects/Makefile.in: File deleted.
3026         * gdb.hp/gdb.defects/bs14602.c: File deleted.
3027         * gdb.hp/gdb.defects/bs14602.exp: File deleted.
3028         * gdb.hp/gdb.defects/solib-d.c: File deleted.
3029         * gdb.hp/gdb.defects/solib-d.exp: File deleted.
3030         * gdb.hp/gdb.defects/solib-d1.c: File deleted.
3031         * gdb.hp/gdb.defects/solib-d2.c: File deleted.
3032         * gdb.hp/gdb.objdbg/Makefile.in: File deleted.
3033         * gdb.hp/gdb.objdbg/objdbg01.exp: File deleted.
3034         * gdb.hp/gdb.objdbg/objdbg01/x1.cc: File deleted.
3035         * gdb.hp/gdb.objdbg/objdbg01/x2.cc: File deleted.
3036         * gdb.hp/gdb.objdbg/objdbg01/x3.cc: File deleted.
3037         * gdb.hp/gdb.objdbg/objdbg01/x3.h: File deleted.
3038         * gdb.hp/gdb.objdbg/objdbg02.exp: File deleted.
3039         * gdb.hp/gdb.objdbg/objdbg02/x1.cc: File deleted.
3040         * gdb.hp/gdb.objdbg/objdbg02/x2.cc: File deleted.
3041         * gdb.hp/gdb.objdbg/objdbg02/x3.cc: File deleted.
3042         * gdb.hp/gdb.objdbg/objdbg03.exp: File deleted.
3043         * gdb.hp/gdb.objdbg/objdbg03/x1.cc: File deleted.
3044         * gdb.hp/gdb.objdbg/objdbg03/x2.cc: File deleted.
3045         * gdb.hp/gdb.objdbg/objdbg03/x3.cc: File deleted.
3046         * gdb.hp/gdb.objdbg/objdbg04.exp: File deleted.
3047         * gdb.hp/gdb.objdbg/objdbg04/x.h: File deleted.
3048         * gdb.hp/gdb.objdbg/objdbg04/x1.cc: File deleted.
3049         * gdb.hp/gdb.objdbg/objdbg04/x2.cc: File deleted.
3050         * gdb.hp/gdb.objdbg/tools/symaddr: File deleted.
3051         * gdb.hp/gdb.objdbg/tools/symaddr.pa64: File deleted.
3052         * gdb.hp/gdb.objdbg/tools/test-objdbg.cc: File deleted.
3053         * gdb.hp/tools/odump: File deleted.
3054
3055 2015-03-19  Pedro Alves  <palves@redhat.com>
3056
3057         * gdb.threads/continue-pending-status.exp (saw_thread_2)
3058         (saw_thread_3): New globals.
3059         (top level): Increment them when an event for the corresponding
3060         thread is seen.
3061         (no thread starvation): New test.
3062
3063 2015-03-19  Pedro Alves  <palves@redhat.com>
3064
3065         * gdb.threads/continue-pending-status.c: New file.
3066         * gdb.threads/continue-pending-status.exp: New file.
3067
3068 2015-03-18  Pedro Alves  <palves@redhat.com>
3069
3070         * gdb.base/disp-step-syscall.exp (disp_step_cross_syscall):
3071         Use gdb_is_target_remote instead of is_remote.  Use
3072         gdb_test_multiple instead of gdb_expect.  Exit early if
3073         gdb_test_multiple hits its internal matches.  Tighten stepi tests
3074         expected output.  Fail on exit with any signal, instead of just
3075         SIGILL.
3076
3077 2015-03-18  Yao Qi  <yao.qi@linaro.org>
3078
3079         PR tdep/18107
3080         * gdb.base/catch-syscall.c [!SYS_pipe] (pipe2_syscall): New
3081         variable.
3082         * gdb.base/catch-syscall.exp: Don't skip it on
3083         aarch64*-*-linux* target.  Remove elements in all_syscalls.
3084         (test_catch_syscall_multi_arch): Skip it on aarch64*-linux*
3085         target.
3086         (setup_all_syscalls): New proc.
3087
3088 2015-03-16  Yao Qi  <yao.qi@linaro.org>
3089
3090         * gdb.base/watchpoint-reuse-slot.exp (valid_addr_p): New proc.
3091         (top level): Skip tests if valid_addr_p returns false for
3092         $cmd1 or $cmd2.
3093
3094 2015-03-11  Andy Wingo  <wingo@igalia.com>
3095
3096         * gdb.guile/scm-objfile.exp: Add objfile-progspace test.
3097
3098 2015-03-11  Yao Qi  <yao.qi@linaro.org>
3099
3100         * gdb.base/catch-syscall.exp: Fix typo in comments.
3101
3102 2015-03-11  Yao Qi  <yao.qi@linaro.org>
3103
3104         * gdb.base/catch-syscall.exp: Skip it on HP-UX target.
3105
3106 2015-03-09  Pedro Alves  <palves@redhat.com>
3107
3108         * dg-extract-results.py: Delete.
3109
3110 2015-03-09  Pedro Alves  <palves@redhat.com>
3111
3112         Merge dg-extract-results.sh from GCC upstream (r218843).
3113
3114         2014-12-17  Sergio Durigan Junior  <sergiodj@redhat.com>
3115                 * dg-extract-results.sh: Use --text with grep to avoid issues with
3116                 binary files.  Fall back to cat -v, if that doesn't work.
3117
3118 2015-03-05  Pedro Alves  <palves@redhat.com>
3119
3120         * gdb.base/bp-permanent.exp: Tighten "next over setup" regex.
3121
3122 2015-03-04  Simon Marchi  <simon.marchi@ericsson.com>
3123
3124         * lib/mi-support.exp (mi_expect_interrupt): Accept
3125         alternative event for when in all-stop mode.
3126
3127 2015-03-04  Pedro Alves  <palves@redhat.com>
3128
3129         * gdb.threads/thread-specific-bp.exp: Delete "info threads" test.
3130
3131 2015-03-04  Mark Kettenis  <kettenis@gnu.org>
3132
3133         * gdb.base/foll-fork.exp: Enable on *-*-openbsd*.
3134
3135 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3136
3137         * gdb.base/breakpoint-in-ro-region.exp (test_single_step): In the
3138         regexps for GDB's current line display, accept a hex address
3139         preceding the line number.
3140
3141 2015-03-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3142
3143         * gdb.base/catch-syscall.exp (test_catch_syscall_multi_arch): Set
3144         the 'arch1' variable for "s390*-linux*" targets.
3145
3146 2015-03-04  Pedro Alves  <palves@redhat.com>
3147
3148         * gdb.threads/clone-thread_db.c: Include unistd.h and pthread.h.
3149         (main): Pass missing retval argument to pthread_join call.
3150
3151 2015-03-02  Pedro Alves  <palves@redhat.com>
3152
3153         * gdb.threads/thread-execl.exp (do_test): Handle non-stop.
3154         (top level): Call do_test with non-stop as well.
3155
3156 2015-03-02  Pedro Alves  <palves@redhat.com>
3157
3158         * lib/gdb.exp (gdb_test_multiple) <internal error>: Set result to
3159         -1.
3160
3161 2015-03-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3162
3163         * gdb.arch/s390-vregs.exp: New test.
3164         * gdb.arch/s390-vregs.S: New file.
3165
3166 2015-02-27  Pedro Alves  <palves@redhat.com>
3167
3168         * gdb.gdb/python-interrupts.exp (test_python_interrupts): Adjust
3169         call to catch_command_errors.
3170         * gdb.gdb/python-selftest.exp (selftest_python): Adjust call to
3171         catch_command_errors.
3172
3173 2015-02-27  Pedro Alves  <palves@redhat.com>
3174
3175         * gdb.gdb/complaints.exp (test_initial_complaints): Also accept
3176         "true" for boolean result.
3177         * gdb.gdb/selftest.exp (test_with_self): Also accept full
3178         prototype of main.
3179
3180 2015-02-27  Pedro Alves  <palves@redhat.com>
3181
3182         * lib/unbuffer_output.c: New file.
3183         * gdb.base/interrupt.c: Include "../lib/unbuffer_output.c".
3184         (main): Call gdb_unbuffer_output.
3185
3186 2015-02-27  Yao Qi  <yao.qi@linaro.org>
3187
3188         * gdb.base/catch-syscall.exp: Don't skip it on hppa*-hp-hpux*
3189         target.
3190
3191 2015-02-26  Doug Evans  <dje@google.com>
3192
3193         * gdb.cp/class2.cc (Dbase, D): New classes.
3194         (main): New local delta.
3195         * gdb.cp/class2.exp: Test printing delta.
3196         * gdb.cp/classes.cc (DynamicBase2, DynamicBar): New classes.
3197         (dynbar): New global.
3198         * gdb.cp/classes.exp (test_ptype_class_objects): Test ptype DynamicBar.
3199
3200 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3201
3202         * gdb.compile/compile-ifunc.c: New file.
3203         * gdb.compile/compile-ifunc.exp: New file.
3204
3205 2015-02-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
3206
3207         * gdb.base/structs.exp: Check for correct struct on finish.
3208
3209 2015-02-26  Yao Qi  <yao.qi@linaro.org>
3210
3211         * lib/dwarf.exp (function_range): Adjust pattern when $func_length
3212         is zero.
3213
3214 2015-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3215
3216         * gdb.arch/cordic.ko.bz2: New file.
3217         * gdb.arch/cordic.ko.debug.bz2: New file.
3218         * gdb.arch/ppc64-symtab-cordic.exp: New file.
3219
3220 2015-02-25  Yao Qi  <yao.qi@linaro.org>
3221
3222         * gdb.xml/tdesc-regs.exp: Set core-regs to aarch64-core.xml for
3223         aarch64*-*-* target.
3224
3225 2015-02-23  Pedro Alves  <palves@redhat.com>
3226
3227         * lib/gdb.exp (delete_breakpoints): Rewrite using
3228         gdb_test_multiple.
3229
3230 2015-02-23  Pedro Alves  <palves@redhat.com>
3231
3232         * gdb.base/info-os.c: Include stdlib.h.
3233
3234 2015-02-22  Doug Evans  <xdje42@gmail.com>
3235
3236         PR symtab/17855
3237         * gdb.ada/exec_changed.exp: Add second test where symbol lookup cache
3238         is read after symbols have been re-read.
3239         * gdb.ada/exec_changed/first.adb (First): New procedure Break_Me.
3240         * gdb.ada/exec_changed/second.adb (Second): Ditto.
3241
3242 2015-02-21  Doug Evans  <dje@google.com>
3243
3244         * gdb.cp/anon-ns.exp: Add test for ptype '(anonymous namespace)'.
3245
3246 2015-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
3247
3248         PR corefiles/17808
3249         * gdb.arch/i386-biarch-core.core.bz2: New file.
3250         * gdb.arch/i386-biarch-core.exp: New file.
3251
3252 2015-02-21  Pedro Alves  <palves@redhat.com>
3253
3254         * gdb.threads/multi-create-ns-info-thr.exp: Return early if
3255         runto_main fails.
3256
3257 2015-02-20  Pedro Alves  <palves@redhat.com>
3258
3259         * gdb.base/solib-corrupted.exp: Expect "stap" as first column of
3260         info probes.
3261
3262 2015-02-20  Pedro Alves  <palves@redhat.com>
3263
3264         * gdb.threads/multi-create-ns-info-thr.exp: New file.
3265
3266 2015-02-20  Pedro Alves  <palves@redhat.com>
3267
3268         * gdb.trace/no-attach-trace.exp: Don't run to main.  Do
3269         clean_restart before gdb_target_supports_trace.
3270
3271 2015-02-20  Pedro Alves  <palves@redhat.com>
3272
3273         PR threads/18006
3274         * gdb.threads/clone-thread_db.c: New file.
3275         * gdb.threads/clone-thread_db.exp: New file.
3276
3277 2015-02-19  Antoine Tremblay  <antoine.tremblay@ericsson.com>
3278
3279         PR breakpoints/16812
3280         * gdb.base/catch-gdb-caused-signals.c: New file.
3281         * gdb.base/catch-gdb-caused-signals.exp: New file.
3282
3283 2015-02-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
3284
3285         * configure: Regenerated.
3286         * configure.ac: Use GDB_AC_TRANSFORM.
3287         * aclocal.m4: sinclude ../transform.m4.
3288
3289 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3290
3291         * lib/dtrace.exp: New file.
3292         * gdb.base/dtrace-probe.exp: Likewise.
3293         * gdb.base/dtrace-probe.d: Likewise.
3294         * gdb.base/dtrace-probe.c: Likewise.
3295         * lib/pdtrace.in: Likewise.
3296         * configure.ac: Output variables with the transformed names of
3297         the strip, readelf, as and nm tools.  AC_SUBST lib/pdtrace.in.
3298         * configure: Regenerated.
3299
3300 2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
3301
3302         * gdb.base/stap-probe.exp (stap_test): Remove "SystemTap" from
3303         expected message when trying to access $_probe_* convenience
3304         variables while not on a probe.
3305
3306 2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
3307
3308         * gdb.python/py-framefilter.exp (pagination quit - *): New tests.
3309
3310 2015-02-11  Pedro Alves  <pedro@codesourcery.com>
3311
3312         * gdb.threads/step-bg-decr-pc-switch-thread.c: New file.
3313         * gdb.threads/step-bg-decr-pc-switch-thread.exp: New file.
3314
3315 2015-02-10  Doug Evans  <xdje42@gmail.com>
3316
3317         * lib/gdb.exp (gdb_load): Always return a result.
3318
3319 2015-02-10  Pedro Alves  <palves@redhat.com>
3320
3321         * gdb.threads/signal-sigtrap.c: New file.
3322         * gdb.threads/signal-sigtrap.exp: New file.
3323
3324 2015-02-10  Antoine Tremblay <antoine.tremblay@ericsson.com>
3325
3326         * gdb.trace/no-attach-trace.c: New file.
3327         * gdb.trace/no-attach-trace.exp: New file.
3328
3329 2015-02-09  Mark Wielaard  <mjw@redhat.com>
3330
3331         * gdb.dwarf2/atomic.c: New file.
3332         * gdb.dwarf2/atomic-type.exp: Likewise.
3333
3334 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
3335
3336         * gdb.btrace/buffer-size.exp: Update "info record" output.
3337         * gdb.btrace/delta.exp: Update "info record" output.
3338         * gdb.btrace/enable.exp: Update "info record" output.
3339         * gdb.btrace/finish.exp: Update "info record" output.
3340         * gdb.btrace/instruction_history.exp: Update "info record" output.
3341         * gdb.btrace/next.exp: Update "info record" output.
3342         * gdb.btrace/nexti.exp: Update "info record" output.
3343         * gdb.btrace/step.exp: Update "info record" output.
3344         * gdb.btrace/stepi.exp: Update "info record" output.
3345         * gdb.btrace/nohist.exp: Update "info record" output.
3346
3347 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
3348
3349         * gdb.btrace/buffer-size: New.
3350
3351 2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>
3352
3353         * gdb.btrace/delta.exp: Update "info record" output.
3354         * gdb.btrace/enable.exp: Update "info record" output.
3355         * gdb.btrace/finish.exp: Update "info record" output.
3356         * gdb.btrace/instruction_history.exp: Update "info record" output.
3357         * gdb.btrace/next.exp: Update "info record" output.
3358         * gdb.btrace/nexti.exp: Update "info record" output.
3359         * gdb.btrace/step.exp: Update "info record" output.
3360         * gdb.btrace/stepi.exp: Update "info record" output.
3361         * gdb.btrace/nohist.exp: Update "info record" output.
3362
3363 2015-02-06  Simon Marchi  <simon.marchi@ericsson.com>
3364
3365         PR gdb/15678
3366         * gdb.base/ena-dis-br.exp: Test "enable count" for bad user input.
3367
3368 2015-02-06  Pedro Alves  <palves@redhat.com>
3369
3370         * gdb.threads/attach-many-short-lived-threads.c (SECONDS): New
3371         macro.
3372         (seconds_left, again): New globals.
3373         (main): Wait seconds_left in a 1-second sleep loop instead of
3374         sleeping 180 seconds.  If 'again' is set, reset the seconds
3375         counter.
3376         * gdb.threads/attach-many-short-lived-threads.exp (test): Set
3377         'again' in the inferior before detaching.  Print the seconds left.
3378         (options): New global.
3379         (top level): Build program with -DTIMEOUT=$timeout.
3380
3381 2015-02-06  Pedro Alves  <palves@redhat.com>
3382
3383         * gdb.base/gdb-sigterm.c (main): Use the TIMEOUT define to
3384         determine how many seconds to pass to 'alarm'.
3385         * gdb.base/gdb-sigterm.exp (top level): Build program with
3386         -DTIMEOUT=$timeout.
3387         (do_test): Return success/failure indication.  Add more verbose
3388         logging.  Don't fail if 200 single steps are seen.  Instead, fail
3389         when the test times out.
3390         (passes): New global.
3391         (top level): Break the testing loop if testing fails on any
3392         iteration.  Use gdb_assert.
3393
3394 2015-02-04  Don Breazeal  <donb@codesourcery.com>
3395
3396         * gdb.base/info-os.c (shmid, semid, msqid): Make variables static
3397         and initialize them.
3398         (ipc_cleanup): New function.
3399         (main): Don't declare shmid, semid, and msqid.  Add a call to
3400         atexit so that we call ipc_cleanup on exit.
3401
3402 2015-02-04  Pedro Alves  <palves@redhat.com>
3403
3404         * boards/native-extended-gdbserver.exp: Remove any target variant
3405         specifications from the board name before clearing the isremote
3406         flag from board_info.
3407
3408 2015-01-31  Doug Evans  <xdje42@gmail.com>
3409
3410         * gdb.base/maint.exp <maint print type argc>: Update expected output.
3411
3412 2015-01-31  Gary Benson <gbenson@redhat.com>
3413
3414         * gdb.base/completion.exp: Disable completion limiting for
3415         existing tests.  Add new tests to check completion limiting.
3416         * gdb.linespec/ls-errs.exp: Disable completion limiting.
3417
3418 2015-01-31  Doug Evans  <xdje42@gmail.com>
3419
3420         * gdb.ada/dyn_arrayidx.exp: Add additional_flags=-gnat12.
3421
3422 2015-01-31  Doug Evans  <xdje42@gmail.com>
3423
3424         * gdb.guile/scm-section-script.c: Add duplicate inlined section script
3425         entries.  Duplicate file section script entries.
3426         * gdb.guile/scm-section-script.exp: Add tests for duplicate entries,
3427         inlined entries.  Add test for safe-path rejection.
3428         * gdb.python/py-section-script.c: Add duplicate inlined section script
3429         entries.  Duplicate file section script entries.
3430         * gdb.python/py-section-script.exp: Add tests for duplicate entries,
3431         inlined entries.  Add test for safe-path rejection.
3432
3433 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
3434
3435         * gdb.ada/disc_arr_bound: New testcase.
3436
3437 2015-01-29  Joel Brobecker  <brobecker@adacore.com>
3438
3439         * gdb.ada/mi_var_array: New testcase.
3440
3441 2015-01-27  Doug Evans  <dje@google.com>
3442
3443         * gdb.python/py-objfile.exp: Add tests for objfile.username.
3444         Add test for objfile.filename, objfile.username after objfile
3445         has been unloaded.
3446
3447 2015-01-26  Joel Brobecker  <brobecker@adacore.com>
3448
3449         * gdb.python/py-lookup-type.exp (test_lookup_type): Change
3450         the second test to print the name attribute of value
3451         returned by the call to gdb.lookup_type, and adjust
3452         the expected output accordingly.
3453
3454 2015-01-25  Mark Wielaard  <mjw@redhat.com>
3455
3456         * gdb.arch/i386-bp_permanent.c (standard): New declaration.
3457         * gdb.base/disp-step-fork.c: Include unistd.h.
3458         * gdb.base/siginfo-obj.c: Include stdio.h.
3459         * gdb.base/siginfo-thread.c: Likewise.
3460         * gdb.mi/non-stop.c: Include unistd.h.
3461         * gdb.mi/nsthrexec.c: Include stdio.h.
3462         * gdb.mi/pthreads.c: Include unistd.h.
3463         * gdb.modula2/unbounded1.c (main): Declare returns int.
3464         * gdb.reverse/consecutive-reverse.c: Likewise.
3465         * gdb.threads/create-fail.c: Include unistd.h.
3466         * gdb.threads/killed.c: Likewise.
3467         * gdb.threads/linux-dp.c: Likewise.
3468         * gdb.threads/non-ldr-exc-1.c: Include stdio.h and string.h.
3469         * gdb.threads/non-ldr-exc-2.c: Likewise.
3470         * gdb.threads/non-ldr-exc-3.c: Likewise.
3471         * gdb.threads/non-ldr-exc-4.c: Likewise.
3472         * gdb.threads/pthreads.c: Include unistd.h.
3473         (main): Declare returns int.
3474         * gdb.threads/tls-main.c (foo): New declaration.
3475         * gdb.threads/watchpoint-fork-mt.c: Define _GNU_SOURCE.
3476
3477 2015-01-23  Simon Marchi  <simon.marchi@ericsson.com>
3478
3479         * gdb.mi/mi-var-list-children-invalid-grandchild.c: New file.
3480         * gdb.mi/mi-var-list-children-invalid-grandchild.exp: New file.
3481
3482 2015-01-15  Mark Wielaard  <mjw@redhat.com>
3483
3484         * gdb.base/noreturn-return.c: New file.
3485         * gdb.base/noreturn-return.exp: New file.
3486         * gdb.base/noreturn-finish.c: New file.
3487         * gdb.base/noreturn-finish.exp: New file.
3488
3489 2015-01-23  Pedro Alves  <palves@redhat.com>
3490
3491         * gdb.threads/continue-pending-after-query.c: New file.
3492         * gdb.threads/continue-pending-after-query.exp: New file.
3493
3494 2015-01-22  Anders Granlund  <anders.granlund@ericsson.com>
3495             Simon Marchi  <simon.marchi@ericsson.com>
3496
3497         * gdb.base/statistics.exp: Assign spawn id to gdb_spawn_id.
3498         * gdb.base/valgrind-db-attach.exp: Same.
3499         * gdb.base/valgrind-infcall.exp: Same.
3500         * lib/mi-support.exp (default_mi_gdb_start): Same.
3501         * lib/prompt.exp (default_prompt_gdb_start): Same.
3502         * lib/gdb.exp (default_gdb_spawn): Same.
3503         (gdb_interact): New.
3504
3505
3506 2015-01-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
3507
3508         * gdb.compile/compile.exp (pointer to jit function): New test.
3509
3510 2015-01-17  Wei-cheng Wang  <cole945@gmail.com>
3511
3512         * lib/gdb.exp (supports_process_record): Return true for
3513         powerpc*-*-linux*.
3514         (supports_reverse): Likewise.
3515
3516 2015-01-15  Don Breazeal  <donb@codesourcery.com>
3517
3518         * gdb.base/attach-pie-noexec.exp: Use can_spawn_for_attach
3519         instead of checking whether the target board is remote and
3520         use spawn_wait_for_attach instead of exec/sleep.
3521         * gdb.base/attach-twice.exp: Likewise.
3522
3523 2015-01-15  Joel Brobecker  <brobecker@adacore.com>
3524
3525         * gdb.ada/var_arr_attrs: New testcase.
3526
3527 2015-01-14  Pedro Alves  <palves@redhat.com>
3528             Joel Brobecker  <brobecker@adacore.com>
3529
3530         PR gdb/17525
3531         * gdb.base/bp-cmds-execution-x-script.c: New file.
3532         * gdb.base/bp-cmds-execution-x-script.exp: New file.
3533         * gdb.base/bp-cmds-execution-x-script.gdb: New file.
3534
3535 2015-01-14  Pedro Alves  <palves@redhat.com>
3536
3537         PR cli/17828
3538         * gdb.base/batch-preserve-term-settings.c: New file.
3539         * gdb.base/batch-preserve-term-settings.exp: New file.
3540
3541 2015-01-13  Doug Evans  <dje@google.com>
3542
3543         * gdb.python/py-objfile.exp: Test gdb.lookup_objfile on symlinked
3544         binary.
3545
3546 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
3547
3548         * Makefile.in (clean mostlyclean): Do not delete *.py.
3549
3550 2015-01-13  Joel Brobecker  <brobecker@adacore.com>
3551
3552         * gdb.python/py-lookup-type.exp: New file.
3553
3554 2015-01-12  Pedro Alves  <palves@redhat.com>
3555
3556         * gdb.python/py-prompt.exp: When the board can't spawn for attach,
3557         restore GDBFLAGS before returning.
3558
3559 2015-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
3560
3561         * gdb.python/py-frame.exp (test Frame.read_register(rip)): Use
3562         is_amd64_regs_target and is_x86_like_target.
3563
3564 2015-01-11  Doug Evans  <xdje42@gmail.com>
3565
3566         * lib/dwarf.exp (Dwarf): Flag an error if a numeric attribute value
3567         is given without an explicit form.
3568         * gdb.dwarf2/arr-subrange.exp: Specify forms for all numeric
3569         attributes.
3570         * gdb.dwarf/corrupt.exp: Ditto.
3571         * gdb.dwarf2/enum-type.exp: Ditto.
3572         * gdb.trace/entry-values.exp: Ditto.
3573         * gdb.trace/unavailable-dwarf-piece.exp: Ditto.
3574
3575 2015-01-11  Doug Evans  <xdje42@gmail.com>
3576
3577         PR gdb/15830
3578         * gdb.base/maint.exp: Remove references to "maint demangle".
3579         * gdb.cp/demangle.exp: Update.  "maint demangle" -> "demangle".
3580         Add tests for explicitly specifying language to demangle.
3581         * gdb.dlang/demangle.exp: Ditto.
3582
3583 2015-01-09  Pedro Alves  <palves@redhat.com>
3584
3585         * gdb.threads/non-stop-fair-events.c: New file.
3586         * gdb.threads/non-stop-fair-events.exp: New file.
3587
3588 2015-01-09  Pedro Alves  <palves@redhat.com>
3589
3590         * gdb.base/annota1.exp (thread_test): Use srcfile and binfile from
3591         the global scope.  Set a breakpoint after all threads are started
3592         rather than stepping over two source lines.  Expect the prompt.
3593         * gdb.base/watch_thread_num.c (threads_started_barrier): New
3594         global.
3595         (NUM): Now 15.
3596         (main): Use threads_started_barrier to wait for all threads to
3597         start.  Main thread no longer calls thread_function.  Exit after
3598         180 seconds.
3599         (loop): New function.
3600         (thread_function): Wait on threads_started_barrier barrier.  Call
3601         'loop' at each iteration.
3602         * gdb.base/watch_thread_num.exp: Continue to breakpoint after all
3603         threads have started, instead of hardcoding number of "next"
3604         steps.  Use an access watchpoint instead of a write watchpoint.
3605
3606 2015-01-09  Pedro Alves  <palves@redhat.com>
3607
3608         * gdb.threads/ia64-sigill.c (threads_started_barrier): New global.
3609         (thread_func): Wait on barrier.
3610         (main): Wait for all threads to start before stopping GDB.
3611         * gdb.threads/siginfo-threads.c (threads_started_barrier): New
3612         global.
3613         (thread1_func, thread2_func): Wait on barrier.
3614         (main): Wait for all threads to start before stopping GDB.
3615         * gdb.threads/watchthreads-reorder.c (threads_started_barrier):
3616         New global.
3617         (thread1_func, thread2_func): Wait on barrier.
3618         (main): Wait for all threads to start before stopping GDB.
3619
3620 2015-01-09  Pedro Alves  <palves@redhat.com>
3621
3622         * gdb.threads/attach-many-short-lived-threads.c: New file.
3623         * gdb.threads/attach-many-short-lived-threads.exp: New file.
3624
3625 2014-01-09  Pedro Alves  <palves@redhat.com>
3626
3627         * gdb.threads/fork-thread-pending.exp: Switch to the main thread
3628         instead of to thread 2.
3629         * gdb.threads/signal-command-multiple-signals-pending.c (main):
3630         Add barrier around each pthread_create call instead of around all
3631         calls.
3632         * gdb.threads/signal-command-multiple-signals-pending.exp (test):
3633         Set a break on thread_function and have the child threads hit it
3634         one at at a time.
3635
3636 2015-01-09  Pedro Alves  <palves@redhat.com>
3637
3638         * lib/gdb.exp (can_spawn_for_attach): New procedure.
3639         (spawn_wait_for_attach): Error out if can_spawn_for_attach returns
3640         false.
3641         * gdb.base/attach.exp: Use can_spawn_for_attach instead of
3642         checking whether the target board is remote.
3643         * gdb.multi/multi-attach.exp: Likewise.
3644         * gdb.python/py-sync-interp.exp: Likewise.
3645         * gdb.server/ext-attach.exp: Likewise.
3646         * gdb.python/py-prompt.exp: Use can_spawn_for_attach before the
3647         tests that need to attach, instead of checking whether the target
3648         board is remote at the top of the file.
3649
3650 2015-01-08  Yao Qi  <yao@codesourcery.com>
3651
3652         * gdb.trace/entry-values.exp: Set call_insn for MIPS target.
3653
3654 2015-01-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
3655
3656         Fix testcase compilation.
3657         * gdb.arch/i386-avx512.exp (comp_flags): Remove /common.
3658
3659 2015-01-06  Joel Brobecker  <brobecker@adacore.com>
3660
3661         * gdb.python/py-type.exp: Add a couple test about empty
3662         array creation, and negative-length array creation.
3663
3664 2015-01-02  Doug Evans  <xdje42@gmail.com>
3665
3666         * gdb.cp/nsalias.exp: Fix output of external/declaration flags.
3667
3668 2015-01-02  Doug Evans  <dje@google.com>
3669
3670         * gdb.dwarf2/dw4-sig-types.exp: Also pass -fdebug-types-section to gcc.
3671
3672 2014-12-29  Yao Qi  <yao@codesourcery.com>
3673
3674         * gdb.trace/entry-values.exp: Update comments.  Rename variable
3675         bar_call_foo to returned_from_foo.
3676
3677 2014-12-20  Mihail-Marian Nistor  <mihail.nistor@freescale.com>
3678
3679         PR gdb/17394
3680         * gdb.linespec/break-asm-file.c: New file.
3681         * gdb.linespec/break-asm-file.exp: New file.
3682         * gdb.linespec/break-asm-file0.s: New file.
3683         * gdb.linespec/break-asm-file1.s: New file.
3684
3685 2014-12-18  Nigel Stephens  <nigel@mips.com>
3686             Maciej W. Rozycki  <macro@codesourcery.com>
3687
3688         * gdb.base/float.exp: Handle the new output from "info float" on
3689         MIPS targets.
3690
3691 2014-12-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
3692
3693         Fix MinGW compilation.
3694         * gdb.compile/compile-ops.exp: Update untested message if
3695         !skip_compile_feature_tests.
3696         * gdb.compile/compile-setjmp.exp: Likewise.
3697         * gdb.compile/compile-tls.exp: Likewise.
3698         * gdb.compile/compile.exp: Likewise.
3699         * lib/gdb.exp (skip_compile_feature_tests): Check also "Command not
3700         supported on this host".
3701
3702 2014-12-16  Doug Evans  <xdje42@gmail.com>
3703
3704         * boards/stabs.exp: New file.
3705
3706 2014-12-16  Andreas Arnez  <arnez@vnet.linux.ibm.com>
3707
3708         * gdb.base/completion.exp: Adjust to format changes of "maint
3709         print user-registers".
3710
3711 2014-12-16  Catalin Udma  <catalin.udma@freescale.com>
3712
3713         PR server/17457
3714         * gdb.arch/aarch64-fp.c: New file.
3715         * gdb.arch/aarch64-fp.exp: New file.
3716
3717 2014-12-15  Sergio Durigan Junior  <sergiodj@redhat.com>
3718
3719         Merge dg-extract-results.{sh,py} from GCC upstream (r210243,
3720         r210637, r210913, r211666, r215400, r215817).
3721
3722         2014-05-08  Richard Sandiford  <rdsandiford@googlemail.com>
3723                 * dg-extract-results.py: New file.
3724                 * dg-extract-results.sh: Use it if the environment seems
3725                 suitable.
3726
3727         2014-05-20  Richard Sandiford  <rdsandiford@googlemail.com>
3728
3729                 * dg-extract-results.py (parse_run): Handle warnings that
3730                 are printed before a test harness is run.
3731
3732         2014-05-25  Richard Sandiford  <rdsandiford@googlemail.com>
3733
3734                 * dg-extract-results.py (Named): Remove __cmp__ method.
3735                 (output_variation): Use a key to sort variation.harnesses.
3736
3737         2014-06-14  Richard Sandiford  <rdsandiford@googlemail.com>
3738
3739                 * dg-extract-results.py: For Python 3, force sys.stdout to
3740                 handle surrogate escape sequences.
3741                 (safe_open): New function.
3742                 (output_segment, main): Use it.
3743
3744         2014-09-19  Segher Boessenkool  <segher@kernel.crashing.org>
3745
3746                 * dg-extract-results.py (Prog.result_re): Include options
3747                 in test name.
3748
3749         2014-10-02  Segher Boessenkool  <segher@kernel.crashing.org>
3750
3751                 * dg-extract-results.py (output_variation): Always sort if
3752                 do_sum.
3753
3754 2014-12-15  Simon Marchi  <simon.marchi@ericsson.com>
3755
3756         * lib/gdb.exp (default_gdb_start): After starting gdb, loop
3757         as long as we get pagination notifications.
3758
3759 2014-12-15  Jason Merrill  <jason@redhat.com>
3760
3761         * Makefile.in (check-gdb.%): Restore.
3762         * README: Mention it.
3763
3764 2014-12-13  Joel Brobecker  <brobecker@adacore.com>
3765
3766         * gdb.ada/str_uninit: New testcase.
3767
3768 2014-12-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3769
3770         PR symtab/17642
3771         * gdb.base/vla-stub-define.c: New file.
3772         * gdb.base/vla-stub.c: New file.
3773         * gdb.base/vla-stub.exp: New file.
3774
3775 2014-12-12  Phil Muldoon  <pmuldoon@redhat.com>
3776             Jan Kratochvil  <jan.kratochvil@redhat.com>
3777             Tom Tromey  <tromey@redhat.com>
3778
3779         * configure.ac: Add gdb.compile/.
3780         * configure: Regenerate.
3781         * gdb.compile/Makefile.in: New file.
3782         * gdb.compile/compile-ops.exp: New file.
3783         * gdb.compile/compile-ops.c: New file.
3784         * gdb.compile/compile-tls.c: New file.
3785         * gdb.compile/compile-tls.exp: New file.
3786         * gdb.compile/compile-constvar.S: New file.
3787         * gdb.compile/compile-constvar.c: New file.
3788         * gdb.compile/compile-mod.c: New file.
3789         * gdb.compile/compile-nodebug.c: New file.
3790         * gdb.compile/compile-setjmp-mod.c: New file.
3791         * gdb.compile/compile-setjmp.c: New file.
3792         * gdb.compile/compile-setjmp.exp: New file.
3793         * gdb.compile/compile-shlib.c: New file.
3794         * gdb.compile/compile.c: New file.
3795         * gdb.compile/compile.exp: New file.
3796         * lib/gdb.exp (skip_compile_feature_tests): New proc.
3797
3798 2014-12-12  Tom Tromey  <tromey@redhat.com>
3799
3800         * lib/dwarf.exp (_location): Ignore blank lines.  Allow comments.
3801         Handle DW_OP_pick, DW_OP_skip, DW_OP_bra.
3802
3803 2014-12-12  Doug Evans  <dje@google.com>
3804
3805         * lib/gdb-python.exp (get_python_valueof): New function.
3806         * gdb.python/py-objfile.exp: Add tests for gdb.lookup_objfile.
3807
3808 2014-12-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3809
3810         * gdb.base/completion.exp: Add test for completion of "info
3811         registers ".
3812
3813 2014-12-12  Maciej W. Rozycki  <macro@codesourcery.com>
3814
3815         * gdb.base/func-ptrs.c: New file.
3816         * gdb.base/func-ptrs.exp: New file.
3817
3818 2014-12-10  Simon Marchi  <simon.marchi@ericsson.com>
3819
3820         PR breakpoints/17012
3821         * gdb.base/dprintf-detach.c: New file.
3822         * gdb.base/dprintf-detach.exp: New file.
3823
3824 2014-12-10  Simon Marchi  <simon.marchi@ericsson.com>
3825
3826         * gdb.trace/qtro.exp: Replace gdbserver detection code by...
3827         * lib/gdb.exp (target_is_gdbserver): New procedure.
3828
3829 2014-12-08  Doug Evans  <dje@google.com>
3830
3831         * gdb.python/py-objfile.exp: Add tests for objfile.owner.
3832
3833 2014-12-05  Yao Qi  <yao@codesourcery.com>
3834
3835         * gdb.guile/scm-error.exp: Remove the third argument to
3836         gdb_remote_download.
3837         * gdb.guile/scm-frame-args.exp: Likewise.
3838         * gdb.guile/scm-section-script.exp: Likewise.
3839
3840 2014-12-05  Yao Qi  <yao@codesourcery.com>
3841
3842         * gdb.arch/i386-bp_permanent.exp: Use standard_testfile.
3843
3844 2014-12-04  Doug Evans  <dje@google.com>
3845
3846         * gdb.python/py-objfile.exp: Add tests for
3847         objfile.add_separate_debug_file.
3848
3849 2014-12-04  Doug Evans  <dje@google.com>
3850
3851         * lib/gdb.exp (get_build_id): New function.
3852         (build_id_debug_filename_get): Rewrite to use it.
3853         * gdb.python/py-objfile.exp: Add test for objfile.build_id.
3854
3855 2014-12-04  Maciej W. Rozycki  <macro@codesourcery.com>
3856
3857         * gdb.cp/expand-psymtabs-cxx.exp: Accept any address of
3858         `method(long)', not just 0x0.
3859         * gdb.cp/nsalias.exp: Align code labels to 4.
3860         * gdb.dwarf2/dw2-canonicalize-type.S (main): Expand to 4-bytes.
3861         * gdb.dwarf2/dw2-empty-pc-range.S (main): Likewise.
3862         * gdb.dwarf2/pr11465.S (_ZN1N1cE): Likewise.
3863         * gdb.dwarf2/dw2-case-insensitive.c (START_INSNS): New macro.
3864         (cu_text_start, FUNC_lang_start): Use `START_INSNS'.
3865         * gdb.dwarf2/dw2-stack-boundary.exp: Accept noise in complaints.
3866
3867 2014-12-02  Doug Evans  <dje@google.com>
3868
3869         PR symtab/17602
3870         * gdb.cp/anon-ns.cc: Move guts of this file to ...
3871         * gdb.cp/anon-ns2.cc: ... here.  New file.
3872         * gdb.cp/anon-ns.exp: Update.
3873
3874 2014-12-02  Nick Bull  <nicholaspbull@gmail.com>
3875
3876         * gdb.python/py-events.py (inferior_call_handler): New.
3877         (register_changed_handler, memory_changed_handler): New.
3878         (test_events.invoke): Register new handlers.
3879         * gdb.python/py-events.exp: Add tests for inferior call,
3880         memory_changed and register_changed events.
3881
3882 2014-12-02  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3883
3884         * gdb.base/execl-update-breakpoints.exp: Specify the link address
3885         with '-Ttext-segment' instead of '-Ttext'.  Fall back to '-Ttext'
3886         if the linker doesn't understand this.
3887
3888 2014-12-01  Simon Marchi  <simon.marchi@ericsson.com>
3889
3890         * gdb.python/python.exp: Change expected reply to help().
3891
3892 2014-12-01  Yao Qi  <yao@codesourcery.com>
3893
3894         * configure.ac: Remove AC_ARG_ENABLE for gdbtk.  Don't invoke
3895         AC_CONFIG_SUBDIRS(gdb.gdbtk).
3896         * configure: Re-generated.
3897
3898 2014-11-28  Siva Chandra Reddy  <sivachandra@google.com>
3899
3900         * gdb.cp/chained-calls.cc: New file.
3901         * gdb.cp/chained-calls.exp: New file.
3902         * gdb.cp/smartp.exp: Remove KFAIL for "p c2->inta".
3903
3904 2014-11-28  Simon Marchi  <simon.marchi@ericsson.com>
3905
3906         * gdb.ada/py_range.exp: Add parentheses to python calls to print.
3907         * gdb.dwarf2/symtab-producer.exp: Same.
3908         * gdb.gdb/python-interrupts.exp: Same.
3909         * gdb.gdb/python-selftest.exp: Same.
3910         * gdb.python/py-linetable.exp: Same.
3911         * gdb.python/py-type.exp: Same.
3912         * gdb.python/py-value-cc.exp: Same.
3913         * gdb.python/py-value.exp: Same.
3914
3915 2014-11-28  Yao Qi  <yao@codesourcery.com>
3916
3917         * gdb.base/break-probes.exp: Match library name prefixed with
3918         sysroot.
3919
3920 2014-11-27  Simon Marchi  <simon.marchi@ericsson.com>
3921
3922         * gdb.python/py-linetable.exp: Escape properly sorted(fset)
3923         test expected output.  Add parentheses for the call to print.
3924         Remove L suffix from integers.
3925
3926 2014-11-26  Doug Evans  <dje@google.com>
3927
3928         * gdb.dwarf2/dw2-op-out-param.S: Fix comment.
3929
3930 2014-11-22  Yao Qi  <yao@codesourcery.com>
3931
3932         * gdb.trace/entry-values.c: Remove asms.
3933         (foo): Add foo_label.
3934         (bar): Add bar_label.
3935         * gdb.trace/entry-values.exp: Remove code computing  foo's
3936         length and bar's length.
3937         (Dwarf::assemble): Invoke function_range for bar and use
3938         MACRO_AT_func for foo.
3939
3940 2014-11-22  Yao Qi  <yao@codesourcery.com>
3941
3942         * gdb.dwarf2/dw2-compdir-oldgcc.S: Define label .Lgcc42_procstart
3943         and .Lgcc43_procstart.  Use .Lgcc42_procstart instead of gcc42.
3944         Use .Lgcc43_procstart instead of gcc43.
3945
3946 2014-11-21  Joel Brobecker  <brobecker@adacore.com>
3947
3948         * gdb.ada/n_arr_bound: New testcase.
3949
3950 2014-11-20  Sergio Durigan Junior  <sergiodj@redhat.com>
3951
3952         PR breakpoints/10737
3953         * gdb.base/catch-syscall.exp (do_syscall_tests): Call
3954         test_catch_syscall_multi_arch.
3955         (test_catch_syscall_multi_arch): New function.
3956
3957 2014-11-20  Doug Evans  <xdje42@gmail.com>
3958
3959         * gdb.base/maint.exp: Update expected output.
3960
3961 2014-11-19  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3962
3963         * gdb.base/bp-permanent.c (NOP): Define as 2-byte instead of
3964         4-byte instruction on S390.
3965
3966 2014-11-19  Joel Brobecker  <brobecker@adacore.com>
3967
3968         * gdb.ada/arr_arr: New testcase.
3969
3970 2014-11-19  Joel Brobecker  <brobecker@adacore.com>
3971
3972         * gdb.ada/pkd_arr_elem: New Testcase.
3973
3974 2014-11-18  Luis Machado  <lgustavo@codesourcery.com>
3975
3976         * gdb.reverse/break-precsave: Expect completion message for
3977         core file reads.
3978         * gdb.reverse/consecutive-precsave.exp: Likewise.
3979         * gdb.reverse/finish-precsave.exp: Likewise.
3980         * gdb.reverse/i386-precsave.exp: Likewise.
3981         * gdb.reverse/machinestate-precsave.exp: Likewise.
3982         * gdb.reverse/sigall-precsave.exp: Likewise.
3983         * gdb.reverse/solib-precsave.exp: Likewise.
3984         * gdb.reverse/step-precsave.exp: Likewise.
3985         * gdb.reverse/until-precsave.exp: Likewise.
3986         * gdb.reverse/watch-precsave.exp: Likewise.
3987
3988 2014-11-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3989
3990         * gdb.base/bp-permanent.c: Include unistd.h.
3991         * gdb.python/py-framefilter-mi.c (main): Add return type.
3992         * gdb.python/py-framefilter.c (main): Likewise.
3993         * gdb.trace/actions-changed.c (main): Likewise.
3994
3995 2014-11-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3996
3997         * gdb.mi/until.c: Add eye-catchers.
3998         * gdb.mi/mi-until.exp: Refer to eye-catchers instead of literal
3999         line numbers.
4000
4001 2014-11-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4002
4003         * gdb.base/condbreak.exp: Drop references to removed non-prototype
4004         function header variants in break1.c.
4005         * gdb.base/ena-dis-br.exp: Likewise.
4006         * gdb.base/hbreak2.exp: Likewise.
4007         * gdb.reverse/until-precsave.exp: Drop references to removed
4008         non-prototype function header variants in ur1.c.
4009         * gdb.reverse/until-reverse.exp: Likewise.
4010
4011 2014-11-17  Petr Machata  <pmachata@redhat.com>
4012
4013         * lib/dwarf.exp  (Dwarf::cu, Dwarf::tu): Emit
4014         ${_cu_offset_size} bytes abbrev offset.
4015
4016 2014-11-15  Doug Evans  <xdje42@gmail.com>
4017
4018         PR symtab/17559
4019         * gdb.base/line-symtabs.exp: New file.
4020         * gdb.base/line-symtabs.c: New file.
4021         * gdb.base/line-symtabs.h: New file.
4022
4023 2014-11-14  Yao Qi  <yao@codesourcery.com>
4024
4025         * gdb.dwarf2/dw2-ifort-parameter.c: Remove inline asm.
4026         (func): Add label func_label.
4027         * gdb.dwarf2/dw2-ifort-parameter.exp (Dwarf::assemble):
4028         Replace low_pc and high_pc with MACRO_AT_range.
4029         Replace name, low_pc and high_pc with MACRO_AT_func.
4030
4031 2014-11-14  Yao Qi  <yao@codesourcery.com>
4032
4033         * gdb.dwarf2/implptr-optimized-out.exp (Dwarf::assemble):
4034         Replace name, low_pc and high_pc with MACRO_AT_func.
4035
4036 2014-11-14  Yao Qi  <yao@codesourcery.com>
4037
4038         * gdb.dwarf2/implptr-optimized-out.exp: Use Dwarf::assemble to
4039         produce debug information.
4040         * gdb.dwarf2/implptr-optimized-out.S: Removed.
4041
4042 2014-11-14  Yao Qi  <yao@codesourcery.com>
4043
4044         * gdb.dwarf2/dwz.exp: Remove the code to compile main.c to
4045         object and get function length.
4046         (Dwarf::assemble): Replace name, low_pc and high_pc attributes
4047         with MACRO_AT_func.
4048         (top-level): Replace gdb_compile and clean_restart with
4049         prepare_for_testing.
4050         * gdb.dwarf2/main.c (main): Add label main_label.
4051
4052 2014-11-14  Yao Qi  <yao@codesourcery.com>
4053
4054         * lib/dwarf.exp (function_range): New procedure.
4055         (Dwarf::_handle_macro_at_func): New procedure.
4056         (Dwarf::_handle_macro_at_range): New procedure.
4057         (Dwarf): Handle MACRO_AT_func and MACRO_AT_range.
4058
4059 2014-11-14  Yao Qi  <yao@codesourcery.com>
4060
4061         * lib/dwarf.exp (_handle_DW_TAG): Move some code to ...
4062         (_handle_attribute): New procedure.
4063
4064 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4065
4066         * gdb.ada/cond_lang/foo.c (callme): Add return type.
4067         * gdb.base/call-sc.c (zed): Likewise.
4068         * gdb.base/checkpoint.c (main): Likewise.
4069         * gdb.base/dump.c (main): Likewise.
4070         * gdb.base/gcore.c (main): Likewise.
4071         * gdb.base/huge.c (main): Likewise.
4072         * gdb.base/multi-forks.c (main): Likewise.
4073         * gdb.base/pr10179-a.c (main): Likewise.
4074         * gdb.base/savedregs.c (main): Likewise.
4075         * gdb.base/sigaltstack.c (main): Likewise.
4076         * gdb.base/siginfo.c (main): Likewise.
4077         * gdb.base/structs.c (zed): Likewise.
4078         * gdb.mi/mi-stack.c (callee3, callee2, callee1, main): Likewise.
4079         * gdb.mi/mi-syn-frame.c (main): Likewise.
4080         * gdb.mi/until.c (foo, main): Likewise.
4081         * gdb.base/global-var-nested-by-dso.c (b_main, c_main): Declare.
4082         * gdb.base/solib-weak.c (foo): Declare.
4083         * gdb.base/attach-twice.c: Include stdio.h.
4084         * gdb.base/weaklib1.c: Likewise.
4085         * gdb.base/weaklib2.c: Likewise.
4086         * gdb.base/catch-signal-fork.c: Include stdio.h and sys/wait.h.
4087         * gdb.mi/mi-condbreak-call-thr-state-mt.c: Include stdio.h and
4088         unistd.h.
4089         * gdb.base/attach-pie-misread.c: Include stdlib.h.
4090         * gdb.mi/mi-exit-code.c: Likewise.
4091         * gdb.base/break-interp-lib.c: Include string.h.
4092         * gdb.base/coremaker.c: Likewise.
4093         * gdb.base/testenv.c: Likewise.
4094         * gdb.python/py-finish-breakpoint.c: Likewise.
4095         * gdb.base/inferior-died.c: Include sys/wait.h.
4096         * gdb.base/fileio.c: Include time.h.
4097         * gdb.base/async-shell.c: Include unistd.h.
4098         * gdb.base/dprintf-non-stop.c: Likewise.
4099         * gdb.base/info-os.c: Likewise.
4100         * gdb.mi/mi-console.c: Likewise.
4101         * gdb.mi/watch-nonstop.c: Likewise.
4102         * gdb.python/py-events.c: Likewise.
4103         * gdb.base/async.c (baz): Move up before its invocation.
4104         * gdb.base/code_elim2.c (my_global_func): Likewise.
4105         * gdb.base/skip-solib-lib.c (multiply): Likewise.
4106         * gdb.base/advance.c (func2): Likewise.
4107
4108 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4109
4110         * gdb.base/annota1.c: Remove #ifdef PROTOTYPES, keep prototyped
4111         variant.
4112         * gdb.base/annota3.c: Likewise.
4113         * gdb.base/async.c: Likewise.
4114         * gdb.base/average.c: Likewise.
4115         * gdb.base/call-ar-st.c: Likewise.
4116         * gdb.base/call-rt-st.c: Likewise.
4117         * gdb.base/call-sc.c: Likewise.
4118         * gdb.base/call-strs.c: Likewise.
4119         * gdb.base/ending-run.c: Likewise.
4120         * gdb.base/execd-prog.c: Likewise.
4121         * gdb.base/exprs.c: Likewise.
4122         * gdb.base/foll-exec.c: Likewise.
4123         * gdb.base/foll-fork.c: Likewise.
4124         * gdb.base/foll-vfork.c: Likewise.
4125         * gdb.base/funcargs.c: Likewise.
4126         * gdb.base/gcore.c: Likewise.
4127         * gdb.base/jump.c: Likewise.
4128         * gdb.base/langs0.c: Likewise.
4129         * gdb.base/langs1.c: Likewise.
4130         * gdb.base/langs2.c: Likewise.
4131         * gdb.base/mips_pro.c: Likewise.
4132         * gdb.base/nodebug.c: Likewise.
4133         * gdb.base/opaque0.c: Likewise.
4134         * gdb.base/opaque1.c: Likewise.
4135         * gdb.base/recurse.c: Likewise.
4136         * gdb.base/run.c: Likewise.
4137         * gdb.base/scope0.c: Likewise.
4138         * gdb.base/scope1.c: Likewise.
4139         * gdb.base/setshow.c: Likewise.
4140         * gdb.base/setvar.c: Likewise.
4141         * gdb.base/shmain.c: Likewise.
4142         * gdb.base/shr1.c: Likewise.
4143         * gdb.base/shr2.c: Likewise.
4144         * gdb.base/sigall.c: Likewise.
4145         * gdb.base/signals.c: Likewise.
4146         * gdb.base/so-indr-cl.c: Likewise.
4147         * gdb.base/solib2.c: Likewise.
4148         * gdb.base/structs.c: Likewise.
4149         * gdb.base/sum.c: Likewise.
4150         * gdb.base/vforked-prog.c: Likewise.
4151         * gdb.base/watchpoint.c: Likewise.
4152         * gdb.reverse/shr2.c: Likewise.
4153         * gdb.reverse/until-reverse.c: Likewise.
4154         * gdb.reverse/ur1.c: Likewise.
4155         * gdb.reverse/watch-reverse.c: Likewise.
4156
4157 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4158
4159         * gdb.base/sepdebug.c: Remove #ifdef PROTOTYPES, keep prototyped
4160         variant.
4161         * gdb.base/sepdebug.exp: Drop references to removed code.
4162
4163 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4164
4165         * gdb.base/list0.h: Remove #ifdef PROTOTYPES, keep prototyped
4166         variant.  Preserve original line numbering.
4167         * gdb.base/list1.c: Likewise.
4168
4169 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4170
4171         * gdb.base/break.c: Remove #ifdef PROTOTYPES, keep prototyped
4172         variant.
4173         * gdb.base/break1.c: Likewise.
4174         * gdb.base/break.exp: Drop references to removed code.
4175
4176 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4177
4178         * gdb.base/solib1.c: Remove #ifdef PROTOTYPES, keep prototyped
4179         variant.
4180
4181 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4182
4183         * gdb.base/callfuncs.exp (perform_all_tests): Re-indent.
4184
4185 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4186
4187         * gdb.base/callfuncs.exp: Remove 'prototypes' variable.  Move main
4188         logic into perform_all_tests() and invoke it with and without
4189         function header prototypes.
4190         (do_function_calls): Remove conditional XFAIL for PR 5318.
4191         (rerun_and_prepare): Remove duplicate code.
4192         (perform_all_tests): New.  Main logic moved here.
4193
4194 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4195
4196         * gdb.base/callfuncs.c (t_float_many_args): Fix syntax error in
4197         code guarded by #ifdef NO_PROTOTYPES.
4198         (t_double_many_args): Likewise.
4199         (DEF_FUNC_MANY_ARGS_1): Likewise.
4200         (DEF_FUNC_VALUES_1): Likewise.
4201         (t_structs_ldc): Renamed from t_structs_fc in conditional code
4202         guarded by #ifdef PROTOTYPES.
4203
4204 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4205
4206         * gdb.mi/mi-console.c: Add eye-catcher.
4207         * gdb.mi/mi-console.exp (semihosted_string): Refer to eye-catcher
4208         instead of literal line number.
4209
4210 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4211
4212         * gdb.base/shr2.c: Add eye-catcher.
4213         * gdb.base/shlib-call.exp: Refer to eye-catcher instead of literal
4214         line number.
4215
4216 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4217
4218         * gdb.base/jump.c: Add eye-catchers.
4219         * gdb.base/jump.exp: Refer to eye-catchers instead of literal line
4220         numbers.
4221
4222 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4223
4224         * gdb.base/execd-prog.c: Add eye-catchers.
4225         * gdb.base/foll-exec.c: Likewise.
4226         * gdb.base/foll-exec.exp: Refer to eye-catchers instead of literal
4227         line numbers.
4228
4229 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4230
4231         * gdb.base/ending-run.c: Add eye-catchers.
4232         * gdb.base/ending-run.exp: Refer to eye-catchers instead of
4233         literal line numbers.
4234
4235 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4236
4237         * gdb.base/call-rt-st.c: Add eye-catchers.
4238         * gdb.base/call-rt-st.exp: Refer to eye-catchers instead of
4239         literal line numbers.
4240
4241 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4242
4243         * gdb.base/call-ar-st.c: Add eye-catchers.
4244         * gdb.base/call-ar-st.exp: Refer to eye-catchers instead of
4245         literal line numbers.
4246
4247 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4248
4249         * gdb.base/average.c: Add eye-catchers.
4250         * gdb.base/sum.c: Likewise.
4251         * gdb.base/dbx.exp: Use eye-catchers to determine line numbers for
4252         regexps dynamically.
4253
4254 2014-11-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4255
4256         * gdb.base/solib1.c: Add eye-catchers.
4257         * gdb.base/so-impl-ld.exp: Match against eye-catchers instead of
4258         literal line numbers.
4259
4260 2014-11-12  Pedro Alves  <palves@redhat.com>
4261
4262         * gdb.threads/leader-exit.exp: Test sending ctrl-c works after the
4263         leader has exited.
4264
4265 2014-11-12  Pedro Alves  <palves@redhat.com>
4266
4267         * gdb.arch/i386-bp_permanent.c: New file.
4268         * gdb.arch/i386-bp_permanent.exp: Don't skip on x86_64.
4269         (srcfile): Set to i386-bp_permanent.c.
4270         (top level): Adjust to work in both 32-bit and 64-bit modes.  Test
4271         that stepi does not execute the 'leave' instruction, instead of
4272         testing it does execute.
4273         * gdb.base/bp-permanent.c: New file.
4274         * gdb.base/bp-permanent.exp: New file.
4275
4276 2014-11-10  Doug Evans  <xdje42@gmail.com>
4277
4278         PR symtab/17564
4279         * gdb.base/symtab-search-order.exp: New file.
4280         * gdb.base/symtab-search-order.c: New file.
4281         * gdb.base/symtab-search-order-1.c: New file.
4282         * gdb.base/symtab-search-order-shlib-1.c: New file.
4283
4284 2014-11-07  Pedro Alves  <palves@redhat.com>
4285
4286         PR gdb/17511
4287         * gdb.base/sigstep.exp (in_handler_map) <si+advance>: xfail
4288         i?86-*-linux*.
4289
4290 2014-11-03  Siva Chandra Reddy  <sivachandra@google.com>
4291
4292         PR c++/17494
4293         * gdb.cp/pr17494.cc: New file.
4294         * gdb.cp/pr17494.exp: New file.
4295
4296 2014-11-02  Yao Qi  <yao@codesourcery.com>
4297
4298         * gdb.python/python.exp: Get working directory and match the
4299         output of "set extended-prompt \\w " with it.
4300
4301 2014-10-30  Doug Evans  <dje@google.com>
4302
4303         * gdb.python/py-objfile.exp: Add tests for setting random attributes
4304         in objfiles.
4305         * gdb.python/py-progspace.exp: Add tests for setting random attributes
4306         in progspaces.
4307
4308 2014-10-30  Janis Johnson  <janisjo@codesourcery.com>
4309
4310         * gdb.base/fullpath-expand.exp: Skip for a remote host.
4311         * gdb.base/realname-expand.exp: Likewise.
4312         * gdb.linespec/macro-relative.exp: Likewise.
4313
4314 2014-10-29  Pedro Alves  <palves@redhat.com>
4315
4316         PR gdb/17408
4317         * gdb.threads/schedlock.c (some_function): New function.
4318         (call_function): New global.
4319         (MAYBE_CALL_SOME_FUNCTION): New macro.
4320         (thread_function): Call it.
4321         * gdb.threads/schedlock.exp (get_args): Add description parameter,
4322         and use it instead of a global counter.  Adjust all callers.
4323         (get_current_thread): Use "find current thread" for test message
4324         here rather than having all callers pass down the same string.
4325         (goto_loop): New procedure, factored out from ...
4326         (my_continue): ... this.
4327         (step_ten_loops): Change parameter from test message to command to
4328         use.  Adjust.
4329         (list_count): Delete global.
4330         (check_result): New procedure, factored out from duplicate top
4331         level code.
4332         (continue tests): Wrap in with_test_prefix.
4333         (test_step): New procedure, factored out from duplicate top level
4334         code.
4335         (top level): Test "step" in combination with all scheduler-locking
4336         modes.  Test "next" in combination with all scheduler-locking
4337         modes, and in combination with stepping over a function call or
4338         not.
4339         * gdb.threads/next-bp-other-thread.c: New file.
4340         * gdb.threads/next-bp-other-thread.exp: New file.
4341
4342 2014-10-29  Pedro Alves  <palves@redhat.com>
4343
4344         PR python/17372
4345         * gdb.python/python.exp: Test a multi-line command that spawns
4346         interactive Python.
4347         * gdb.base/multi-line-starts-subshell.exp: New file.
4348
4349 2014-10-29  Yao Qi  <yao@codesourcery.com>
4350
4351         * gdb.base/fileio.exp: Make directories on host.
4352
4353 2014-10-29  Yao Qi  <yao@codesourcery.com>
4354
4355         * gdb.base/fileio.c (test_write): Close the file.
4356
4357 2014-10-28  Pedro Alves  <palves@redhat.com>
4358
4359         PR gdb/12623
4360         * gdb.base/sigstep.c (no_handler): New global.
4361         (main): If 'no_handler is true, set the signal handlers to
4362         SIG_IGN.
4363         * gdb.base/sigstep.exp (breakpoint_over_handler): Add
4364         with_sw_watch and no_handler parameters.  Handle them.
4365         (top level) <stepping over handler when stopped at a breakpoint
4366         test>: Add a test axis for testing with a software watchpoint, and
4367         another for testing with the signal handler set to SIG_IGN.
4368         * gdb.base/step-sw-breakpoint-adjust-pc.c: New file.
4369         * gdb.base/step-sw-breakpoint-adjust-pc.exp: New file.
4370
4371 2014-10-28  Pedro Alves  <palves@redhat.com>
4372
4373         PR gdb/17511
4374         * gdb.base/sigstep.c (handler): Add a few more writes to 'done'.
4375         * gdb.base/sigstep.exp (other_handler_location): New global.
4376         (advance): Support stepping into the signal handler, and running
4377         commands while in the handler.
4378         (in_handler_map): New global.
4379         (top level): In the advance test, add combinations for getting
4380         into the handler with stepping commands, and for running commands
4381         in the handler.  Add comment descripting the advancei tests.
4382
4383 2014-10-28  Pedro Alves  <palves@redhat.com>
4384
4385         * gdb.base/sigstep.exp: Use build_executable instead of
4386         prepare_for_testing.
4387         (top level): Move code that starts GDB, runs to main and creates a
4388         display to ...
4389         (restart): ... this new procedure.
4390         (top level): Move backtrace from signal handler test to ...
4391         (validate_backtrace): ... this new procedure.
4392         (advance, advancei): Rename parameter from 'i' to 'cmd'.  Use
4393         with_test_prefix.  Always restart GDB.
4394         (skip_to_handler): Rename parameter from 'i' to 'cmd'.  Use
4395         with_test_prefix.  Always restart GDB.  No need to delete
4396         breakpoints after the test.
4397         (test_skip_handler): Remove prefix parameter.
4398         (skip_over_handler, breakpoint_to_handler)
4399         (breakpoint_to_handler_entry, breakpoint_over_handler): Rename
4400         parameter from 'i' to 'cmd'.  Use with_test_prefix.  Always
4401         restart GDB.  No need to delete breakpoints after the test.
4402         (top level): Use foreach to call the test procedures with
4403         different commands.
4404
4405 2014-10-28  Pedro Alves  <palves@redhat.com>
4406
4407         * gdb.base/sigaltstack.exp: Update to use Bugzilla bug numbers
4408         instead of GNATS numbers.
4409         * gdb.base/sigbpt.exp: Likewise.
4410         * gdb.base/siginfo.exp: Likewise.
4411         * gdb.base/sigstep.exp: Likewise.
4412
4413 2014-10-27  Pedro Alves  <palves@redhat.com>
4414
4415         * gdb.base/sigstep.c (dummy): New global.
4416         (main): Issue a couple writes to the new global.
4417         * gdb.base/sigstep.exp (get_next_pc, test_skip_handler): New
4418         procedures.
4419         (skip_over_handler): Use test_skip_handler.
4420         (top level): Call skip_over_handler for stepi and nexti too.
4421         (breakpoint_over_handler): Use test_skip_handler.
4422         (top level): Call breakpoint_over_handler for stepi and nexti too.
4423
4424 2014-10-27  Yao Qi  <yao@codesourcery.com>
4425
4426         * gdb.trace/tfile.c (adjust_function_address)
4427         [__powerpc64__ && _CALL_ELF != 2]: Get function address from
4428         function descriptor.
4429
4430 2014-10-24  Don Breazeal  <donb@codesourcery.com>
4431
4432         * gdb.base/foll-fork.exp (test_follow_fork,
4433         catch_fork_child_follow): Check for updated fork messages emitted
4434         from infrun.c.
4435         * gdb.base/foll-vfork.exp (vfork_parent_follow_through_step,
4436         vfork_parent_follow_to_bp, vfork_and_exec_child_follow_to_main_bp,
4437         vfork_and_exec_child_follow_through_step): Check for updated vfork
4438         messages emitted from infrun.c.
4439
4440 2014-10-24  Pedro Alves  <palves@redhat.com>
4441
4442         * gdb.base/corefile.exp: Remove references to ultrix.
4443         * gdb.base/interrupt.exp: Likewise.
4444         * gdb.base/whatis.exp: Likewise.
4445         * gdb.gdb/selftest.exp: Likewise.
4446         * gdb.threads/manythreads.exp: Likewise.
4447         * gdb.threads/print-threads.exp: Likewise.
4448         * gdb.threads/pthreads.exp:: Likewise.
4449         * gdb.threads/schedlock.exp: Likewise.
4450
4451 2014-10-24  Siva Chandra Reddy  <sivachandra@google.com>
4452
4453         * gdb.cp/non-trivial-retval.cc: Add a test case.
4454         * gdb.cp/non-trivial-retval.exp: Add a test.
4455
4456 2014-10-20  Yao Qi  <yao@codesourcery.com>
4457
4458         * gdb.python/py-objfile-script-gdb.py.in: Rename it to ...
4459         * gdb.python/py-objfile-script-gdb.py: New file.
4460         * gdb.python/py-objfile-script.exp: Update reference to
4461         py-objfile-script-gdb.py.in.  Use gdb_remote_donwload instead
4462         of remote_download.  Remove the dest file.
4463
4464 2014-10-20  Yao Qi  <yao@codesourcery.com>
4465
4466         * gdb.base/checkpoint.exp: Don't remove file copied on host.
4467         * gdb.base/step-line.exp: Likewise.
4468         * gdb.dwarf2/dw2-anonymous-func.exp: Likewise.
4469         * gdb.dwarf2/dw2-basic.exp: Likewise.
4470         * gdb.dwarf2/dw2-compressed.exp: Likewise.
4471         * gdb.dwarf2/dw2-filename.exp: Likewise.
4472         * gdb.dwarf2/dw2-intercu.exp: Likewise.
4473         * gdb.dwarf2/dw2-intermix.exp: Likewise.
4474         * gdb.dwarf2/dw2-producer.exp: Likewise.
4475         * gdb.dwarf2/mac-fileno.exp: Likewise.
4476         * gdb.python/py-frame-args.exp: Likewise.
4477         * gdb.python/py-framefilter.exp: Likewise.
4478         * gdb.python/py-mi.exp: Likewise.
4479         * gdb.python/py-objfile-script.exp: Likewise
4480         * gdb.python/py-pp-integral.exp: Likewise.
4481         * gdb.python/py-pp-re-notag.exp: Likewise.
4482         * gdb.python/py-prettyprint.exp: Likewise.
4483         * gdb.python/py-section-script.exp: Likewise.
4484         * gdb.python/py-typeprint.exp: Likewise.
4485         * gdb.python/py-xmethods.exp: Likewise.
4486         * gdb.stabs/weird.exp: Likewise.
4487         * gdb.xml/tdesc-regs.exp: Likewise.
4488
4489 2014-10-18  Kwok Cheung Yeung  <kcy@codesourcery.com>
4490
4491         * gdb.dwarf2/dw2-dir-file-name.exp (addr_len): New.
4492         (out_cu): Use addr_len for the size of addresses.
4493         (out_line): Likewise.  Size DW_LNE_set_address instruction
4494         according to addr_len.
4495         * gdb.dwarf2/dw2-dir-file-name.c (START_INSNS): New.
4496         (FUNC): Add START_INSNS to definition.
4497
4498 2014-10-18  Yao Qi  <yao@codesourcery.com>
4499
4500         * gdb.base/argv0-symlink.exp: Check argv[0] value if
4501         gdb_has_argv0 return true.
4502         * gdb.guile/scm-value.exp (test_value_in_inferior): Don't
4503         check [target_info exists noargs], check [gdb_has_argv0]
4504         instead.
4505         * gdb.python/py-value.exp (test_value_in_inferior): Likewise.
4506         * lib/gdb.exp (gdb_has_argv0, gdb_has_argv0_1): New
4507         procedures.
4508
4509 2014-10-17  Doug Evans  <dje@google.com>
4510
4511         * gdb.python/py-events.exp: Update expected output for clear_objfiles
4512         event.
4513         * gdb.python/py-events.py: Add clear_objfiles event.
4514
4515 2014-10-17  Doug Evans  <dje@google.com>
4516
4517         * gdb.python/py-objfile.exp: Test progspace attribute.
4518
4519 2014-10-17  Luis Machado  <lgustavo@codesourcery.com>
4520
4521         * gdb.guile/scm-breakpoint.exp: Do not assume any
4522         directory separators when matching source file paths.
4523         * gdb.python/py-breakpoint.exp: Likewise.
4524         * gdb.reverse/break-precsave.exp: Likewise.
4525         * gdb.reverse/break-reverse.exp: Likewise.
4526         * gdb.reverse/consecutive-precsave.exp: Likewise.
4527         * gdb.reverse/finish-precsave.exp: Likewise.
4528         * gdb.reverse/finish-reverse-bkpt.exp: Likewise.
4529         * gdb.reverse/finish-reverse.exp: Likewise.
4530         * gdb.reverse/i386-precsave.exp: Likewise.
4531         * gdb.reverse/i387-env-reverse.exp: Likewise.
4532         * gdb.reverse/i387-stack-reverse.exp: Likewise.
4533         * gdb.reverse/machinestate-precsave.exp: Likewise.
4534         * gdb.reverse/machinestate.exp: Likewise.
4535         * gdb.reverse/sigall-precsave.exp: Likewise.
4536         * gdb.reverse/solib-precsave.exp: Likewise.
4537         * gdb.reverse/step-precsave.exp: Likewise.
4538         * gdb.reverse/until-precsave.exp: Likewise.
4539         * gdb.reverse/watch-precsave.exp: Likewise.
4540         * gdb.reverse/watch-reverse.exp: Likewise.
4541
4542 2014-10-17  Yao Qi  <yao@codesourcery.com>
4543
4544         * lib/gdb.exp (gdb_skip_xml_test): Copy trivial.xml to host.
4545         * gdb.xml/tdesc-regs.exp: Copy single-reg.xml to host.
4546
4547 2014-10-17  Pedro Alves  <palves@redhat.com>
4548
4549         PR gdb/17471
4550         * gdb.base/bg-execution-repeat.c: New file.
4551         * gdb.base/bg-execution-repeat.exp: New file.
4552
4553 2014-10-17  Pedro Alves  <palves@redhat.com>
4554
4555         PR gdb/17300
4556         * gdb.base/continue-all-already-running.c: New file.
4557         * gdb.base/continue-all-already-running.exp: New file.
4558
4559 2014-10-17  Pedro Alves  <palves@redhat.com>
4560
4561         PR gdb/17472
4562         * gdb.base/annota-input-while-running.c: New file.
4563         * gdb.base/annota-input-while-running.exp: New file.
4564
4565 2014-10-17  Pedro Alves  <palves@redhat.com>
4566
4567         * gdb.base/callfuncs.exp: emove references to osf.
4568         * gdb.base/sigall.exp: Likewise.
4569         * gdb.gdb/selftest.exp: Likewise.
4570         * gdb.hp/gdb.base-hp/callfwmall.exp: Likewise.
4571         * gdb.mi/non-stop.c: Likewise.
4572         * gdb.mi/pthreads.c: Likewise.
4573         * gdb.reverse/sigall-precsave.exp: Likewise.
4574         * gdb.reverse/sigall-reverse.exp: Likewise.
4575         * gdb.threads/pthreads.c: Likewise.
4576         * gdb.threads/pthreads.exp: Likewise.
4577
4578 2014-10-17  Yao Qi  <yao@codesourcery.com>
4579
4580         * gdb.base/commands.exp (gdbvar_complex_if_while_test): Don't
4581         check 'target_info exists noargs'.
4582         (test_command_prompt_position): Likewise.
4583         (progvar_simple_if_test): Don't check 'target_info exists noargs'.
4584         Remove "set args".
4585         (progvar_simple_while_test): Likewise.
4586         (progvar_complex_if_while_test): Likewise.
4587         (if_while_breakpoint_command_test): Likewise.
4588         (infrun_breakpoint_command_test): Likewise.
4589         (breakpoint_command_test): Likewise.
4590         (watchpoint_command_test): Likewise.
4591         (bp_deleted_in_command_test): Likewise.
4592         (temporary_breakpoint_commands): Likewise.
4593
4594 2014-10-16  Yao Qi  <yao@codesourcery.com>
4595
4596         * gdb.base/remotetimeout.exp: Remove noargs checking.
4597
4598 2014-10-15  Pedro Alves  <palves@redhat.com>
4599
4600         PR breakpoints/9649
4601         * gdb.base/breakpoint-in-ro-region.c (main): Add more instructions.
4602         * gdb.base/breakpoint-in-ro-region.exp
4603         (probe_target_hardware_step): New procedure.
4604         (top level): Probe hardware stepping and hardware breakpoint
4605         support.  Test stepping through a read-only region, with both
4606         "breakpoint auto-hw" on and off and both "always-inserted" on and
4607         off.
4608
4609 2014-10-15  Iain Buclaw  <ibuclaw@gdcproject.org>
4610
4611         * gdb.dlang/demangle.exp: Update for demangling changes.
4612
4613 2014-10-15  Siva Chandra Reddy  <sivachandra@google.com>
4614
4615         * gdb.cp/non-trivial-retval.cc: Add new test cases.
4616         * gdb.cp/non-trivial-retval.exp: Add new tests.
4617
4618 2014-10-15  Siva Chandra Reddy  <sivachandra@google.com>
4619
4620         PR c++/13403
4621         PR c++/15154
4622         * gdb.cp/non-trivial-retval.cc: New file.
4623         * gdb.cp/non-trivial-retval.exp: New file.
4624
4625 2014-10-15  Yao Qi  <yao@codesourcery.com>
4626
4627         * gdb.python/py-parameter.exp: Don't match $srcdir/$subdir on
4628         remote host.
4629
4630 2014-10-15  Yao Qi  <yao@codesourcery.com>
4631
4632         * gdb.python/py-symbol.exp: Match file base name if host is
4633         remote, otherwise match file name with dir name.
4634         * gdb.python/py-symtab.exp: Likewise.
4635         * gdb.python/python.exp: Likewise.
4636
4637 2014-10-15  Yao Qi  <yao@codesourcery.com>
4638
4639         * gdb.python/py-symbol.exp: Remove trailing ".*" in the
4640         pattern.
4641         * gdb.python/py-symtab.exp: Likewise.
4642         * gdb.python/python.exp: Remove trailing ".*".  Fix typo
4643         locationn.
4644
4645 2014-10-14  Joel Brobecker  <brobecker@adacore.com>
4646
4647         * gdb.ada/addr_arith: New testcase.
4648
4649 2014-10-14  Maciej W. Rozycki  <macro@codesourcery.com>
4650
4651         * gdb.dwarf2/dw2-case-insensitive-debug.S: Handle 64-bit pointers.
4652         * gdb.dwarf2/dw2-case-insensitive.exp: Update accordingly.
4653         * gdb.dwarf2/dw2-skip-prologue.S: Handle 64-bit pointers.
4654         * gdb.dwarf2/dw2-skip-prologue.exp: Update accordingly.
4655
4656 2014-10-14  Sergio Durigan Junior  <sergiodj@redhat.com>
4657
4658         * gdb.arch/stap-eval-lang-ada.S: Likewise.
4659         * gdb.arch/stap-eval-lang-ada.c: Likewise.
4660         * gdb.arch/stap-eval-lang-ada.exp: New file.
4661
4662 2014-10-14  Yao Qi  <yao@codesourcery.com>
4663
4664         * gdb.mi/mi-var-child.c (nothing1): New function.
4665         (nothing2): New function.
4666         (do_children_tests): Set function pointers by nothing1 and
4667         nothing2.
4668         * gdb.mi/mi-var-child.exp: Step over new added statements.
4669         Update test to match the new output.
4670         * gdb.mi/var-cmd.c (nothing1): New function.
4671         (nothing2): New function.
4672         (do_children_tests): Set function pointers by  nothing1 and
4673         nothing2.
4674         * gdb.mi/mi-var-display.exp: Update test to match output.
4675         Step to the line specified by $line_dct_nothing.
4676         Increase the number of lines to step.
4677
4678 2014-10-14  Yao Qi  <yao@codesourcery.com>
4679
4680         * gdb.mi/mi-var-child.exp: Use mi_varobj_update to simplify
4681         tests.
4682         * gdb.mi/mi2-var-child.exp: Likewise.
4683
4684 2014-10-13  Doug Evans  <dje@google.com>
4685
4686         * gdb.python/py-objfile.exp: Change name of file name test.
4687
4688 2014-10-13  Doug Evans  <dje@google.com>
4689
4690         * gdb.dwarf2/dw2-op-out-param.S: Make DW_FORM_ref4 values be the offset
4691         from the start of the CU.
4692
4693 2014-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4694             Yao Qi  <yao@codesourcery.com>
4695
4696         Fix "save breakpoints" for "catch" command.
4697         * gdb.base/catch-signal.exp: Add gdb_breakpoint "main".
4698         Remove -nonewline.  Match also the added "main" line.
4699
4700 2014-10-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
4701
4702         Fix "save breakpoints" for "disable $bpnum" command.
4703         * gdb.base/save-bp.c (main): Add label.
4704         * gdb.base/save-bp.exp: Add 8th disabled breakpoint.  Match it.
4705
4706 2014-10-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
4707
4708         * gdb.base/save-bp.exp (info break): Use gdb_test_sequence.
4709
4710 2014-10-11  Yao Qi  <yao@codesourcery.com>
4711
4712         * gdb.server/server-kill.exp: Execute command
4713         "set remote trace-status-packet on" before "tstatus".
4714
4715 2014-10-11  Yao Qi  <yao@codesourcery.com>
4716
4717         * gdb.server/server-kill.c: Include sys/types.h and unistd.h.
4718         (main): Call getppid.
4719         * gdb.server/server-kill.exp: Set breakpoint on line "i = 0;"
4720         and continue to it.  Read variable "server_pid".
4721
4722 2014-10-11  Yao Qi  <yao@codesourcery.com>
4723
4724         * gdb.server/server-kill.exp: Remove "delete_breakpoints".
4725
4726 2014-10-11  Yao Qi  <yao@codesourcery.com>
4727
4728         * gdb.threads/thread-find.exp: Don't execute command
4729         "info threads".
4730         * gdb.threads/attach-into-signal.exp (corefunc): Likewise.
4731         * gdb.threads/linux-dp.exp: Don't check the condition
4732         $threads_created equals to zero.
4733
4734 2014-10-10  Pedro Alves  <palves@redhat.com>
4735
4736         * gdb.base/bigcore.exp: Remove references to IRIX.
4737         * gdb.base/funcargs.exp: Likewise.
4738         * gdb.base/interrupt.exp: Likewise.
4739         * gdb.base/mips_pro.exp: Likewise.
4740         * gdb.base/nodebug.exp: Likewise.
4741         * gdb.base/setvar.exp: Likewise.
4742         * lib/gdb.exp (gdb_compile_shlib): Remove mips-sgi-irix* case.
4743
4744 2014-10-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
4745             Pedro Alves  <palves@redhat.com>
4746
4747         PR symtab/14466
4748         * gdb.base/vdso-warning.c: New file.
4749         * gdb.base/vdso-warning.exp: New file.
4750
4751 2014-10-02  Doug Evans  <dje@google.com>
4752
4753         * gdb.base/structs.c (main): Don't run forever.
4754
4755 2014-10-02  Pedro Alves  <palves@redhat.com>
4756
4757         * gdb.threads/manythreads.exp (interrupt_and_wait): New procedure.
4758         (top level) <stop threads 1, stop threads 2>: Use it.
4759
4760 2014-10-02  Pedro Alves  <palves@redhat.com>
4761
4762         * gdb.threads/break-while-running.exp (test): Add new
4763         'update_thread_list' argument.  Skip "info threads" if false.
4764         (top level): Add new 'update_thread_list' axis.
4765
4766 2014-10-02  Pedro Alves  <palves@redhat.com>
4767
4768         PR breakpoints/17431
4769         * gdb.base/execl-update-breakpoints.c: New file.
4770         * gdb.base/execl-update-breakpoints.exp: New file.
4771
4772 2014-10-01  Pedro Alves  <palves@redhat.com>
4773
4774         * gdb.base/breakpoint-in-ro-region.c: New file.
4775         * gdb.base/breakpoint-in-ro-region.exp: New file.
4776
4777 2014-10-01  Simon Marchi  <simon.marchi@ericsson.com>
4778
4779         * gdb.mi/mi-exit-code.exp: New file.
4780         * gdb.mi/mi-exit-code.c: New file.
4781
4782 2014-09-30  Yao Qi  <yao@codesourcery.com>
4783
4784         * lib/prelink-support.exp (build_executable_own_libs): Error if
4785         the target isn't native.
4786
4787 2014-09-30  Yao Qi  <yao@codesourcery.com>
4788
4789         * gdb.threads/dlopen-libpthread.exp: Skip it if isnative is
4790         false.
4791
4792 2014-09-22  Pedro Alves  <palves@redhat.com>
4793
4794         * gdb.threads/break-while-running.exp: New file.
4795         * gdb.threads/break-while-running.c: New file.
4796
4797 2014-09-19  Yao Qi  <yao@codesourcery.com>
4798
4799         * gdb.dwarf2/dw2-var-zero-addr.exp: Move test into new proc test.
4800         Invoke test.  Restart GDB with --readnow and invoke test again.
4801
4802 2014-09-19  Yao Qi  <yao@codesourcery.com>
4803
4804         * gdb.base/break-on-linker-gcd-function.exp: Move test into new
4805         proc set_breakpoint_on_gcd_function.  Invoke
4806         set_breakpoint_on_gcd_function.  Restart GDB with --readnow and
4807         invoke set_breakpoint_on_gcd_function again.
4808
4809 2014-09-18  Doug Evans  <dje@google.com>
4810
4811         * gdb.dwarf2/symtab-producer.exp: New file.
4812
4813 2014-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
4814
4815         * gdb.base/global-var-nested-by-dso-solib1.c: New file.
4816         * gdb.base/global-var-nested-by-dso-solib2.c: Likewise.
4817         * gdb.base/global-var-nested-by-dso.c: Likewise.
4818         * gdb.base/global-var-nested-by-dso.exp: Likewise.
4819
4820 2014-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
4821             Pedro Alves  <palves@redhat.com>
4822
4823         * gdb.base/watch-bitfields.exp: Pass string other than test file
4824         name to prepare_for_testing.
4825         (watch): New procedure.
4826         (expect_watchpoint): Use with_test_prefix.
4827         (top level): Factor out tests to ...
4828         (test_watch_location, test_regular_watch): ... these new
4829         procedures, and use with_test_prefix and gdb_continue_to_end.
4830
4831 2014-09-16  Patrick Palka  <patrick@parcs.ath.cx>
4832
4833         PR breakpoints/12526
4834         * gdb.base/watch-bitfields.exp: New file.
4835         * gdb.base/watch-bitfields.c: New file.
4836
4837 2014-09-16  Pedro Alves  <palves@redhat.com>
4838
4839         * gdb.base/watchpoint-stops-at-right-insn.exp (test): Compare
4840         software and hardware addresses, not software address against
4841         itself.
4842
4843 2014-09-16  Pedro Alves  <palves@redhat.com>
4844
4845         * gdb.base/watchpoint-stops-at-right-insn.c: New file.
4846         * gdb.base/watchpoint-stops-at-right-insn.exp: New file.
4847
4848 2014-09-16  Pedro Alves  <palves@redhat.com>
4849
4850         * config/vx.exp, config/vxworks.exp, config/vxworks29k.exp: Delete
4851         files.
4852         * gdb.base/a2-run.exp: Remove all code guarded by istarget
4853         "*-*-vxworks*" throughout.
4854         * gdb.base/break.exp: Likewise.
4855         * gdb.base/default.exp: Likewise.
4856         * gdb.base/scope.exp: Likewise.
4857         * gdb.base/sepdebug.exp: Likewise.
4858         * gdb.base/break.c: Remove all code guarded by #ifdef vxworks
4859         throughout.
4860         * gdb.base/run.c: Likewise.
4861         * gdb.base/sepdebug.c: Likewise.
4862         * gdb.hp/gdb.aCC/run.c: Likewise.
4863         * gdb.reverse/until-reverse.c: Likewise.
4864         * lib/gdb.exp (gdb_compile): Remove is_vxworks branch.
4865
4866 2014-09-16  Yao Qi  <yao@codesourcery.com>
4867
4868         * boards/local-remote-host-native.exp: New file.
4869
4870 2014-09-14  Doug Evans  <xdje42@gmail.com>
4871
4872         * gdb.threads/queue-signal.c (thread_count): New variable.
4873         (thread_count_mutex, thread_count_condvar): New variables.
4874         (incr_thread_count, wait_all_threads_running): New functions.
4875         (main): Wait for all threads to be in their thread functions.
4876
4877 2014-09-13  Doug Evans  <xdje42@gmail.com>
4878
4879         * gdb.threads/queue-signal.c: New file.
4880         * gdb.threads/queue-signal.exp: New file.
4881
4882 2014-09-13  Doug Evans  <xdje42@gmail.com>
4883
4884         * lib/gdb.exp (gdb_prompt): Add comment and change initial value to
4885         be consistent with what default_gdb_init uses.
4886         (with_gdb_prompt): Change form of PROMPT argument from a regexp to
4887         the plain text of the prompt.  Add some logging printfs.
4888         * gdb.perf/disassemble.exp: Update call to with_gdb_prompt.
4889
4890 2014-09-12  Pedro Alves  <palves@redhat.com>
4891
4892         * gdb.arch/gdb1558.exp: Replace uses of gdb_expect after
4893         gdb_run_cmd with gdb_test_multiple or gdb_test throughout.
4894         * gdb.arch/i386-size-overlap.exp: Likewise.
4895         * gdb.arch/i386-size.exp: Likewise.
4896         * gdb.arch/i386-unwind.exp: Likewise.
4897         * gdb.base/a2-run.exp: Likewise.
4898         * gdb.base/break.exp: Likewise.
4899         * gdb.base/charset.exp: Likewise.
4900         * gdb.base/chng-syms.exp: Likewise.
4901         * gdb.base/commands.exp: Likewise.
4902         * gdb.base/dbx.exp: Likewise.
4903         * gdb.base/find.exp: Likewise.
4904         * gdb.base/funcargs.exp: Likewise.
4905         * gdb.base/jit-simple.exp: Likewise.
4906         * gdb.base/reread.exp: Likewise.
4907         * gdb.base/sepdebug.exp: Likewise.
4908         * gdb.base/step-bt.exp: Likewise.
4909         * gdb.cp/mb-inline.exp: Likewise.
4910         * gdb.cp/mb-templates.exp: Likewise.
4911         * gdb.objc/basicclass.exp: Likewise.
4912         * gdb.threads/killed.exp: Likewise.
4913
4914 2014-09-12  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
4915
4916         PR tdep/17379
4917         * gdb.arch/powerpc-stackless.S: New file.
4918         * gdb.arch/powerpc-stackless.exp: New file.
4919
4920 2014-09-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
4921
4922         * gdb.base/attach.c: Include unistd.h.
4923         (main): Call alarm.  Add label postloop.
4924         * gdb.base/attach.exp (do_attach_tests): Use gdb_get_line_number,
4925         gdb_breakpoint, gdb_continue_to_breakpoint.
4926         (test_command_line_attach_run): Kill ${testpid} in one exit path.
4927
4928 2014-09-11  Pedro Alves  <palves@redhat.com>
4929
4930         PR gdb/17347
4931         * lib/gdb.exp (gdb_spawn_with_cmdline_opts): New procedure.
4932         * gdb.base/attach.exp (test_command_line_attach_run): New
4933         procedure.
4934         (top level): Call it.
4935
4936 2014-09-11  Pedro Alves  <palves@redhat.com>
4937
4938         * lib/gdb.exp (spawn_wait_for_attach): New procedure.
4939         * gdb.base/attach.exp (do_attach_tests, do_call_attach_tests)
4940         (do_command_attach_tests): Use spawn_wait_for_attach.
4941         * gdb.base/solib-overlap.exp: Likewise.
4942         * gdb.multi/multi-attach.exp: Likewise.
4943         * gdb.python/py-prompt.exp: Likewise.
4944         * gdb.python/py-sync-interp.exp: Likewise.
4945         * gdb.server/ext-attach.exp: Likewise.
4946
4947 2014-09-11  Gabriel Krisman Bertazi  <gabriel@krisman.be>
4948
4949         * gdb.fortran/array-element.exp: Remove unexpected "continue"
4950         command in testcase.  Simplify testcase.
4951
4952 2014-09-10  Joel Brobecker  <brobecker@adacore.com>
4953
4954         * gdb.dwarf2/dynarr-ptr.exp: Add a few ptype tests.
4955
4956 2014-09-10  Joel Brobecker  <brobecker@adacore.com>
4957
4958         * gdb.dwarf2/dynarr-ptr.exp: Add 'first, 'last and 'length tests.
4959
4960 2014-09-10  Joel Brobecker  <brobecker@adacore.com>
4961
4962         * gdb.dwarf2/dynarr-ptr.exp: Add subscripting tests.
4963
4964 2014-09-10  Joel Brobecker  <brobecker@adacore.com>
4965
4966         * gdb.dwarf2/dynarr-ptr.c: New file.
4967         * gdb.dwarf2/dynarr-ptr.exp: New file.
4968
4969 2014-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
4970
4971         * gdb.base/watchpoint-solib.exp: Increase the timeout by a factor
4972         of 30 rather than hardcoding 120 for a slow test case.  Take the
4973         `gdb,timeout' target setting into account for this calculation.
4974         Don't extend the timeout for the test cases that don't need it.
4975
4976 2014-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
4977
4978         * gdb.reverse/sigall-reverse.exp: Increase the timeout by
4979         a factor of 2 for a slow test case.  Take the `gdb,timeout'
4980         target setting into account for this calculation.
4981         * gdb.reverse/until-precsave.exp: Increase the timeout by
4982         a factor of 15 and 3 respectively rather than adding 120
4983         for a pair of slow test cases.  Take the `gdb,timeout'
4984         target setting into account for this calculation.
4985
4986 2014-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
4987
4988         * lib/gdb.exp (gdb_test_multiple): Remove code to select the
4989         timeout, don't pass one down to gdb_expect.
4990         (gdb_expect): Rework timeout selection.
4991
4992 2014-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
4993
4994         * lib/gdbserver-support.exp (gdbserver_start): Throw an error
4995         exception on timeout.
4996         (gdbserver_run): Catch any `gdbserver_spawn' error exceptions.
4997         (gdbserver_start_extended): Catch any `gdbserver_start' error
4998         exceptions.
4999         (gdbserver_start_multi, mi_gdbserver_start_multi): Likewise.
5000         * lib/mi-support.exp (mi_gdb_target_load): Catch any
5001         `gdbserver_gdb_load' error exceptions.
5002
5003 2014-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
5004
5005         * lib/gdbserver-support.exp (gdbserver_start): Set timeout to
5006         120 on waiting for the TCP socket to open.
5007
5008 2014-09-09  Doug Evans  <xdje42@gmail.com>
5009
5010         * gdb.base/default.exp (show_conv_list): Add _caller_is,
5011         _caller_matches, _any_caller_is, _any_caller_matches.
5012
5013 2014-09-09  Doug Evans  <xdje42@gmail.com>
5014
5015         * gdb.guile/scm-error.exp: Handle guile 2.2 backtrace output.
5016
5017 2014-09-09  Yao Qi  <yao@codesourcery.com>
5018
5019         * gdb.mi/mi-var-display.exp: Set print symbol off.
5020
5021 2014-09-07  Gabriel Krisman Bertazi  <gabriel@krisman.be>
5022
5023         PR gdb/17035
5024         * gdb.base/commands.exp: Add tests to verify user-defined
5025         commands with empty bodies.
5026         * gdb.python/py-cmd.exp: Test that we don't show user-defined
5027         python commands in `show user command`.
5028         * gdb.python/scm-cmd.exp: Test that we don't show user-defined
5029         scheme commands in `show user command`.
5030
5031 2014-09-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
5032
5033         PR python/17355
5034         * gdb.python/amd64-py-framefilter-invalidarg.S: New file.
5035         * gdb.python/py-framefilter-invalidarg-gdb.py.in: New file.
5036         * gdb.python/py-framefilter-invalidarg.exp: New file.
5037         * gdb.python/py-framefilter-invalidarg.py: New file.
5038
5039 2014-09-06  Doug Evans  <xdje42@gmail.com>
5040
5041         PR 15276
5042         * gdb.python/py-caller-is.c: New file.
5043         * gdb.python/py-caller-is.exp: New file.
5044
5045 2014-09-05  Sergio Durigan Junior  <sergiodj@redhat.com>
5046
5047         PR gdb/17235
5048         * gdb.arch/amd64-stap-wrong-subexp.exp: New file.
5049         * gdb.arch/amd64-stap-wrong-subexp.S: Likewise.
5050
5051 2014-09-04  Sergio Durigan Junior  <sergiodj@redhat.com>
5052
5053         PR fortran/17237
5054         * gdb.fortran/print-formatted.exp: New file.
5055         * gdb.fortran/print-formatted.f90: Likewise.
5056
5057 2014-09-03  Sasha Smundak  <asmundak@google.com>
5058
5059         * gdb.python/py-frame.exp: Test Frame.read_register.
5060
5061 2014-09-03  Sergio Durigan Junior  <sergiodj@redhat.com>
5062
5063         PR python/16699
5064         * gdb.python/py-completion.exp: New file.
5065         * gdb.python/py-completion.py: Likewise.
5066
5067 2014-08-28  Doug Evans  <dje@google.com>
5068
5069         * gdb.arch/amd64-pseudo.c (main): Rewrite to better specify when
5070         eax,etc. are live with values set by gdb and thus the compiler can't
5071         use them.
5072         * gdb.arch/i386-pseudo.c (main): Ditto.
5073
5074 2014-08-27  Doug Evans  <dje@google.com>
5075
5076         * lib/gdb.exp (gdb_compile_shlib): Add support for clang.
5077
5078 2014-08-25  Doug Evans  <dje@google.com>
5079
5080         * gdb.mi/basics.c (callee3, callee2, callee1): Specify result type.
5081         (main): Ditto.
5082
5083 2014-08-25  Doug Evans  <dje@google.com>
5084
5085         * gdb.threads/thread-execl.exp: #include <stdio.h>.
5086
5087 2014-08-24  Yao Qi  <yao@codesourcery.com>
5088
5089         * gdb.guile/scm-value.exp (test_lazy_strings): Set print
5090         symbol off.
5091         * gdb.python/py-value.exp (test_lazy_strings): Likewise.
5092
5093 2014-08-22  Doug Evans  <dje@google.com>
5094
5095         PR 17276
5096         * gdb.dwarf2/dw2-single-line-discriminators.S: New file.
5097         * gdb.dwarf2/dw2-single-line-discriminators.c: New file.
5098         * gdb.dwarf2/dw2-single-line-discriminators.exp: New file.
5099
5100 2014-08-22  Yao Qi  <yao@codesourcery.com>
5101
5102         * gdb.python/py-finish-breakpoint.exp: Copy .py file to host.
5103         * gdb.python/py-finish-breakpoint2.exp: Likewise.
5104         * gdb.python/python.exp: Likewise.  Use .py file on the host
5105         instead of the build.
5106
5107 2014-08-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5108
5109         * gdb.threads/gcore-stale-thread.c: New file.
5110         * gdb.threads/gcore-stale-thread.exp: New file.
5111
5112 2014-08-21  Pedro Alves  <palves@redhat.com>
5113
5114         * gdb.base/gcore-buffer-overflow.exp: Remove "help gcore" test.
5115         * gdb.base/gcore-relro-pie.exp: Likewise.
5116         * gdb.base/gcore-relro.exp: Likewise.
5117         * gdb.base/gcore.exp: Likewise.
5118         * gdb.base/print-symbol-loading.exp: Likewise.
5119         * gdb.threads/gcore-thread.exp: Likewise.
5120         * lib/gdb.exp (gdb_gcore_cmd): Don't expect "Undefined command".
5121
5122 2014-08-20  Pedro Alves  <palves@redhat.com>
5123             Jan Kratochvil  <jan.kratochvil@redhat.com>
5124
5125         * Makefile.in (EXTRA_RULES, CC): New variables, get from
5126         configure.
5127         (EXPECT): Handle READ1 being set.
5128         (all): Depend on EXTRA_RULES.
5129         (check-read1, expect-read1, read1.so, read1): New rules.
5130         * README (Testsuite Parameters): Document the READ1 make variable.
5131         (Race detection): New section.
5132         * configure: Regenerate.
5133         * configure.ac: If build==host==target, and running under a
5134         GNU/glibc system, add read1 to the extra Makefile rules.
5135         (EXTRA_RULES): AC_SUBST it.
5136         * lib/read1.c: New file.
5137
5138 2014-08-20  Joel Brobecker  <brobecker@adacore.com>
5139
5140         * gdb.dwarf2/data-loc.exp: Add additional tests exercising
5141         the handling of variables declared as a typedef to an array
5142         which a DW_AT_data_location attribute.
5143
5144 2014-08-19  Andrew Burgess  <aburgess@broadcom.com>
5145             Pedro Alves  <palves@redhat.com>
5146
5147         PR symtab/14604
5148         PR symtab/14605
5149         * gdb.dwarf2/dw2-op-out-param.exp: Remove kfail branches and use
5150         gdb_test.
5151
5152 2014-08-19  Pedro Alves  <palves@redhat.com>
5153
5154         * gdb.base/watchpoint-hw-hit-once.c (main): Update comment.
5155
5156 2014-08-19  Yao Qi  <yao@codesourcery.com>
5157
5158         * gdb.base/watchpoint-hw-hit-once.exp: Set breakpoint on the
5159         right line.
5160
5161 2014-08-18  David Blaikie  <dblaikie@gmail.com>
5162
5163         * boards/fission.exp: Explicitly pass -ggnu-pubnames for clang.
5164
5165 2014-08-18  Joel Brobecker  <brobecker@adacore.com>
5166
5167         * gdb.dwarf2/data-loc.exp: Remove second DW_AT_upper bound
5168         attribute in array range.
5169
5170 2014-08-18  Joel Brobecker  <brobecker@adacore.com>
5171
5172         * gdb.dwarf2/data-loc.c, gdb.dwarf2/data-loc.exp: New files.
5173
5174 2014-08-15  Siva Chandra Reddy  <sivachandra@google.com>
5175
5176         PR c++/17132
5177         * gdb.cp/pr17132.cc: New file.
5178         * gdb.cp/pr17132.exp: New file.
5179
5180 2014-08-15  Siva Chandra Reddy  <sivachandra@google.com>
5181
5182         * gdb.python/py-xmethods.py (A_getarrayind)
5183         (E_method_char_worker.__call__, E_method_int_worker.__call__):
5184         Use 'print' with function call syntax.
5185         (E_method_matcher.match): Fix tab vs space indentation mixup.
5186
5187 2014-08-15  Yao Qi  <yao@codesourcery.com>
5188
5189         * gdb.trace/tfile.exp: Return -1 if generate_tracefile returns
5190         false.
5191
5192 2014-08-15  Yao Qi  <yao@codesourcery.com>
5193
5194         * gdb.cp/casts.exp: Set print symbol off.
5195         * gdb.cp/class2.exp: Likewise.
5196         * gdb.cp/overload.exp: Likewise.
5197         * gdb.cp/templates.exp: Likewise.
5198
5199 2014-08-11  Doug Evans  <dje@google.com>
5200
5201         * gdb.base/print-symbol-loading.exp (test_load_core): Update.
5202         (test_load_shlib): Update.
5203
5204 2014-08-09  Yao Qi  <yao@codesourcery.com>
5205
5206         * gdb.base/display.exp: Invoke is_address_zero_readable.
5207         * gdb.guile/scm-value.exp (test_value_in_inferior): Likewise.
5208         * gdb.python/py-value.exp (test_value_in_inferior): Likewise.
5209         * gdb.base/hbreak-unmapped.exp: Return if
5210         is_address_zero_readable returns true.
5211         * gdb.base/signest.exp: Likewise.
5212         * gdb.base/signull.exp: Likewise.
5213         * gdb.base/sigbpt.exp: Likewise.
5214         * gdb.guile/scm-disasm.exp: Do the test if
5215         is_address_zero_readable returns false.
5216         * gdb.guile/scm-pretty-print.exp (run_lang_tests): Likewise.
5217         * gdb.python/py-arch.exp: Likewise.
5218         * gdb.python/py-prettyprint.exp (run_lang_tests): Likewise.
5219         * lib/gdb.exp (is_address_zero_readable): New proc.
5220
5221 2014-08-09  Yao Qi  <yao@codesourcery.com>
5222
5223         PR testsuite/13443
5224         * gdb.mi/mi-var-display.exp: Make test messages unique.
5225
5226 2014-08-04  Tom Tromey  <tromey@redhat.com>
5227
5228         * gdb.base/sss-bp-on-user-bp-2.exp: Expect output from "set debug
5229         target 0".
5230
5231 2014-08-04  Tom Tromey  <tromey@redhat.com>
5232
5233         * gdb.base/sss-bp-on-user-bp-2.exp: Match "to_resume", not
5234         "target_resume".
5235
5236 2014-08-01  Joel Brobecker  <brobecker@adacore.com>
5237
5238         * gdb.base/vla-datatypes.c (vla_factory): Add new variable
5239         inner_vla_struct_object_size.
5240         * gdb.base/vla-datatypes.exp: Adjust last test, and mark it
5241         as xfail.
5242
5243 2014-07-30  Pedro Alves  <palves@redhat.com>
5244
5245         * gdb.threads/signal-command-handle-nopass.exp (test): Add
5246         comment.
5247
5248 2014-07-29  Yao Qi  <yao@codesourcery.com>
5249
5250         PR gdb/17206
5251         * gdb.base/until-nodebug.exp: New.
5252
5253 2014-07-28  Doug Evans  <xdje42@gmail.com>
5254
5255         PR guile/17203
5256         * gdb.guile/scm-parameter.exp: Add tests for trying to create
5257         previously existing parameter, and previously ambiguously spelled
5258         parameter.
5259
5260 2014-07-28  Will Newton  <will.newton@linaro.org>
5261
5262         * gdb.base/varargs.exp: Remove KFAILs for ARM.
5263
5264 2014-07-26  Ludovic Courtès  <ludo@gnu.org>
5265             Doug Evans  <xdje42@gmail.com>
5266
5267         PR guile/17146
5268         * gdb.guile/types-module.exp: Add tests for wrong type arguments.
5269
5270 2014-07-25  Pedro Alves  <palves@redhat.com>
5271
5272         * gdb.threads/signal-command-handle-nopass.c: New file.
5273         * gdb.threads/signal-command-handle-nopass.exp: New file.
5274         * gdb.threads/signal-command-multiple-signals-pending.c: New file.
5275         * gdb.threads/signal-command-multiple-signals-pending.exp: New file.
5276         * gdb.threads/signal-delivered-right-thread.c: New file.
5277         * gdb.threads/signal-delivered-right-thread.exp: New file.
5278
5279 2014-07-25  Pedro Alves  <palves@redhat.com>
5280
5281         * gdb.base/double-prompt-target-event-error.exp
5282         (cancel_pagination_in_target_event): Remove '-notransfer <return>'
5283         match.
5284         (cancel_pagination_in_target_event): Rework double prompt
5285         detection.
5286         * gdb.base/paginate-after-ctrl-c-running.exp
5287         (test_ctrlc_while_target_running_paginates): Remove '-notransfer
5288         <return>' match.
5289         * gdb.base/paginate-bg-execution.exp
5290         (test_bg_execution_pagination_return)
5291         (test_bg_execution_pagination_cancel): Remove '-notransfer
5292         <return>' matches.
5293         * gdb.base/paginate-execution-startup.exp
5294         (test_fg_execution_pagination_return)
5295         (test_fg_execution_pagination_cancel): Remove '-notransfer
5296         <return>' matches.
5297         * gdb.base/paginate-inferior-exit.exp
5298         (test_paginate_inferior_exited): Remove '-notransfer <return>'
5299         match.
5300         * lib/gdb-utils.exp (string_to_regexp): Move here from lib/gdb.exp.
5301         * lib/gdb.exp (pagination_prompt): Run text through
5302         string_to_regexp.
5303         (gdb_test_multiple): Match $pagination_prompt instead of
5304         "<return>".
5305         (string_to_regexp): Move to lib/gdb-utils.exp.
5306
5307 2014-07-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
5308
5309         * gdb.arch/amd64-entry-value-paramref.S: New file.
5310         * gdb.arch/amd64-entry-value-paramref.cc: New file.
5311         * gdb.arch/amd64-entry-value-paramref.exp: New file.
5312         * gdb.arch/amd64-optimout-repeat.S: New file.
5313         * gdb.arch/amd64-optimout-repeat.c: New file.
5314         * gdb.arch/amd64-optimout-repeat.exp: New file.
5315
5316 2014-07-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5317
5318         PR gdb/17170
5319         * gdb.base/statistics.exp: New file.
5320
5321 2014-07-17  Doug Evans  <dje@google.com>
5322
5323         PR gdb/17170
5324         * gdb.base/maint.exp: Update testing of per-command stats.
5325
5326 2014-07-16  Pedro Alves  <palves@redhat.com>
5327
5328         * gdb.trace/tfile.c: Include unistd.h and stdint.h.
5329         (start_trace_file): Guard S_IRGRP and S_IROTH uses behind #ifdef.
5330         (tfile_write_64, tfile_write_16, tfile_write_8, tfile_write_addr)
5331         (tfile_write_buf): New functions.
5332         (add_memory_block): Rewrite using the above.
5333         (adjust_function_address): New function.
5334         (FUNCTION_ADDRESS): New macro.
5335         (write_basic_trace_file): Remove short_x local, and use
5336         tfile_write_16. Change type of func_addr local to unsigned long
5337         long.  Use FUNCTION_ADDRESS instead of handling the Thumb bit
5338         here.  Cast argument of add_memory_block to char pointer.
5339         (write_error_trace_file): Avoid alloca.  Use FUNCTION_ADDRESS.
5340         (main): Remove parameters.
5341         * gdb.trace/tfile.exp: Remove nowarnings.
5342
5343 2014-07-15  Simon Marchi  <simon.marchi@ericsson.com>
5344
5345         * gdb.base/debug-expr.exp: Test string evaluation with
5346         "debug expression" on.
5347
5348 2014-07-15  Pedro Alves  <palves@redhat.com>
5349
5350         * gdb.base/reread.exp: Use clean_restart.
5351
5352 2014-07-15  Pierre Langlois  <pierre.langlois@embecosm.com>
5353
5354         * gdb.arch/avr-flash-qualifer.c: New.
5355         * gdb.arch/avr-flash-qualifer.exp: New.
5356
5357 2014-07-14  Pedro Alves  <palves@redhat.com>
5358
5359         * gdb.base/paginate-after-ctrl-c-running.c: New file.
5360         * gdb.base/paginate-after-ctrl-c-running.exp: New file.
5361
5362 2014-07-14  Pedro Alves  <palves@redhat.com>
5363
5364         * gdb.base/double-prompt-target-event-error.c: New file.
5365         * gdb.base/double-prompt-target-event-error.exp: New file.
5366
5367 2014-07-14  Pedro Alves  <palves@redhat.com>
5368
5369         PR gdb/17072
5370         * gdb.base/paginate-inferior-exit.c: New file.
5371         * gdb.base/paginate-inferior-exit.exp: New file.
5372
5373 2014-07-14  Pedro Alves  <palves@redhat.com>
5374
5375         PR gdb/17072
5376         * gdb.base/paginate-bg-execution.c: New file.
5377         * gdb.base/paginate-bg-execution.exp: New file.
5378
5379 2014-07-14  Pedro Alves  <palves@redhat.com>
5380
5381         PR gdb/17072
5382         * gdb.base/paginate-execution-startup.c: New file.
5383         * gdb.base/paginate-execution-startup.exp: New file.
5384         * lib/gdb.exp (pagination_prompt): New global.
5385         (default_gdb_spawn): New procedure, factored out from
5386         default_gdb_spawn.
5387         (default_gdb_start): Adjust to call default_gdb_spawn.
5388         (gdb_spawn): New procedure.
5389
5390 2014-07-14  Pedro Alves  <palves@redhat.com>
5391
5392         * lib/gdb.exp (gdb_assert): New procedure.
5393         * gdb.trace/backtrace.exp (gdb_backtrace_tdp_4): Use it.
5394
5395 2014-07-14  Pedro Alves  <palves@redhat.com>
5396
5397         * gdb.base/execution-termios.c: New file.
5398         * gdb.base/execution-termios.exp: New file.
5399
5400 2014-07-14  Tom Tromey  <tromey@redhat.com>
5401
5402         * gdb.cp/vla-cxx.cc: New file.
5403         * gdb.cp/vla-cxx.exp: New file.
5404
5405 2014-07-14  Tom Tromey  <tromey@redhat.com>
5406
5407         * gdb.reverse/rerun-prec.c: New file.
5408         * gdb.reverse/rerun-prec.exp: New file.
5409
5410 2014-07-12  Maciej W. Rozycki  <macro@mips.com>
5411             Maciej W. Rozycki  <macro@codesourcery.com>
5412
5413         * lib/gdb-utils.exp: New file.
5414         * lib/gdb.exp (gdb_run_cmd): Call gdb_init_commands, replacing
5415         inline `gdb_init_command' processing.
5416         (gdb_start_cmd): Likewise.
5417         * lib/mi-support.exp (mi_run_cmd): Likewise.
5418         * README: Document `gdb_init_command' and `gdb_init_commands'.
5419
5420 2014-07-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5421
5422         Fix false FAIL running under a very long directory name.
5423         * gdb.base/argv0-symlink.exp: Add "set print repeats 10000"
5424         and "set print elements 10000".  Twice.
5425
5426 2014-07-11  Yao Qi  <yao@codesourcery.com>
5427
5428         * gdb.base/exprs.exp: "set print symbol off".
5429
5430 2014-07-11  Pedro Alves  <palves@redhat.com>
5431
5432         * gdb.threads/kill.c: New file.
5433         * gdb.threads/kill.exp: New file.
5434
5435 2014-07-10  Yao Qi  <yao@codesourcery.com>
5436
5437         * gdb.trace/tfile.c (write_basic_trace_file)
5438         [__thumb__||__thumb2__]: Clear the Thumb bit of the function
5439         address written to trace file.
5440
5441 2014-07-09  Pedro Alves  <palves@redhat.com>
5442
5443         * gdb.base/attach-wait-input.exp: New file.
5444         * gdb.base/attach-wait-input.c: New file.
5445
5446 2014-07-09  Andrew Burgess  <andrew.burgess@embecosm.com>
5447
5448         * gdb.mi/var-cmd.c (do_nested_struct_union_tests): New function
5449         setting up test structures.
5450         (main): Call new test function.
5451         * gdb.mi/mi2-var-child.exp: Create additional breakpoint in new
5452         test function, continue into test function and walk test
5453         structures.
5454
5455 2014-07-02  Yao Qi  <yao@codesourcery.com>
5456
5457         * gdb.trace/entry-values.c: Define labels 'foo_start' and
5458         'bar_start' at the beginning of functions 'foo' and 'bar'
5459         respectively.
5460         * gdb.trace/entry-values.exp: Use 'foo_start' and 'bar_start'
5461         instead of 'foo' and 'bar'.
5462
5463 2014-07-08  Markus Metzger  <markus.t.metzger@intel.com>
5464
5465         * gdb.btrace/segv.exp: New.
5466         * gdb.btrace/segv.c: New.
5467
5468 2014-07-02  Luis Machado  <lgustavo@codesourcery.com>
5469
5470         * gdb.trace/entry-values.exp: Handle powerpc-specific branch
5471         instruction.
5472
5473 2014-06-30  Mark Wielaard  <mjw@redhat.com>
5474
5475         * gdb.base/constvars.c (violent, violet, vips, virgen, vulgar,
5476         vulture, vilify, villar): New volatile array constants.
5477         (vindictive, vegetation): New const volatile array constants.
5478         * gdb.base/volatile.exp: Test volatile and const volatile array
5479         types.
5480
5481 2014-06-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
5482
5483         * gdb.base/watchpoint-reuse-slot.exp: Handle the case that the
5484         target lacks support for awatch, rwatch, or hbreak.
5485
5486 2014-06-27  Yao Qi  <yao@codesourcery.com>
5487
5488         * gdb.multi/dummy-frame-restore.exp: New.
5489         * gdb.multi/dummy-frame-restore.c: New.
5490
5491 2014-06-25  Markus Metzger  <markus.t.metzger@intel.com>
5492
5493         * gdb.btrace/gcore.exp: New.
5494
5495 2014-06-23  Pedro Alves  <palves@redhat.com>
5496
5497         * gdb.base/watchpoint-reuse-slot.c: New file.
5498         * gdb.base/watchpoint-reuse-slot.exp: New file.
5499
5500 2014-06-23  Siva Chandra Reddy  <sivachandra@google.com>
5501
5502         * gdb.python/py-xmethods.exp: Use "progspace" instead of the
5503         progspace's filename in 'info', 'enable' and 'disable' command
5504         tests.
5505
5506 2014-06-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
5507
5508         * gdb.arch/amd64-stap-special-operands.exp: Use is_lp64_target.
5509         * gdb.arch/amd64-stap-optional-prefix.exp: Likewise.
5510         * gdb.dwarf2/dw2-error.exp: Use istarget and is_lp64_target.
5511
5512 2014-06-20  Gary Benson  <gbenson@redhat.com>
5513
5514         * gdb.arch/i386-avx.exp: Fix include file location.
5515         * gdb.arch/i386-sse.exp: Likewise.
5516
5517 2014-06-19  Iain Buclaw  <ibuclaw@gdcproject.org>
5518
5519         * gdb.dlang/expression.exp: New file.
5520
5521 2014-06-19  Pedro Alves  <palves@redhat.com>
5522
5523         * gdb.threads/thread-execl.exp (do_test): New procedure, factored
5524         out from ...
5525         (top level): ... here.  Iterate running tests under different
5526         scheduler-locking settings.
5527
5528 2014-06-18  Luis Machado  <lgustavo@codesourcery.com>
5529
5530         * gdb.cp/nsalias.exp: Set type of low_pc and high_pc entries
5531         to DW_FORM_addr and use non-zero addresses.
5532
5533 2014-06-18  Siva Chandra Reddy  <sivachandra@google.com>
5534
5535         PR gdb/17017
5536         * gdb.python/py-xmethods.cc: Add global function call counters and
5537         increment them in their respective functions.  Remove "cout"
5538         statements.
5539         * gdb.python/py-xmethods.exp: Make tests check the global function
5540         call counters instead of depending on inferior IO.
5541
5542 2014-06-18  Don Breazeal  <donb@codesourcery.com>
5543
5544         * gdb.base/foll-fork.exp (default_fork_parent_follow):
5545         Deleted procedure.
5546         (explicit_fork_parent_follow): Deleted procedure.
5547         (explicit_fork_child_follow): Deleted procedure.
5548         (test_follow_fork): New procedure.
5549         (do_fork_tests): Replace calls to deleted procedures with
5550         calls to test_follow_fork and reset GDB for subsequent
5551         procedure calls.
5552
5553 2014-06-17  Yao Qi  <yao@codesourcery.com>
5554
5555         * gdb.base/wchar.exp: Set $cent to \u00A2 if "host-charset" is
5556         CP1252.
5557
5558 2014-06-17  Luis Machado  <lgustavo@codesourcery.com>
5559
5560         * gdb.mi/mi-var-rtti.cc (type_update_when_use_rtti_test):
5561         Initialize ptr and S explicitly.
5562         (skip_type_update_when_not_use_rtti_test): Likewise.
5563
5564 2014-06-16  Keith Seitz  <keiths@redhat.com>
5565
5566         PR mi/15863
5567         * gdb.mi/mi-var-cmd.exp: Add test for -var-update before
5568         the inferior is started.
5569
5570 2014-06-16  Pedro Alves  <palves@redhat.com>
5571
5572         * gdb.base/break-main-file-remove-fail.c: New file.
5573         * gdb.base/break-main-file-remove-fail.exp: New file.
5574         * gdb.base/break-unload-file.exp: Use build_executable instead of
5575         prepare_for_testing.
5576         (test_break): New parameter "initial_load".  Handle it.
5577         (top level): Add initial_load cmdline/file axis.
5578
5579 2014-06-12  Tom Tromey  <tromey@redhat.com>
5580
5581         * gdb.base/completion.exp: Don't use directory name in test.
5582
5583 2014-06-09  Gary Benson  <gbenson@redhat.com>
5584
5585         * gdb.base/sigall.c [Functions to send signals]: Reorder to
5586         separate the always-available ANSI-standard signals from the
5587         signals that require checking.
5588         (main): Likewise.
5589         * gdb.reverse/sigall-reverse.c [Functions to send signals]:
5590         Likewise.
5591         (main): Likewise.
5592
5593 2014-06-07  Keith Seitz  <keiths@redhat.com>
5594
5595         Revert:
5596         PR c++/16253
5597         * gdb.cp/var-tag.cc: New file.
5598         * gdb.cp/var-tag.exp: New file.
5599         * gdb.dwarf2/dw2-ada-ffffffff.exp: Set the language to C++.
5600         * gdb.dwarf2/dw2-anon-mptr.exp: Likewise.
5601         * gdb.dwarf2/dw2-double-set-die-type.exp: Likewise.
5602         * gdb.dwarf2/dw2-inheritance.exp: Likewise.
5603
5604 2014-06-06  Doug Evans  <xdje42@gmail.com>
5605
5606         * gdb.guile/scm-frame-args.c (foo): Tweak to work with gcc 4.6.3.
5607
5608 2014-06-06  Pedro Alves  <palves@redhat.com>
5609
5610         * gdb.base/sss-bp-on-user-bp-2.exp: Look for target_resume(step)
5611         in target debug output instead of looking at RSP packets,
5612         disabling the test on any target that uses hardware stepping.
5613         Update comments.
5614
5615 2014-06-06  Pedro Alves  <palves@redhat.com>
5616
5617         * gdb.base/break-unload-file.exp: Fix typo.
5618
5619 2014-06-06  Yao Qi  <yao@codesourcery.com>
5620
5621         * gdb.base/jit.exp (one_jit_test): Restrict the pattern
5622         from "jit_function" to "^jit_function".
5623
5624 2014-06-06  Yao Qi  <yao@codesourcery.com>
5625
5626         * gdb.base/async.c (foo): Add one statement.
5627         * gdb.base/async.exp: Get the next instruction address and
5628         match the output of "nexti" by instruction address.  Match
5629         the hex address in the output of "finish".
5630
5631 2014-06-06  Gary Benson  <gbenson@redhat.com>
5632
5633         * gdb.base/call-signals.c: Remove preprocessor conditionals
5634         for always-defined signals SIGINT, SIGILL, SIGABRT, SIGFPE,
5635         SIGSEGV and SIGTERM.
5636         * gdb.base/sigall.c: Likewise.
5637         * gdb.base/unwindonsignal.c: Likewise.
5638         * gdb.reverse/sigall-reverse.c: Likewise.
5639
5640 2014-06-06  Yao Qi  <yao@codesourcery.com>
5641
5642         * gdb.base/hbreak-unmapped.exp: Read memory at address 0.  If
5643         readable, skip the test.
5644
5645 2014-06-06  Yao Qi  <yao@codesourcery.com>
5646
5647         * gdb.threads/staticthreads.c (thread_function): Move the line
5648         setting breakpoint on forward.
5649         * gdb.threads/staticthreads.exp: Update comments.
5650
5651 2014-06-05  Ludovic Courtès  <ludo@gnu.org>
5652
5653         * gdb.guile/scm-value.exp (test_value_in_inferior): Add test
5654         "history-append! type error".
5655
5656 2014-06-05  Simon Marchi  <simon.marchi@ericsson.com>
5657
5658         * gdb.mi/mi-breakpoint-changed.exp (test_insert_delete_modify): Fix
5659         erroneous dprintf expected input.
5660
5661 2014-06-04  Doug Evans  <xdje42@gmail.com>
5662
5663         * gdb.guile/scm-generics.exp: Delete.
5664
5665 2014-06-04  Doug Evans  <xdje42@gmail.com>
5666
5667         * gdb.guile/scm-breakpoint.exp: Update.
5668         Add tests for breakpoint registration.
5669
5670 2014-06-04  Tom Tromey  <tromey@redhat.com>
5671
5672         * gdb.base/vla-datatypes.exp: Add tests for VLA-in-structure and
5673         VLA-in-union.
5674         * gdb.base/vla-datatypes.c (vla_factory): Add vla_struct,
5675         inner_vla_struct, vla_union types.  Initialize objects of those
5676         types and compute their sizes.
5677
5678 2014-06-04  Nathan Sidwell  <nathan@codesourcery.com>
5679             Hui Zhu  <hui@codesourcery.com>
5680
5681         * gdb.base/fileio.exp: Add test for shell not available as well as
5682         available.
5683         * gdb.base/fileio.c (test_system): Check for shell twice.
5684
5685 2014-06-04  Yao Qi  <yao@codesourcery.com>
5686
5687         * gdb.base/auto-connect-native-target.exp: Remove redundant
5688         space from the regexp pattern.
5689
5690 2014-06-04  Yao Qi  <yao@codesourcery.com>
5691
5692         * gdb.base/default.exp: Replace "child" with "native" in
5693         regexp pattern.
5694
5695 2014-06-03  Siva Chandra Reddy  <sivachandra@google.com>
5696
5697         * gdb.python/py-xmethods.cc: New testcase to test xmethods.
5698         * gdb.python/py-xmethods.exp: New tests to test xmethods.
5699         * gdb.python/py-xmethods.py: Python script supporting the
5700         new testcase and tests.
5701
5702 2014-06-03  Joel Brobecker  <brobecker@adacore.com>
5703             Pedro Alves  <palves@redhat.com>
5704
5705         PR breakpoints/17000
5706         * gdb.base/sss-bp-on-user-bp.exp: Remove kfail.
5707         * gdb.base/sss-bp-on-user-bp-2.exp: Remove kfail.
5708
5709 2014-06-03  Brad Mouring  <bmouring@ni.com>  (tiny patch)
5710
5711         * gdb.base/subst.exp: Add tests to verify partial path matching
5712         output.
5713
5714 2014-06-03  Pedro Alves  <palves@redhat.com>
5715
5716         * gdb.base/sss-bp-on-user-bp-2.exp: Skip if testing with a remote
5717         target that doesn't use software single-stepping.
5718
5719 2014-06-03  Pedro Alves  <palves@redhat.com>
5720
5721         PR breakpoints/17000
5722         * gdb.base/sss-bp-on-user-bp-2.c: New file.
5723         * gdb.base/sss-bp-on-user-bp-2.exp: New file.
5724
5725 2014-06-02  Doug Evans  <xdje42@gmail.com>
5726
5727         * gdb.guile/scm-parameter.exp: New file.
5728
5729 2014-06-02  Doug Evans  <xdje42@gmail.com>
5730
5731         * gdb.guile/scm-cmd.c: New file.
5732         * gdb.guile/scm-cmd.exp: New file.
5733
5734 2014-06-02  Doug Evans  <xdje42@gmail.com>
5735
5736         * gdb.guile/scm-pretty-print.exp: Add tests for objfile and progspace
5737         pretty-printer lookup.
5738         * gdb.guile/scm-pretty-print.scm (pp_s-printer): New function.
5739         (make-pp_s-printer): Call it.
5740         (make-pretty-printer-from-dict): New function.
5741         (lookup-pretty-printer-maker-from-dict): New function.
5742         (*pretty-printer*): Simplify.
5743         (make-objfile-pp_s-printer): New function.
5744         (install-objfile-pretty-printers!): New function.
5745         (make-progspace-pp_s-printer): New function.
5746         (install-progspace-pretty-printers!): New function.
5747         * gdb.guile/scm-progspace.c: New file.
5748         * gdb.guile/scm-progspace.exp: New file.
5749
5750 2014-06-02  Pedro Alves  <palves@redhat.com>
5751
5752         * gdb.base/dprintf-bp-same-addr.c: New file.
5753         * gdb.base/dprintf-bp-same-addr.exp: New file.
5754
5755 2014-06-02  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
5756
5757         * gdb.arch/powerpc-power.exp: Add power8 instructions to the testcase.
5758         * gdb.arch/powerpc-power.s: Likewise.
5759
5760 2014-06-02  Joel Brobecker  <brobecker@adacore.com>
5761
5762         * gdb.base/completion.exp: Remove code aimed at restoring TIMEOUT.
5763
5764 2014-06-01  Yao Qi  <yao@codesourcery.com>
5765
5766         * gdb.base/watchpoint.exp (test_watch_location): Check null
5767         pointer can be dereferenced.  If not, do the test, otherwise
5768         skip it.
5769
5770 2014-05-30  Andrew Burgess  <aburgess@broadcom.com>
5771
5772         * gdb.arch/amd64-invalid-stack-middle.exp: Update expected
5773         results.
5774         * gdb.arch/amd64-invalid-stack-top.exp: Likewise.
5775
5776 2014-05-30  Andrew Burgess  <aburgess@broadcom.com>
5777
5778         * gdb.arch/amd64-invalid-stack-middle.S: New file.
5779         * gdb.arch/amd64-invalid-stack-middle.c: New file.
5780         * gdb.arch/amd64-invalid-stack-middle.exp: New file.
5781         * gdb.arch/amd64-invalid-stack-top.c: New file.
5782         * gdb.arch/amd64-invalid-stack-top.exp: New file.
5783
5784 2014-05-30  Pedro Alves  <palves@redhat.com>
5785
5786         PR breakpoints/17000
5787         * gdb.base/sss-bp-on-user-bp.c: New file.
5788         * gdb.base/sss-bp-on-user-bp.exp: New file.
5789
5790 2014-05-30  David Blaikie  <dblaikie@gmail.com>
5791
5792         * gdb.opt/inline-break.c: Fix clang compatibility by specifying
5793         gnu_inline semantics via attribute.
5794         * gdb.opt/inline-break.exp: Remove -std=c89 now that the test
5795         source explicitly specifies the required semantics.
5796
5797 2014-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
5798
5799         * gdb.reverse/sigall-reverse.exp: Fix a typo.
5800
5801 2014-05-29  Pedro Alves  <palves@redhat.com>
5802             Tom Tromey  <tromey@redhat.com>
5803
5804         * gdb.base/async-shell.exp: Don't enable target-async.
5805         * gdb.base/async.exp
5806         * gdb.base/corefile.exp (corefile_test_attach): Remove 'async'
5807         parameter.  Adjust.
5808         (top level): Don't test with "target-async".
5809         * gdb.base/dprintf-non-stop.exp: Don't enable target-async.
5810         * gdb.base/gdb-sigterm.exp: Don't test with "target-async".
5811         * gdb.base/inferior-died.exp: Don't enable target-async.
5812         * gdb.base/interrupt-noterm.exp: Likewise.
5813         * gdb.mi/mi-async.exp: Use "mi-async" instead of "target-async".
5814         * gdb.mi/mi-nonstop-exit.exp: Likewise.
5815         * gdb.mi/mi-nonstop.exp: Likewise.
5816         * gdb.mi/mi-ns-stale-regcache.exp: Likewise.
5817         * gdb.mi/mi-nsintrall.exp: Likewise.
5818         * gdb.mi/mi-nsmoribund.exp: Likewise.
5819         * gdb.mi/mi-nsthrexec.exp: Likewise.
5820         * gdb.mi/mi-watch-nonstop.exp: Likewise.
5821         * gdb.multi/watchpoint-multi.exp: Adjust comment.
5822         * gdb.python/py-evsignal.exp: Don't enable target-async.
5823         * gdb.python/py-evthreads.exp: Likewise.
5824         * gdb.python/py-prompt.exp: Likewise.
5825         * gdb.reverse/break-precsave.exp: Don't test with "target-async".
5826         * gdb.server/solib-list.exp: Don't enable target-async.
5827         * gdb.threads/thread-specific-bp.exp: Likewise.
5828         * lib/mi-support.exp: Adjust to use mi-async.
5829
5830 2014-05-29  Pedro Alves  <palves@redhat.com>
5831
5832         PR gdb/13860
5833         * gdb.mi/mi-cli.exp: Always expect "end-stepping-range" stop
5834         reason, even in sync mode.
5835
5836 2014-05-29  Pedro Alves  <palves@redhat.com>
5837             Hui Zhu  <hui@codesourcery.com>
5838
5839         PR PR15693
5840         * gdb.mi/mi-condbreak-call-thr-state-mt.c: New file.
5841         * gdb.mi/mi-condbreak-call-thr-state-st.c: New file.
5842         * gdb.mi/mi-condbreak-call-thr-state.c: New file.
5843         * gdb.mi/mi-condbreak-call-thr-state.exp: New file.
5844
5845 2014-05-28  Joel Brobecker  <brobecker@adacore.com>
5846
5847         * config/monitor.exp (gdb_target_monitor): Replace use of
5848         "set remotebaud" by "set serial baud".
5849
5850 2014-05-26  Andy Wingo  <wingo@igalia.com>
5851
5852         * gdb.guile/scm-breakpoint.exp:
5853         * gdb.guile/scm-gsmob.exp: Update to use plain old object
5854         properties instead of gdb-object-properties.
5855
5856 2014-05-26  Yao Qi  <yao@codesourcery.com>
5857
5858         * gdb.server/no-thread-db.exp: Specify source file name
5859         explicitly when setting a breakpoint.
5860
5861 2014-05-23  Markus Metzger  <markus.t.metzger@intel.com>
5862
5863         * gdb.btrace/vdso.c: New.
5864         * gdb.btrace/vdso.exp: New.
5865
5866 2014-05-23  Markus Metzger  <markus.t.metzger@intel.com>
5867
5868         * gdb.base/gcore.exp (capture_command_output): Move ...
5869         * lib/gdb.exp (capture_command_output): ... here.
5870
5871 2014-05-23  Markus Metzger  <markus.t.metzger@intel.com>
5872
5873         * gdb.btrace/data.exp: Test memory access during btrace replay.
5874
5875 2014-05-22  Simon Marchi  <simon.marchi@ericsson.com>
5876
5877         * lib/mi-support.exp (mi_run_cmd_full): Add comments.
5878
5879 2014-05-21  Pedro Alves  <palves@redhat.com>
5880
5881         PR gdb/13860
5882         * gdb.mi/mi-cli.exp (line_callee4_next_step): New global.
5883         (top level): Test that output related to execution commands is
5884         sent to the console with CLI commands, but not with MI commands.
5885         Test that breakpoint events are always mirrored to the console.
5886         Also expect the new source line to be output after a "next" in
5887         async mode too.  Make it a pass/fail test.
5888         * gdb.mi/mi-solib.exp: Test that the CLI solib event note is
5889         output.
5890         * lib/mi-support.exp (mi_gdb_expect_cli_output): New procedure.
5891
5892 2014-05-21  Pedro Alves  <palves@redhat.com>
5893
5894         * gdb.base/list.exp (build_pattern, test_list): New procedures.
5895         Use them to test variations of "list" after reaching a breakpoint.
5896         * gdb.mi/mi-cli.exp (line_main_callme_2): New global.
5897         Test "list" with listsize 10 after reaching a breakpoint.
5898         * gdb.python/python.exp (decode_line current location line
5899         number): Adjust expected line number.
5900
5901 2014-05-21  Simon Marchi  <simon.marchi@ericsson.com>
5902
5903         * lib/mi-support.exp (mi_run_cmd_full): Revert to original
5904         behavior for $args, pass it directly to "run".
5905
5906 2014-05-21  Maciej W. Rozycki  <macro@codesourcery.com>
5907
5908         * lib/gdb.exp (default_gdb_init): Bump `match_max' up from
5909         30000 to 65536.
5910
5911 2014-05-21  Pedro Alves  <palves@redhat.com>
5912
5913         * boards/gdbserver-base.exp (GDBFLAGS): Set to "set
5914         auto-connect-native-target off".
5915         * gdb.base/auto-connect-native-target.c: New file.
5916         * gdb.base/auto-connect-native-target.exp: New file.
5917
5918 2014-05-21  Pedro Alves  <palves@redhat.com>
5919
5920         * gdb.base/default.exp: Test "target native" instead of "target
5921         child".
5922
5923 2014-05-21  Mark Wielaard  <mjw@redhat.com>
5924
5925         * gdb.cp/var-tag.exp (do_global_tests): Handle underlying type.
5926
5927 2014-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5928
5929         Fix TLS access for -static -pthread.
5930         * gdb.threads/staticthreads.c <HAVE_TLS> (tlsvar): New.
5931         <HAVE_TLS> (thread_function, main): Initialize it.
5932         * gdb.threads/staticthreads.exp: Try gdb_compile_pthreads for $have_tls.
5933         Add clean_restart.
5934         <$have_tls != "">: Check TLSVAR.
5935
5936 2014-05-21  Pedro Alves  <palves@redhat.com>
5937
5938         * gdb.base/dcache-line-read-error.c: New.
5939         * gdb.base/dcache-line-read-error.exp: New.
5940
5941 2014-05-20  Pedro Alves  <palves@redhat.com>
5942
5943         * gdb.base/compare-sections.c: New file.
5944         * gdb.base/compare-sections.exp: New file.
5945
5946 2014-05-20  Pedro Alves  <palves@redhat.com>
5947
5948         * gdb.base/break-idempotent.c: New file.
5949         * gdb.base/break-idempotent.exp: New file.
5950
5951 2014-05-20  Markus Metzger  <markus.t.metzger@intel.com>
5952
5953         * gdb.btrace/nohist.exp: New.
5954
5955 2014-05-20  Yao Qi  <yao@codesourcery.com>
5956
5957         * lib/gdb.exp (gdb_init): Set timeout if test file is under
5958         gdb.reverse directory and gdb_reverse_timeout exists in board
5959         setting.
5960         * README: Document gdb_reverse_timeout.
5961
5962 2014-05-20  Yao Qi  <yao@codesourcery.com>
5963
5964         * lib/gdb.exp (default_gdb_init): Rename argument 'args' by
5965         'test_file_name'.  Treat args as a string instead of a list.
5966         (gdb_init): Rename argument 'args' by 'test_file_name'.
5967
5968 2014-05-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
5969
5970         * gdb.arch/powerpc-power.exp: New file.
5971         * gdb.arch/powerpc-power.s: New file.
5972
5973 2014-05-16  Doug Evans  <dje@google.com>
5974
5975         * gdb.base/Makefile.in (EXECUTABLES): Add completion.
5976         * gdb.base/completion.exp: Check that all expected files exist
5977         before doing file completion.
5978
5979 2014-05-16  Doug Evans  <dje@google.com>
5980
5981         * gdb.base/catch-syscall.exp (test_catch_syscall_fail_nodatadir):
5982         Update.
5983         (do_syscall_tests_without_xml): Update.
5984
5985 2014-05-16  Pedro Alves  <palves@redhat.com>
5986
5987         * lib/mi-support.exp (mi_expect_stop): On timeout, say "timeout"
5988         instead of "unknown output after running".
5989
5990 2014-05-16  Yao Qi  <yao@codesourcery.com>
5991
5992         * gdb.dwarf2/dw2-filename.exp: Copy file1.txt to host.  Remove
5993         file1.txt from host at the end.
5994         * gdb.dwarf2/dw2-anonymous-func.exp: Likewise.
5995
5996 2014-05-15  Doug Evans  <dje@google.com>
5997
5998         * gdb.dwarf2/fission-reread.S: Remove directory from .dwo file path.
5999         * gdb.dwarf2/fission-reread.exp: Set debug-file-directory before
6000         loading file.  Add test for TU lookup.
6001
6002 2014-05-15  Simon Marchi  <simon.marchi@ericsson.com>
6003
6004         * lib/mi-support.exp (mi_run_cmd_full): Set arguments by
6005         calling "-exec-arguments" or "set args" before running the
6006         inferior.
6007
6008 2014-05-15  Simon Marchi  <simon.marchi@ericsson.com>
6009
6010         * lib/mi-support.exp (mi_expect_stop): Expect message for
6011         inferiors that exit with non-zero exit code.
6012
6013 2014-05-14  Yao Qi  <yao@codesourcery.com>
6014
6015         * gdb.mi/mi-file.exp (test_file_list_exec_source_file): Don't
6016         match absolute path on remote host.
6017         (test_file_list_exec_source_files): Remove "/" from the
6018         pattern.
6019
6020 2014-05-14  Yao Qi  <yao@codesourcery.com>
6021
6022         * boards/local-remote-host-notty.exp (${board}_file): New
6023         proc.
6024
6025 2014-05-07  Kyle McMartin  <kyle@redhat.com>
6026
6027         Pushed by Joel Brobecker  <brobecker@adacore.com>.
6028         * gdb.arch/aarch64-atomic-inst.c: New file.
6029         * gdb.arch/aarch64-atomic-inst.exp: New file.
6030
6031 2014-05-07  Yao Qi  <yao@codesourcery.com>
6032
6033         * gdb.dwarf2/dwzbuildid.exp: Match output "No symbol "the_int"
6034         in current context" too.
6035
6036 2014-05-05  Keith Seitz  <keiths@redhat.com>
6037
6038         * gdb.linespec/ls-dollar.exp: Add test for linespec
6039         file:convenience_variable.
6040
6041 2014-05-05  Yao Qi  <yao@codesourcery.com>
6042
6043         * gdb.trace/unavailable.exp (gdb_collect_args_test): Save
6044         traceframes into tfile and ctf trace files.  Read data from
6045         trace file and test collected data.
6046         (gdb_collect_locals_test): Likewise.
6047         (gdb_unavailable_registers_test): Likewise.
6048         (gdb_unavailable_floats): Likewise.
6049         (gdb_collect_globals_test): Likewise.
6050         (top-level): Append "ctf" to trace_file_targets if GDB
6051         supports.
6052
6053 2014-05-05  Yao Qi  <yao@codesourcery.com>
6054
6055         * gdb.trace/unavailable.exp (gdb_collect_args_test): Move some
6056         code to ...
6057         (gdb_collect_args_test_1): ... it.  New proc.
6058         (gdb_collect_locals_test): Move some code to ...
6059         (gdb_collect_locals_test_1): ... it.  New proc.
6060         (gdb_unavailable_registers_test): Move some code to ...
6061         (gdb_unavailable_registers_test_1): ... it.  New proc.
6062         (gdb_unavailable_floats): Move some code to ...
6063         (gdb_unavailable_floats_1): ... it.  New proc.
6064
6065 2014-05-02  Sergio Durigan Junior  <sergiodj@redhat.com>
6066
6067         * gdb.arch/amd64-stap-optional-prefix.S (main): Add several
6068         probes to test for bitness recognition.
6069         * gdb.arch/amd64-stap-optional-prefix.exp
6070         (test_probe_value_without_reg): New procedure.
6071         Add code to test for different kinds of bitness.
6072
6073 2014-05-02  Sergio Durigan Junior  <sergiodj@redhat.com>
6074
6075         PR breakpoints/16889
6076         * gdb.arch/amd64-stap-optional-prefix.S: New file.
6077         * gdb.arch/amd64-stap-optional-prefix.exp: Likewise.
6078
6079 2014-05-01  Pedro Alves  <palves@redhat.com>
6080
6081         * lib/gdb.exp (gdb_load): Extend comment.  Skip calling
6082         gdb_file_cmd if no file is specified.
6083         * boards/native-extended-gdbserver.exp (gdb_load): Use the
6084         last_loaded_file to set the remote exec-file.
6085
6086 2014-05-01  Pedro Alves  <palves@redhat.com>
6087
6088         * boards/local-remote-host.exp: New file.
6089
6090 2014-05-01  Pedro Alves  <palves@redhat.com>
6091
6092         * boards/local-remote-host.exp: Rename to ...
6093         * boards/local-remote-host-notty.exp: ... this.
6094
6095 2014-04-28  Joel Brobecker  <brobecker@adacore.com>
6096
6097         * gdb.ada/dyn_arrayidx: New testcase.
6098
6099 2014-04-26  Yao Qi  <yao@codesourcery.com>
6100
6101         * gdb.dwarf2/dwz.exp: Compile main.c to object.  Restart GDB
6102         and compute the length of function main.  Save it in
6103         $main_length.
6104         (Dwarf::assemble): Use $main_length instead of hard-coded 10.
6105         (top-level): Use gdb_compile to compile objects into
6106         executable and restart GDB.  Remove invocation to
6107         prepare_for_testing.
6108
6109 2014-04-25  Simon Marchi  <simon.marchi@ericsson.com>
6110             Pedro Alves  <palves@redhat.com>
6111
6112         PR server/16255
6113         * gdb.multi/multi-attach.c: New file.
6114         * gdb.multi/multi-attach.exp: New file.
6115
6116 2014-04-25  Pedro Alves  <palves@redhat.com>
6117
6118         * gdb.base/cond-eval-mode.exp (warning): Move trailing \r\n to
6119         user.
6120         (top level): Test that "set remote conditional-breakpoints-packet
6121         off" works as intended.
6122         * gdb.base/dprintf.exp: Test that "set remote
6123         breakpoint-commands-packet off" works as intended.
6124         * gdb.trace/change-loc.exp (tracepoint_install_in_trace_disabled):
6125         New function.
6126         (top level): Call it.
6127         * gdb.trace/ftrace.exp (test_fast_tracepoints): Test that "set
6128         remote fast-tracepoints-packet off" works as intended.
6129         * gdb.trace/qtro.exp (gdb_is_target_remote): Moved ...
6130         * lib/gdb.exp (gdb_is_target_remote): ... here.
6131
6132 2014-04-24  David Blaikie  <dblaikie@gmail.com>
6133
6134         * gdb.base/catch-syscall.c: Make unreferenced statics non-static to
6135         ensure clang would not discard them.
6136         * gdb.base/gdbvars.c: Ditto.
6137         * gdb.base/memattr.c: Ditto.
6138         * gdb.base/whatis.c: Ditto.
6139         * gdb.python/py-prettyprint.c: Ditto.
6140         * gdb.trace/actions.c: Ditto.
6141         * gdb.cp/ptype-cv-cp.cc: Mark unused global const int as used to
6142         ensure clang would not discard it.
6143
6144 2014-04-24  David Blaikie  <dblaikie@gmail.com>
6145
6146         * gdb.stabs/gdb11479.c (tag_dummy_enum): introduce a variable to cause
6147         clang to emit the full definition of type required by the test
6148         * gdb.stabs/gdb11479.exp (do_test): correct a typo in a test message
6149
6150 2014-04-24  David Blaikie  <dblaikie@gmail.com>
6151
6152         * gdb.cp/pr10728-x.cc (main::x): Return by value instead of pointer to
6153         coax Clang into emitting the definition of the type.
6154         * gdb.cp/pr10728-x.h (y): Ditto.
6155         * gdb.cp/pr10728-y.cc (y): Ditto.
6156
6157 2014-04-24  David Blaikie  <dblaikie@gmail.com>
6158
6159         * gdb.base/label.exp: XFAIL label related tests under Clang.
6160         * gdb.cp/cplabel.exp: Ditto.
6161         * gdb.linespec/ls-errs.exp: Refactor tests to execute directly and XFAIL
6162         under Clang those using labels.
6163
6164 2014-04-25  Yao Qi  <yao@codesourcery.com>
6165
6166         * gdb.dwarf2/dwz.exp (Dwarf::assemble): Remove unused
6167         double_label.
6168         * gdb.dwarf2/dwzbuildid.exp (Dwarf::assemble): Remove
6169         partial_label and double_label.
6170
6171 2014-04-24  David Blaikie  <dblaikie@gmail.com>
6172
6173         * gdb.python/lib-types.exp: Fix test and xfail under gcc due to gcc/55641.
6174
6175 2014-04-24  David Blaikie  <dblaikie@gmail.com>
6176
6177         * gdb.cp/cpexprs.cc: Move braces to the same line as the start
6178         of the function to work across GCC and Clang.
6179         * gdb.cp/cpexprs.exp: Account for GCC/Clang difference in vtable
6180         pointer types (const void ** const V void **).
6181
6182 2014-04-24  Michael Sturm  <michael.sturm@mintel.com>
6183             Walfred Tedeschi  <walfred.tedeschi@intel.com>
6184
6185         * Makefile.in (EXECUTABLES): Added i386-avx512.
6186         * gdb.arch/i386-avx512.c: New file.
6187         * gdb.arch/i386-avx512.exp: Likewise.
6188
6189 2014-04-23  Keith Seitz  <keiths@redhat.com>
6190
6191         * lib/mi-support.exp (mi_list_breakpoints): Delete.
6192         (mi_make_breakpoint_table): New procedure.
6193         (mi_create_breakpoint): Use mi_make_breakpoint
6194         and return the result.
6195         (mi_make_breakpoint): New procedure.
6196         (mi_build_kv_pairs): New procedure.
6197
6198         * gdb.mi/mi-break.exp: Remove unused globals,
6199         update mi_create_breakpoint usage, and use mi_make_breakpoint_table.
6200         All callers updated.
6201         * gdb.mi/mi-dprintf.exp: Use variable to track command
6202         number.
6203         Update all callers of mi_create_breakpoint and use
6204         mi_make_breakpoint_table.
6205         Remove any unused global variables.
6206         * gdb.mi/mi-nonstop.exp: Likewise.
6207         * gdb.mi/mi-nsintrall.exp: Likewise.
6208         * gdb.mi/mi-nsmoribund.exp: Likewise.
6209         * gdb.mi/mi-nsthrexec.exp: Likewise.
6210         * gdb.mi/mi-reverse.exp: Likewise.
6211         * gdb.mi/mi-simplerun.exp: Likewise.
6212         * gdb.mi/mi-stepn.exp: Likewise.
6213         * gdb.mi/mi-syn-frame.exp: Likewise.
6214         * gdb.mi/mi-until.exp: Likewise.
6215         * gdb.mi/mi-var-cp.exp: Likewise.
6216         * gdb.mi/mi-var-display.exp: Likewise.
6217         * gdb.mi/mi2-amd64-entry-value.exp: Likewise.
6218         * gdb.mi/mi2-var-child.exp: Likewise.
6219         * gdb.mi/mi-vla-c99.exp: Likewise.
6220         * lib/mi-support.exp: Likewise.
6221
6222         From Ian Lance Taylor  <iant@cygnus.com>:
6223         * lib/gdb.exp (parse_args): New procedure.
6224
6225 2014-04-23  Pedro Alves  <palves@redhat.com>
6226
6227         * gdb.base/break-unload-file.c: New file.
6228         * gdb.base/break-unload-file.exp: New file.
6229         * gdb.base/sym-file-lib.c (baz): New function.
6230         * gdb.base/sym-file-loader.c (struct segment) <mapped_size>: New
6231         field.
6232         (load): Store the segment's mapped size.
6233         (unload): New function.
6234         (unload_shlib): New function.
6235         * gdb.base/sym-file-loader.h (unload_shlib): New declaration.
6236         * gdb.base/sym-file-main.c (main): Unload, and reload the library,
6237         set a breakpoint at baz, and call it.
6238         * gdb.base/sym-file.exp: New tests for stale breakpoint
6239         instructions.
6240
6241 2014-04-23  Pedro Alves  <palves@redhat.com>
6242
6243         * gdb.base/hbreak-in-shr-unsupported-shr.c: New file.
6244         * gdb.base/hbreak-in-shr-unsupported.c: New file.
6245         * gdb.base/hbreak-in-shr-unsupported.exp: New file.
6246         * gdb.base/hbreak-unmapped.c: New file.
6247         * gdb.base/hbreak-unmapped.exp: New file.
6248         * gdb.trace/qtro.exp (gdb_is_target_remote): Move ...
6249         * lib/gdb.exp (gdb_is_target_remote): ... here.
6250
6251 2014-04-22  Pedro Alves  <palves@redhat.com>
6252
6253         * gdb.base/consecutive-step-over.c: New file.
6254         * gdb.base/consecutive-step-over.exp: New file.
6255
6256 2014-04-22  Pedro Alves  <palves@redhat.com>
6257
6258         * lib/gdb.exp (gdb_continue_to_breakpoint): Use gdb_test_multiple
6259         instead of send_gdb/gdb_expect.
6260
6261 2014-04-22  Yao Qi  <yao@codesourcery.com>
6262
6263         * lib/trace-support.exp (generate_tracefile): New procedure.
6264         * gdb.trace/tfile.exp: Skip the test if generate_tracefile
6265         return 0.
6266         * gdb.trace/mi-traceframe-changed.exp: Invoke test_tfind_tfile
6267         if generate_tracefile returns 1.
6268
6269 2014-04-18  Tom Tromey  <palves@redhat.com>
6270             Pedro alves  <tromey@redhat.com>
6271
6272         PR backtrace/15558
6273         * gdb.opt/inline-bt.exp: Test backtracing from an inline function
6274         with a backtrace limit.
6275         * gdb.python/py-frame-inline.exp: Test running to an inline
6276         function with a backtrace limit, and printing the newest frame.
6277         * gdb.python/py-frame-inline.c (main): Call f.
6278
6279 2014-04-17  Marcus Shawcroft  <marcus.shawcroft@arm.com>
6280
6281         * gdb.java/jnpe.exp: Drop srcdir from untested path.
6282
6283 2014-04-17  Marcus Shawcroft  <marcus.shawcroft@arm.com>
6284
6285         * lib/gdb.exp (gdb_compile_pthreads, gdb_compile_objc):
6286         Drop prefix from unsupported source file path.
6287
6288 2014-04-17  Yao Qi  <yao@codesourcery.com>
6289
6290         * lib/gdb.exp (with_target_charset): New proc.
6291         * gdb.base/printcmds.exp (test_print_all_chars): Wrap tests with
6292         with_target_charset.
6293         (test_print_strings): Likewise.
6294         (test_repeat_bytes): Likewise.
6295         * gdb.base/setvar.exp: Set target-charset to ASCII temporarily
6296         for some tests.
6297
6298 2014-04-16  Keith Seitz  <keiths@redhat.com>
6299
6300         PR gdb/15827
6301         * gdb.dwarf2/corrupt.c: New file.
6302         * gdb.dwarf2/corrupt.exp: New file.
6303
6304 2014-04-16  Keith Seitz  <keiths@redhat.com>
6305
6306         PR c++/16597
6307         * gdb.cp/namelessclass.cc: New file.
6308         * gdb.cp/namelessclass.exp: New file.
6309         * gdb.cp/namelessclass.S: New file.
6310
6311 2014-04-16  Doug Evans  <dje@google.com>
6312
6313         * lib/gdbserver-support.exp (gdbserver_default_get_remote_address):
6314         Add comment.
6315         (gdbserver_default_get_comm_port): New function.
6316         (gdbserver_start): Check if board file provided
6317         "gdbserver,get_comm_port" and use it if so.
6318         * boards/native-stdio-gdbserver.exp (sockethost): Set to "".
6319         (gdb,socketport): Set to "stdio".
6320         (gdbserver,get_comm_port): Set to ${board}_get_comm_port.
6321         (stdio_gdbserver_template): Delete.
6322         (${board}_get_remote_address): Update.
6323         (${board}_build_remote_cmd): Delete.
6324         (${board}_get_comm_port): New function.
6325         (${board}_spawn): Update.
6326         * boards/remote-stdio-gdbserver.exp (${board}_build_remote_cmd):
6327         Delete.
6328         (${board}_get_remote_address): Update.
6329         (${board}_get_comm_port): New function.
6330
6331 2014-04-16  Andrew Burgess  <aburgess@broadcom.com>
6332
6333         * gdb.base/memattr.exp: Improve regexps to handle memory regions
6334         appearing in any order.
6335
6336 2014-04-15  Doug Evans  <dje@google.com>
6337
6338         * gdb.gdb/selftest.exp (do_steps_and_nexts): Don't reference
6339         uninitialized value of "description".
6340
6341 2014-04-15  Keith Seitz  <keiths@redhat.com>
6342
6343         * gdb.mi/mi-simplerun.exp (test_breakpoints_creation_and_listing):
6344         Remove unused globals.
6345         (test_running_the_program): Likewise.
6346         (test_controlled_execution): Likewise.
6347         (test_controlling_breakpoints): Likewise.
6348         (test_program_termination): Likewise.
6349
6350 2014-04-15  Keith Seitz  <keiths@redhat.com>
6351
6352         * gdb.mi/mi-break.exp (test_tbreak_creation_and_listing): Remove
6353         unused globals.
6354         (test_rbreak_creation_and_listing): Likewise.
6355         (test_ignore_count): Likewise.
6356         (test_error): Likewise.
6357
6358 2014-04-15  Pedro Alves  <palves@redhat.com>
6359
6360         * gdb.base/sym-file-loader.h: Move inclusion of <inttypes.h>,
6361         <ansidecl.h>, <elf/common.h> and <elf/external.h> to
6362         sym-file-loader.c.
6363         (Elf_External_Phdr, Elf_External_Ehdr, Elf_External_Shdr)
6364         (Elf_External_Sym, Elf_Addr, GET, GETADDR, struct segment): Move
6365         to sym-file-loader.c.
6366         (struct library): Forward declare.
6367         (load_shlib, lookup_function): Change prototypes.
6368         (find_shstrtab, find_strtab, find_shdr, find_symtab)
6369         (translate_offset): Remove declarations.
6370         (get_text_addr): New declaration.
6371         * gdb.base/sym-file-loader.c: Move inclusion of <inttypes.h>,
6372         <ansidecl.h>, <elf/common.h> and <elf/external.h> here from
6373         sym-file-loader.h.
6374         (Elf_External_Phdr, Elf_External_Ehdr, Elf_External_Shdr)
6375         (Elf_External_Sym, Elf_Addr, GET, GETADDR, struct segment): Move
6376         here from sym-file-loader.h.
6377         (struct library): New structure.
6378         (load_shlib, lookup_function): Change prototypes and adjust to
6379         work with a struct library.
6380         (find_shstrtab, find_strtab, find_shdr, find_symtab)
6381         (translate_offset): Make static.
6382         (get_text_addr): New function.
6383         * gdb.base/sym-file-main.c (main): Adjust to new loader interface.
6384
6385 2014-04-15  Pedro Alves  <palves@redhat.com>
6386
6387         * gdb.base/sym-file-loader.c: Fix typo.  SELF_LINK, not SELK_LINK.
6388
6389 2014-04-15  Pedro Alves  <palves@redhat.com>
6390
6391         * gdb.base/sym-file-loader.c: Include <limits.h>.
6392         (SELF_LINK): New define.
6393         (get_origin): New function.
6394         (load_shlib): Use it.
6395         * gdb.base/sym-file.exp: Don't early return if the target is
6396         remote.  Use runto_main, and issue fail is that fails.  Use
6397         gdb_load_shlibs.
6398         (shlib_name): Delete.
6399         (lib_so, lib_syms, lib_dlopen): New globals.  Use them throughout.
6400
6401 2014-04-15  Pedro Alves <palves@redhat.com>
6402
6403         * gdb.base/sym-file.exp: Remove regex characters from test
6404         message.  Don't refer to breakpoint numbers in test messages.
6405
6406 2014-04-14  Keith Seitz  <keiths@redhat.com>
6407
6408         PR c++/16253
6409         * gdb.cp/var-tag.cc: New file.
6410         * gdb.cp/var-tag.exp: New file.
6411         * gdb.dwarf2/dw2-ada-ffffffff.exp: Set the language to C++.
6412         * gdb.dwarf2/dw2-anon-mptr.exp: Likewise.
6413         * gdb.dwarf2/dw2-double-set-die-type.exp: Likewise.
6414         * gdb.dwarf2/dw2-inheritance.exp: Likewise.
6415
6416 2014-04-14  Tom Tromey  <tromey@redhat.com>
6417
6418         * gdb.cp/classes.exp (test_enums): Handle underlying type.
6419         * gdb.dwarf2/enum-type.exp: Add test for enum with underlying
6420         type.
6421         * gdb.cp/enum-class.exp: New file.
6422         * gdb.cp/enum-class.cc: New file.
6423
6424 2014-04-14  Tom Tromey  <tromey@redhat.com>
6425
6426         * gdb.dwarf2/enum-type.exp: New file.
6427
6428 2014-04-14  Sanimir Agovic  <sanimir.agovic@intel.com>
6429
6430         * gdb.mi/mi-vla-c99.exp: New file.
6431         * gdb.mi/vla.c: New file.
6432
6433 2014-04-14  Sanimir Agovic  <sanimir.agovic@intel.com>
6434
6435         * gdb.base/vla-datatypes.c: New file.
6436         * gdb.base/vla-datatypes.exp: New file.
6437
6438 2014-04-14  Sanimir Agovic  <sanimir.agovic@intel.com>
6439
6440         * gdb.base/vla-ptr.c: New file.
6441         * gdb.base/vla-ptr.exp: New file.
6442
6443 2014-04-14  Sanimir Agovic  <sanimir.agovic@intel.com>
6444
6445         * gdb.dwarf2/count.exp: New file.
6446
6447 2014-04-14  Sanimir Agovic  <sanimir.agovic@intel.com>
6448
6449         * gdb.base/vla-sideeffect.c: New file.
6450         * gdb.base/vla-sideeffect.exp: New file.
6451
6452 2014-04-14  David Blaikie <dblaikie@gmail.com>
6453
6454         * gdb.mi/non-stop.c: Add return value for non-void function return
6455         statement.
6456         * gdb.threads/staticthreads.c: Ditto.
6457
6458 2014-04-12  Siva Chandra Reddy  <sivachandra@google.com>
6459             Doug Evans  <xdje42@gmail.com>
6460
6461         * gdb.guile/scm-value.c: Improve test case.
6462         * gdb.guile/scm-value.exp: Add new test.
6463
6464 2014-04-11  David Blaikie  <dblaikie@gmail.com>
6465
6466         * gdb.opt/inline-break.exp: Explicitly specify -std=gnu89 to
6467         override Clang's default.
6468
6469 2014-04-11  Joel Brobecker  <brobecker@adacore.com>
6470
6471         Revert the following changes (regressions):
6472
6473         * gdb.base/vla-sideeffect.c: New file.
6474         * gdb.base/vla-sideeffect.exp: New file.
6475
6476         * gdb.dwarf2/count.exp: New file.
6477
6478         * gdb.base/vla-multi.c: New file.
6479         * gdb.base/vla-multi.exp: New file.
6480
6481         * gdb.base/vla-ptr.c: New file.
6482         * gdb.base/vla-ptr.exp: New file.
6483
6484         * gdb.base/vla-datatypes.c: New file.
6485         * gdb.base/vla-datatypes.exp: New file.
6486
6487         * gdb.mi/mi-vla-c99.exp: New file.
6488         * gdb.mi/vla.c: New file.
6489
6490 2014-04-11  Keith Seitz  <keiths@redhat.com>
6491
6492         PR c++/16675
6493         * gdb.cp/cpsizeof.exp: New file.
6494         * gdb.cp/cpsizeof.cc: New file.
6495
6496 2014-04-11  Sanimir Agovic  <sanimir.agovic@intel.com>
6497
6498         * gdb.mi/mi-vla-c99.exp: New file.
6499         * gdb.mi/vla.c: New file.
6500
6501 2014-04-11  Sanimir Agovic  <sanimir.agovic@intel.com>
6502
6503         * gdb.base/vla-datatypes.c: New file.
6504         * gdb.base/vla-datatypes.exp: New file.
6505
6506 2014-04-11  Sanimir Agovic  <sanimir.agovic@intel.com>
6507
6508         * gdb.base/vla-ptr.c: New file.
6509         * gdb.base/vla-ptr.exp: New file.
6510
6511 2014-04-11  Sanimir Agovic  <sanimir.agovic@intel.com>
6512
6513         * gdb.base/vla-multi.c: New file.
6514         * gdb.base/vla-multi.exp: New file.
6515
6516 2014-04-11  Sanimir Agovic  <sanimir.agovic@intel.com>
6517
6518         * gdb.dwarf2/count.exp: New file.
6519
6520 2014-04-11  Sanimir Agovic  <sanimir.agovic@intel.com>
6521
6522         * gdb.base/vla-sideeffect.c: New file.
6523         * gdb.base/vla-sideeffect.exp: New file.
6524
6525 2014-04-11  Yao Qi  <yao@codesourcery.com>
6526
6527         * gdb.base/completion.exp: Check file exists before running tests
6528         on file completion.
6529
6530 2014-04-10  Pedro Alves  <palves@redhat.com>
6531
6532         * gdb.base/cond-eval-mode.c: New file.
6533         * gdb.base/cond-eval-mode.exp: Use standard_testfile.  Adjust
6534         prepare_for_testing to build the new file.  Check result of
6535         runto_main.
6536         (test_break, test_watch): New procedures.
6537         (top level): Use them.
6538
6539 2014-04-08  Pierre Muller  <muller@sourceware.org>
6540
6541         * gdb.base/printcmds.exp (test_artificial_arrays): Disable
6542         Ctrl-V use for mingw hosts.
6543
6544 2014-04-07  Siva Chandra Reddy  <sivachandra@google.com>
6545
6546         * gdb.python/py-value.c: Improve test case.
6547         * gdb.python/py-value.exp: Add new test.
6548
6549 2014-04-07  David Blaikie  <dblaikie@gmail.com>
6550
6551         * lib/compiler.c: Identify the clang compiler.
6552         * lib/compiler.cc: Ditto.
6553
6554 2014-04-03  Yao Qi  <yao@codesourcery.com>
6555
6556         * gdb.base/setshow.exp: Invoke string_to_regexp to HOME and PWD.
6557
6558 2014-04-01  Anton Blanchard  <anton@samba.org>
6559
6560         * gdb.arch/ppc64-atomic-inst.exp: Use untested.  Make test
6561         messages unique.
6562
6563 2014-04-01  Anton Blanchard  <anton@samba.org>
6564
6565         * gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile,
6566         prepare_for_testing.
6567
6568 2014-04-01  Anton Blanchard  <anton@samba.org>
6569
6570         * gdb.arch/ppc64-atomic-inst.c: Remove.
6571         * gdb.arch/ppc64-atomic-inst.S: New file.
6572         * gdb.arch/ppc64-atomic-inst.exp: Adapt for asm based testcase.
6573
6574 2014-03-31  Doug Evans  <dje@google.com>
6575
6576         * gdb.base/print-symbol-loading-lib.c: New file.
6577         * gdb.base/print-symbol-loading-main.c: New file.
6578         * gdb.base/print-symbol-loading.exp: New file.
6579
6580 2014-03-31  Yao Qi  <yao@codesourcery.com>
6581
6582         * gdb.base/source-dir.exp: Allow ';' as a directory separator.
6583
6584 2014-03-28  Joel Brobecker  <brobecker@adacore.com>
6585
6586         * gdb.ada/mi_dyn_arr: New testcase.
6587
6588 2014-03-27  Doug Evans  <dje@google.com>
6589
6590         * gdb.dwarf2/dw2-abs-hi-pc.exp: Build tests with "nodebug".
6591
6592 2014-03-27  Yao Qi  <yao@codesourcery.com>
6593
6594         * lib/gdb.exp (can_single_step_to_signal_handler): Return zero
6595         if target is nios2-*-*.
6596
6597 2014-03-26  Yao Qi  <yao@codesourcery.com>
6598
6599         * lib/gdb.exp (readline_is_used): New proc.
6600         * gdb.base/completion.exp: Move tests on command complete up.
6601         Skip the rest of tests if readline is not used.
6602         * gdb.ada/complete.exp: Skp the test if readline is not
6603         used.
6604         * gdb.base/filesym.exp: Likewise.
6605         * gdb.base/macscp.exp: Likewise.
6606         * gdb.base/readline-ask.exp: Likewise.
6607         * gdb.base/readline.exp: Likewise.
6608         * gdb.python/py-cmd.exp: Likewise.
6609         * gdb.trace/tfile.exp: Likewise.
6610
6611 2014-03-26  Yao Qi  <yao@codesourcery.com>
6612
6613         * gdb.base/macscp.exp: Fix code format issues.
6614
6615 2014-03-25  Ulrich Weigand  <uweigand@de.ibm.com>
6616
6617         * gdb.asm/asm-source.exp: Handle powerpc64le-* targets.
6618         * gdb.asm/powerpc64le.inc: New file.
6619
6620 2014-03-25  Pedro Alves  <palves@redhat.com>
6621             Doug Evans  <dje@google.com>
6622
6623         * gdb.base/source-execution.c: New file.
6624         * gdb.base/source-execution.exp: New file.
6625         * gdb.base/source-execution.gdb: New file.
6626
6627 2014-03-24  Doug Evans  <dje@google.com>
6628
6629         * gdb.linespec/macro-relative.exp: Mark the test as unsupported if
6630         using fission.
6631
6632 2014-03-24  Hui Zhu  <hui@codesourcery.com>
6633             Pedro Alves  <palves@redhat.com>
6634
6635         PR breakpoints/16101
6636         * gdb.base/dprintf.exp: Use unsupported rather than changing the
6637         test pass/fail messages.  Detect missing support for dprintf when
6638         breakpoints are actually inserted.
6639         * gdb.base/mi-dprintf.exp: Detect missing support for dprintf when
6640         breakpoints are actually inserted.
6641         * lib/mi-support.exp (mi_run_cmd_full): Return -1 if continue
6642         fails.
6643
6644 2014-03-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
6645
6646         * gdb.base/gdb-sigterm.exp (do_test): Remove "set debug lin-lwp 1".
6647
6648 2014-03-22  Doug Evans  <xdje42@gmail.com>
6649
6650         * gdb.python/python.exp (python not supported): Verify multi-line
6651         python command issues an error.
6652         * gdb.guile/guile.exp (guile not supported): Verify multi-line
6653         guile command issues an error.
6654
6655 2014-03-21  Maciej W. Rozycki  <macro@codesourcery.com>
6656
6657         * gdb.threads/thread-specific.exp: Handle the lack of usable
6658         $this_breakpoint and $this_thread.
6659
6660 2014-03-21  Hui Zhu  <hui@codesourcery.com>
6661
6662         * gdb.base/attach.exp (do_command_attach_tests): New.
6663
6664 2014-03-20  Tom Tromey  <tromey@redhat.com>
6665             Pedro Alves  <palves@redhat.com>
6666
6667         PR cli/15718
6668         * gdb.base/condbreak-call-false.c: New file.
6669         * gdb.base/condbreak-call-false.exp: New file.
6670
6671 2014-03-20  Pedro Alves  <palves@redhat.com>
6672
6673         * gdb.threads/signal-while-stepping-over-bp-other-thread.c (pid):
6674         Delete.
6675         (block_signals, unblock_signals): Delete.
6676         (child_function_2, main): Remove references to deleted variable
6677         and functions.
6678
6679 2014-03-20  Pedro Alves  <palves@redhat.com>
6680
6681         * gdb.threads/signal-while-stepping-over-bp-other-thread.c (main):
6682         Use pthread_kill to signal thread 2.
6683         * gdb.threads/signal-while-stepping-over-bp-other-thread.exp:
6684         Adjust to make the test send itself a signal rather than using the
6685         host's "kill" command.
6686
6687 2014-03-20  Pedro Alves  <palves@redhat.com>
6688
6689         * gdb.threads/multiple-step-overs.c: New file.
6690         * gdb.threads/multiple-step-overs.exp: New file.
6691         * gdb.threads/signal-while-stepping-over-bp-other-thread.exp:
6692         Adjust expected infrun debug output.
6693
6694 2014-03-20  Pedro Alves  <palves@redhat.com>
6695
6696         * gdb.threads/step-over-trips-on-watchpoint.c: New file.
6697         * gdb.threads/step-over-trips-on-watchpoint.exp: New file.
6698
6699 2014-03-20  Pedro Alves  <palves@redhat.com>
6700
6701         PR breakpoints/7143
6702         * gdb.base/watchpoint.exp: Mention bugzilla bug number instead of
6703         old gnats gdb/38.  Remove kfail.  Adjust to use gdb_test instead
6704         of gdb_test_multiple.
6705         * gdb.cp/annota2.exp: Remove kfail for gdb/38.
6706         * gdb.cp/annota3.exp: Remove kfail for gdb/38.
6707
6708 2014-03-20  Pedro Alves  <palves@redhat.com>
6709
6710         * gdb.threads/step-over-lands-on-breakpoint.c: New file.
6711         * gdb.threads/step-over-lands-on-breakpoint.exp: New file.
6712
6713 2014-03-19  Pedro Alves  <palves@redhat.com>
6714
6715         * gdb.base/async.exp: Remove early return.
6716
6717 2014-03-19  Pedro Alves  <palves@redhat.com>
6718
6719         * gdb.base/async.exp (step& tests): Pass explicit test messages.
6720
6721 2014-03-19  Pedro Alves  <palves@redhat.com>
6722
6723         * gdb.base/async.exp (test_background): Expect \r\n after
6724         "completed." in the fail pattern.
6725
6726 2014-03-19  Pedro Alves  <palves@redhat.com>
6727
6728         * gdb.base/async.exp (test_background): New procedure.
6729         Use it for all background execution command tests.
6730
6731 2014-03-19  Pedro Alves  <palves@redhat.com>
6732
6733         * gdb.base/async.exp: Use prepare_for_testing.
6734
6735 2014-03-19  Pedro Alves  <palves@redhat.com>
6736
6737         * gdb.base/async.c (foo): Make 'x' volatile.  Write to it twice in
6738         the same line.
6739
6740 2014-03-19  Pedro Alves  <palves@redhat.com>
6741
6742         * gdb.base/async.c (main): Add "jump here" and "until here" line
6743         marker comments.
6744         * gdb.base/async.exp (jump_here): New global.
6745         (jump& test): Use it.
6746         (until_here): New global.
6747         (until& test): Use it.
6748
6749 2014-03-19  Pedro Alves  <palves@redhat.com>
6750
6751         * gdb.base/async.exp: Don't frob gdb_protocol.
6752
6753 2014-03-18  Doug Evans  <xdje42@gmail.com>
6754
6755         * gdb.base/async.exp: Whitespace fixes.  Turn on target-async.
6756         Fix spelling of exec-done-display.
6757
6758 2014-03-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6759
6760         PR gdb/15358
6761         * gdb.base/gdb-sigterm.c: New file.
6762         * gdb.base/gdb-sigterm.exp: New file.
6763
6764 2014-03-18  Pedro Alves  <palves@redhat.com>
6765
6766         PR gdb/13860
6767         * gdb.mi/mi-solib.exp: Remove gdb/13860 kfail.
6768         * lib/mi-support.exp (mi_expect_stop): Add special handling for
6769         solib-event.
6770
6771 2014-03-17  Joel Brobecker  <brobecker@adacore.com>
6772
6773         * gdb.ada/pckd_arr_ren: New testcase.
6774
6775 2014-03-13  Doug Evans  <xdje42@gmail.com>
6776
6777         PR guile/16612
6778         * gdb.guile/scm-value.ep (test_value_after_death): Do a garbage
6779         collect after discarding symbols.
6780
6781 2014-03-13  Ludovic Courtès  <ludo@gnu.org>
6782             Doug Evans  <xdje42@gmail.com>
6783
6784         * gdb.guile/scm-value.exp (test_value_in_inferior): Verify value added
6785         to history survives a gc.
6786
6787 2014-03-13  Pedro Alves  <palves@redhat.com>
6788
6789         * gdb.base/default.exp: Don't test "target procfs".
6790
6791 2014-03-13  Pedro Alves  <palves@redhat.com>
6792
6793         * gdb.base/default.exp: Update "target child" and "target procfs"
6794         tests to not expect "Unix".
6795
6796 2014-03-12  Tom Tromey  <tromey@redhat.com>
6797
6798         * gdb.base/corefile.exp (corefile_test_run, corefile_test_attach):
6799         New procs.  Add target-async tests.
6800         * gdb.reverse/break-precsave.exp (precsave_tests): New proc.
6801         Add target-async tests.
6802
6803 2014-03-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6804
6805         * gdb.dwarf2/dw2-ifort-parameter.c (func): Define labels
6806         'func_start' and 'func_end' for the beginning and end of the
6807         function code, respectively.
6808         * gdb.dwarf2/dw2-ifort-parameter.exp: Use 'func_start' and
6809         'func_end' instead of 'func' and 'main'.
6810
6811 2014-03-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6812
6813         * gdb.dwarf2/dw2-ifort-parameter-debug.S: Remove.
6814         * gdb.dwarf2/dw2-ifort-parameter.exp: Use Dwarf::assemble to
6815         generate the debug info assembler source.
6816
6817 2014-03-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6818
6819         * gdb.dwarf2/arr-stride.exp: Exploit 'prepare_for_testing'.
6820         * gdb.dwarf2/arr-subrange.exp: Likewise.
6821         * gdb.dwarf2/dwz.exp: Likewise.
6822         * gdb.dwarf2/method-ptr.exp: Likewise.
6823         * gdb.dwarf2/missing-sig-type.exp: Likewise.
6824         * gdb.dwarf2/subrange.exp: Likewise.
6825         * gdb.dwarf2/implptrconst.exp: Exploit 'build_executable'.
6826         * gdb.dwarf2/implptrpiece.exp: Likewise.
6827         * gdb.dwarf2/nostaticblock.exp: Likewise.
6828
6829 2014-03-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6830
6831         * lib/gdb.exp (build_executable_from_specs): Don't prepend source
6832         directory to absolute path name arguments.
6833
6834 2014-03-10  Joel Brobecker  <brobecker@adacore.com>
6835
6836         * gdb.ada/tagged_access: New testcase.
6837
6838 2014-03-07  Markus Metzger  <markus.t.metzger@intel.com>
6839
6840         * gdb.btrace/data.exp: Update expected output.
6841
6842 2014-03-06  Yao Qi  <yao@codesourcery.com>
6843
6844         * gdb.trace/pr16508.exp: New file.
6845
6846 2014-03-05  Pedro Alves  <palves@redhat.com>
6847
6848         PR gdb/16575
6849         * gdb.base/breakpoint-shadow.exp (compare_disassembly): New
6850         procedure.
6851         (top level): Adjust to use it.  Add tests that exercise breakpoint
6852         interaction with the code-cache.
6853
6854 2014-02-26  Ludovic Courtès  <ludo@gnu.org>
6855
6856         * gdb.guile/scm-value.exp (test_value_in_inferior): Add
6857         test for 'history-append!'.
6858
6859 2014-02-26  Joel Brobecker  <brobecker@adacore.com>
6860
6861         * gdb.dwarf2/dw2-abs-hi-pc-hello-dbg.S: New file.
6862         * gdb.dwarf2/dw2-abs-hi-pc-hello.c: New file.
6863         * gdb.dwarf2/dw2-abs-hi-pc-world-dbg.S: New file.
6864         * gdb.dwarf2/dw2-abs-hi-pc-world.c: New file.
6865         * gdb.dwarf2/dw2-abs-hi-pc.c: New file.
6866         * gdb.dwarf2/dw2-abs-hi-pc.exp: New file.
6867
6868 2014-02-26  Joel Brobecker  <brobecker@adacore.com>
6869
6870         * testsuite/gdb.python/py-pp-re-notag.c: New file.
6871         * testsuite/gdb.python/py-pp-re-notag.ex: New file.
6872         * testsuite/gdb.python/py-pp-re-notag.p: New file.
6873
6874 2014-02-26  Joel Brobecker  <brobecker@adacore.com>
6875
6876         * gdb.dwarf2/arr-subrange.c, gdb.dwarf2/arr-subrange.exp: New files.
6877
6878 2014-02-26  Joel Brobecker  <brobecker@adacore.com>
6879
6880         * gdb.dwarf2/arr-stride.c: New file.
6881         * gdb.dwarf2/arr-stride.exp: New file.
6882
6883 2014-02-26  Pedro Alves  <palves@redhat.com>
6884
6885         * gdb.ada/tasks.exp: Set a task-specific breakpoint at break_me
6886         that won't ever trigger.  Make sure that GDB reports the correct
6887         breakpoint that caused the stop.
6888
6889 2014-02-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
6890
6891         PR gdb/16626
6892         * gdb.base/auto-load-script: New file.
6893         * gdb.base/auto-load.c: New file.
6894         * gdb.base/auto-load.exp: New file.
6895
6896         PR gdb/16626
6897         * gdb.base/auto-load.exp: Fix out-of-srctree run.
6898
6899 2014-02-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
6900
6901         Fix dw2-icycle.exp -fsanitize=address GDB crash.
6902         * gdb.dwarf2/dw2-icycle.S: Remove all DW_AT_sibling.
6903
6904 2014-02-24  Doug Evans  <dje@google.com>
6905
6906         * lib/gdb.exp (run_on_host): Log error output if program fails.
6907
6908 2014-02-21  Pedro Alves  <palves@redhat.com>
6909
6910         * gdb.threads/step-after-sr-lock.c: Rename to ...
6911         * gdb.threads/signal-while-stepping-over-bp-other-thread.c: ... this.
6912         * gdb.threads/step-after-sr-lock.exp: Rename to ...
6913         * gdb.threads/signal-while-stepping-over-bp-other-thread.exp:
6914         ... this.
6915
6916 2014-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
6917
6918         PR tdep/16397
6919         * gdb.arch/amd64-stap-special-operands.exp: New file.
6920         * gdb.arch/amd64-stap-three-arg-disp.S: Likewise.
6921         * gdb.arch/amd64-stap-three-arg-disp.c: Likewise.
6922         * gdb.arch/amd64-stap-triplet.S: Likewise.
6923         * gdb.arch/amd64-stap-triplet.c: Likewise.
6924
6925 2014-02-20  Joel Brobecker  <brobecker@adacore.com>
6926
6927         * gdb.dwarf2/dw2-icycle.S: Remove second and third parameters
6928         in .section pseudo-op.
6929
6930 2014-02-20  lin zuojian  <manjian2006@gmail.com>
6931             Joel Brobecker  <brobecker@adacore.com>
6932             Doug Evans  <xdje42@gmail.com>
6933
6934         PR symtab/16581
6935         * gdb.dwarf2/dw2-icycle.S: New file.
6936         * gdb.dwarf2/dw2-icycle.c: New file.
6937         * gdb.dwarf2/dw2-icycle.exp: New file.
6938
6939 2014-02-19  Siva Chandra Reddy  <sivachandra@google.com>
6940
6941         * gdb.python/py-value-cc.cc: Improve test case to enable testing
6942         operations on gdb.Value objects.
6943         * gdb.python/py-value-cc.exp: Add new test to test operations on
6944         gdb.Value objects.
6945
6946 2014-02-18  Doug Evans  <dje@google.com>
6947
6948         * Makefile.in (TESTS): New variable.
6949         (expanded_tests, expanded_tests_or_none): New variables
6950         (check-single): Pass $(expanded_tests_or_none) to runtest.
6951         (check-parallel): Only run tests in $(TESTS) if non-empty.
6952         (check/no-matching-tests-found): New rule.
6953         * README: Document TESTS makefile variable.
6954
6955 2014-02-18  Doug Evans  <dje@google.com>
6956
6957         * Makefile.in (check-parallel): rm -rf outputs temp.
6958
6959 2014-02-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
6960
6961         Fix "ERROR: no fileid for" in the testsuite.
6962         * lib/gdb.exp (gdb_finish): Check gdb_spawn_id.
6963
6964 2014-02-12  Doug Evans  <dje@google.com>
6965
6966         * gdb.dwarf2/Makefile.in (EXECUTABLES): Add dwp-symlink.
6967         (MISCELLANEOUS): New variable.
6968         (clean): rm -rf $(MISCELLANEOUS).
6969         * gdb.dwarf2/dwp-symlink.exp: Test the case where the executable and
6970         dwp live in the same directory as symlinks, with each symlink pointed
6971         to a differently named file in a different directory.
6972
6973 2014-02-11  Doug Evans  <dje@google.com>
6974
6975         * gdb.dwarf2/dwp-symlink.exp: Rewrite to use remote_* commands instead
6976         of Tcl file commands.
6977
6978 2014-02-10  Mark Kettenis  <kettenis@gnu.org>
6979
6980         * gdb.threads/step-after-sr-lock.exp: Avoid executing
6981         "kill -SIGUSR1 -1".
6982
6983 2014-02-10  Joel Brobecker  <brobecker@adacore.com>
6984
6985         * gdb.ada/tick_length_array_enum_idx: New testcase.
6986
6987 2014-02-10  Doug Evans  <xdje42@gmail.com>
6988
6989         * configure.ac (AC_OUTPUT): Add gdb.guile.
6990         * configure: Regenerate.
6991         * lib/gdb-guile.exp: New file.
6992         * lib/gdb.exp (get_target_charset): New function.
6993         * gdb.base/help.exp: Update expected output from "apropos apropos".
6994         * gdb.guile/Makefile.in: New file.
6995         * gdb.guile/guile.exp: New file.
6996         * gdb.guile/scm-arch.c: New file.
6997         * gdb.guile/scm-arch.exp: New file.
6998         * gdb.guile/scm-block.c: New file.
6999         * gdb.guile/scm-block.exp: New file.
7000         * gdb.guile/scm-breakpoint.c: New file.
7001         * gdb.guile/scm-breakpoint.exp: New file.
7002         * gdb.guile/scm-disasm.c: New file.
7003         * gdb.guile/scm-disasm.exp: New file.
7004         * gdb.guile/scm-equal.c: New file.
7005         * gdb.guile/scm-equal.exp: New file.
7006         * gdb.guile/scm-error.exp: New file.
7007         * gdb.guile/scm-error.scm: New file.
7008         * gdb.guile/scm-frame-args.c: New file.
7009         * gdb.guile/scm-frame-args.exp: New file.
7010         * gdb.guile/scm-frame-args.scm: New file.
7011         * gdb.guile/scm-frame-inline.c: New file.
7012         * gdb.guile/scm-frame-inline.exp: New file.
7013         * gdb.guile/scm-frame.c: New file.
7014         * gdb.guile/scm-frame.exp: New file.
7015         * gdb.guile/scm-generics.exp: New file.
7016         * gdb.guile/scm-gsmob.exp: New file.
7017         * gdb.guile/scm-iterator.c: New file.
7018         * gdb.guile/scm-iterator.exp: New file.
7019         * gdb.guile/scm-math.c: New file.
7020         * gdb.guile/scm-math.exp: New file.
7021         * gdb.guile/scm-objfile-script-gdb.in: New file.
7022         * gdb.guile/scm-objfile-script.c: New file.
7023         * gdb.guile/scm-objfile-script.exp: New file.
7024         * gdb.guile/scm-objfile.c: New file.
7025         * gdb.guile/scm-objfile.exp: New file.
7026         * gdb.guile/scm-ports.exp: New file.
7027         * gdb.guile/scm-pretty-print.c: New file.
7028         * gdb.guile/scm-pretty-print.exp: New file.
7029         * gdb.guile/scm-pretty-print.scm: New file.
7030         * gdb.guile/scm-section-script.c: New file.
7031         * gdb.guile/scm-section-script.exp: New file.
7032         * gdb.guile/scm-section-script.scm: New file.
7033         * gdb.guile/scm-symbol.c: New file.
7034         * gdb.guile/scm-symbol.exp: New file.
7035         * gdb.guile/scm-symtab-2.c: New file.
7036         * gdb.guile/scm-symtab.c: New file.
7037         * gdb.guile/scm-symtab.exp: New file.
7038         * gdb.guile/scm-type.c: New file.
7039         * gdb.guile/scm-type.exp: New file.
7040         * gdb.guile/scm-value-cc.cc: New file.
7041         * gdb.guile/scm-value-cc.exp: New file.
7042         * gdb.guile/scm-value.c: New file.
7043         * gdb.guile/scm-value.exp: New file.
7044         * gdb.guile/source2.scm: New file.
7045         * gdb.guile/types-module.cc: New file.
7046         * gdb.guile/types-module.exp: New file.
7047
7048 2014-02-10  Yao Qi  <yao@codesourcery.com>
7049
7050         PR testsuite/16543
7051         * configure.ac: Append gdb.gdb/Makefile in AC_OUTPUT.
7052         * configure: Regenerated.
7053         * Makefile.in: New file.
7054
7055 2014-02-08  Andreas Schwab  <schwab@linux-m68k.org>
7056
7057         * gdb.python/py-framefilter.exp: Fix typo.
7058
7059 2014-02-08  Yao Qi  <yao@codesourcery.com>
7060
7061         * gdb.mi/mi-breakpoint-changed.exp (test_insert_delete_modify): Test
7062         that no =breakpoint-modified is emitted when breakpoints are
7063         modified through MI commands.
7064
7065 2014-02-07  Pedro Alves  <pedro@codesourcery.com>
7066             Pedro Alves  <palves@redhat.com>
7067
7068         * gdb.threads/step-after-sr-lock.c: New file.
7069         * gdb.threads/step-after-sr-lock.exp: New file.
7070
7071 2014-02-07  Pedro Alves  <palves@redhat.com>
7072
7073         * gdb.threads/stepi-random-signal.exp: Set SIGCHLD to print.
7074
7075 2014-02-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
7076
7077         Fix i386-sse-stack-align.exp regression since GDB_PARALLEL.
7078         * gdb.arch/i386-sse-stack-align.exp: Use standard_output_file.
7079
7080 2014-02-06  Doug Evans  <xdje42@gmail.com>
7081
7082         * gdb.python/py-breakpoint.exp (test_bkpt_eval_funcs): Update expected
7083         output.
7084
7085         * gdb.gdb/python-interrupts.exp: New file.
7086
7087 2014-02-05  Yao Qi  <yao@codesourcery.com>
7088
7089         * gdb.trace/report.exp (use_collected_data): Test the output
7090         of "info threads" and "info inferiors".
7091
7092 2014-02-05  Yao Qi  <yao@codesourcery.com>
7093
7094         Revert this patch:
7095
7096         2013-05-24  Yao Qi  <yao@codesourcery.com>
7097
7098         * gdb.trace/tfile.exp: Test inferior and thread.
7099
7100 2014-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
7101
7102         * gdb.base/sigbpt.exp: Do not use "*" when setting breakpoint
7103         on a function.
7104         * gdb.base/step-bt.c: Call hello via function pointer to make
7105         sure its first instruction is executed on powerpc64le-linux.
7106
7107 2014-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
7108
7109         * gdb.arch/powerpc-d128-regs.exp: Enable on powerpc64*-*.
7110
7111 2014-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
7112
7113         * gdb.arch/vsx-regs.exp: Check target endianness.  Provide variants
7114         of the test patterns for use on little-endian systems.
7115
7116 2014-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
7117
7118         * gdb.arch/altivec-regs.exp: Use gdb_test_multiple for endian test.
7119         (decimal_vector): Fix for little-endian.
7120
7121 2014-01-29  Jose E. Marchesi  <jose.marchesi@oracle.com>
7122
7123         * gdb.arch/sparc-sysstep.exp: New file.
7124         * gdb.arch/sparc-sysstep.c: Likewise.
7125
7126         * gdb.arch/Makefile.in (EXECUTABLES): Add sparc-sysstep.
7127
7128 2014-01-28  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
7129
7130         * gdb.base/info-shared.exp: Expect leading `.' on ppc64's symbols.
7131
7132 2014-01-23  Tom Tromey  <tromey@redhat.com>
7133
7134         * gdb.ada/array_char_idx: New testcase.
7135
7136 2014-01-23  Tom Tromey  <tromey@redhat.com>
7137
7138         PR python/16487:
7139         * gdb.python/py-framefilter.exp: Add test using "Error" filter.
7140         * gdb.python/py-framefilter.py (ErrorInName, ErrorFilter): New
7141         classes.
7142
7143 2014-01-23  Tom Tromey  <tromey@redhat.com>
7144
7145         PR python/16491:
7146         * gdb.python/py-framefilter.py (Reverse_Function.function): Read a
7147         string from an inferior frame.
7148         * gdb.python/py-framefilter-mi.exp: Update.
7149
7150 2014-01-22  Doug Evans  <dje@google.com>
7151
7152         * gdb.server/server-mon.exp: Add tests for "set debug-format".
7153
7154 2014-01-22  Andreas Arnez  <arnez@vnet.linux.ibm.com>
7155
7156         * gdb.base/catch-syscall.exp: Activate test on s390*-linux.
7157
7158 2014-01-22  Andreas Arnez  <arnez@vnet.linux.ibm.com>
7159
7160         * gdb.trace/entry-values.exp: Remove excess space character from
7161         regex patterns.  Handle s390 call instruction.
7162
7163 2014-01-22  Andreas Arnez  <arnez@vnet.linux.ibm.com>
7164
7165         * gdb.dwarf2/dw2-dir-file-name.c (FUNC): Insert alignment and
7166         define "*_start" label.  Make "name" static.
7167         * gdb.dwarf2/dw2-dir-file-name.exp: Replace references to
7168         ${name} by references to ${name}_start.
7169
7170 2014-01-22  Andreas Arnez  <arnez@vnet.linux.ibm.com>
7171
7172         * gdb.base/info-macros.exp: Remove "debug" from the compile
7173         options.
7174
7175 2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
7176
7177         * gdb.dlang/demangle.exp: New file.
7178
7179 2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
7180
7181         * gdb.dlang/primitive-types.exp: New file.
7182
7183 2014-01-17  Iain Buclaw  <ibuclaw@gdcproject.org>
7184
7185         * configure.ac: Create gdb.dlang/Makefile.
7186         * configure: Regenerate.
7187         * Makefile.in (ALL_SUBDIRS): Add gdb.dlang.
7188         * gdb.dlang/Makefile.in: New file.
7189         * lib/d-support.exp: New file.
7190         * lib/gdb.exp (skip_d_tests): New proc.
7191
7192 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7193
7194         * gdb.btrace/delta.exp: Check reverse stepi.
7195         * gdb.btrace/tailcall.exp: Update.  Add stepping tests.
7196         * gdb.btrace/finish.exp: New.
7197         * gdb.btrace/next.exp: New.
7198         * gdb.btrace/nexti.exp: New.
7199         * gdb.btrace/record_goto.c: Add comments.
7200         * gdb.btrace/step.exp: New.
7201         * gdb.btrace/stepi.exp: New.
7202         * gdb.btrace/multi-thread-step.c: New.
7203         * gdb.btrace/multi-thread-step.exp: New.
7204         * gdb.btrace/rn-dl-bind.c: New.
7205         * gdb.btrace/rn-dl-bind.exp: New.
7206         * gdb.btrace/data.c: New.
7207         * gdb.btrace/data.exp: New.
7208         * gdb.btrace/Makefile.in (EXECUTABLES): Add new.
7209
7210 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7211
7212         * gdb.btrace/Makefile.in (EXECUTABLES): Add delta.
7213         * gdb.btrace/exception.exp: Update.
7214         * gdb.btrace/instruction_history.exp: Update.
7215         * gdb.btrace/record_goto.exp: Update.
7216         * gdb.btrace/tailcall.exp: Update.
7217         * gdb.btrace/unknown_functions.exp: Update.
7218         * gdb.btrace/delta.exp: New.
7219
7220 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7221
7222         * gdb.btrace/record_goto.exp: Add backtrace test.
7223         * gdb.btrace/tailcall.exp: Add backtrace test.
7224
7225 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7226
7227         * gdb.btrace/Makefile.in (EXECUTABLES): Add record_goto.
7228         * gdb.btrace/record_goto.c: New.
7229         * gdb.btrace/record_goto.exp: New.
7230         * gdb.btrace/x86-record_goto.S: New.
7231
7232 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7233
7234         * gdb.btrace/function_call_history.exp: Update tests.
7235         * gdb.btrace/instruction_history.exp: Update tests.
7236
7237 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7238
7239         * gdb.btrace/function_call_history.exp: Fix expected field
7240         order for "record function-call-history".
7241         Add new tests for "record function-call-history /c".
7242         * gdb.btrace/exception.cc: New.
7243         * gdb.btrace/exception.exp: New.
7244         * gdb.btrace/tailcall.exp: New.
7245         * gdb.btrace/x86-tailcall.S: New.
7246         * gdb.btrace/x86-tailcall.c: New.
7247         * gdb.btrace/unknown_functions.c: New.
7248         * gdb.btrace/unknown_functions.exp: New.
7249         * gdb.btrace/Makefile.in (EXECUTABLES): Add new.
7250
7251 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7252
7253         * gdb.btrace/instruction_history.exp: Update.
7254         * gdb.btrace/function_call_history.exp: Update.
7255
7256 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7257
7258         * gdb.btrace/function_call_history.exp: Fix expected function
7259         trace.
7260         * gdb.btrace/instruction_history.exp: Initialize traced.
7261         Remove traced_functions.
7262
7263 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7264
7265         * gdb.btrace/function_call_history.exp: Update
7266         * gdb.btrace/instruction_history.exp: Update.
7267
7268 2014-01-16  Markus Metzger  <markus.t.metzger@intel.com>
7269
7270         * gdb.btrace/enable.exp: Update expected text.
7271
7272 2014-01-16  Omair Javaid  <Omair.Javaid@linaro.org>
7273
7274         * gdb.dwarf2/dw2-dos-drive.S: Increase text section size to 4
7275         bytes.
7276
7277 2014-01-15  Maciej W. Rozycki  <macro@codesourcery.com>
7278
7279         * gdb.base/float.exp: Handle "aarch64*-*-*" targets.
7280
7281 2014-01-15  Omair Javaid  <omair.javaid@linaro.org>
7282
7283         * lib/gdb.exp (supports_process_record): Return true for
7284         arm*-linux*.  (supports_reverse): Likewise.
7285
7286 2014-01-13  Siva Chandra Reddy  <sivachandra@google.com>
7287
7288         PR python/15464
7289         PR python/16113
7290         * gdb.python/py-type.c: Enhance test case.
7291         * gdb.python/py-value-cc.cc: Likewise
7292         * gdb.python/py-type.exp: Add new tests.
7293         * gdb.python/py-value-cc.exp: Likewise
7294
7295 2014-01-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7296             Pedro Alves <palves@redhat.com>
7297
7298         * gdb.dwarf2/dw2-dir-file-name.c (FUNC): Remove "*_start" symbol.
7299         Make "name" extern.
7300         * gdb.dwarf2/dw2-dir-file-name.exp (out_cu, out_line): Replace
7301         references to ${name}_start by references to ${name}.
7302
7303 2014-01-10  Joel Brobecker  <brobecker@adacore.com>
7304
7305         * gdb.ada/pp-rec-component.exp: Remove path from "source" test.
7306
7307 2014-01-10  Joel Brobecker  <brobecker@adacore.com>
7308
7309         * gdb.python/py-pp-integral.exp: Remove path from "source" test.
7310
7311 2014-01-09  Maciej W. Rozycki  <macro@codesourcery.com>
7312             Pedro Alves  <palves@redhat.com>
7313
7314         * gdb.mi/mi-info-os.exp: Connect to the target with
7315         mi_gdb_target_load.
7316
7317 2014-01-08  Pedro Alves  <palves@redhat.com>
7318
7319         * gdb.threads/reconnect-signal.c: New file.
7320         * gdb.threads/reconnect-signal.exp: New file.
7321
7322 2014-01-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
7323
7324         * gdb.base/source-dir.exp: New file.
7325
7326 2014-01-07  Joel Brobecker  <brobecker@adacore.com>
7327
7328         * gdb.ada/mi_interface: New testcase.
7329
7330 2014-01-07  Joel Brobecker  <brobecker@adacore.com>
7331
7332         * gdb.ada/pp-rec-component.exp, gdb.ada/pp-rec-component.py,
7333         gdb.ada/pp-rec-component/foo.adb, gdb.ada/pp-rec-component/pck.adb,
7334         gdb.ada/pp-rec-component/pck.ads: New files.
7335
7336 2014-01-07  Joel Brobecker  <brobecker@adacore.com>
7337
7338         * gdb.python/py-pp-integral.c: New file.
7339         * gdb.python/py-pp-integral.py: New file.
7340         * gdb.python/py-pp-integral.exp: New file.
7341
7342 For older changes see ChangeLog-1993-2013.
7343 \f
7344 ;; Local Variables:
7345 ;; mode: change-log
7346 ;; left-margin: 8
7347 ;; fill-column: 74
7348 ;; version-control: never
7349 ;; End:
7350
7351     Copyright 2014-2016 Free Software Foundation, Inc.
7352   Copying and distribution of this file, with or without modification,
7353   are permitted provided the copyright notice and this notice are preserved.