Add tests for result conversion after errors
[dejagnu.git] / ChangeLog
blobb116af9482e977afcb5875b6358bd11dfdd1e9b2
1 2022-12-20  Jacob Bachmeyer  <jcb@gnu.org>
3         * testsuite/runtest.main/stats.exp: Add tests for UNRESOLVED
4         results after warnings and errors.
5         * testsuite/runtest.main/nested/testsuite/stat.test/stats-sub.exp:
6         Add support for above.
8 2022-11-30  Jacob Bachmeyer  <jcb@gnu.org>
10         * testsuite/libdejagnu/unit.exp: Rename this...
11         * testsuite/libdejagnu/harness.exp: ...to this.
13         * doc/dejagnu.texi (C++ unit testing API): Document recent
14         improvements and the rest of the C++ API.
16         * dejagnu.h (TestState::TestState): Only perform initialization
17         when the first TestState object is constructed.
18         (DG): Add global TestState object.
20         * dejagnu.h (DG__endmsg): New function, called using atexit().
21         (endmsg_registered, TestState_count): Add fields to DG__status.
22         (DG__init): New function, to register DG__endmsg.
23         (pass, xpass, fail, xfail, untested, unresolved, unsupported)
24         (note): Call DG__init to ensure libdejagnu initialization.
25         (totals): Move "END" message to DG__endmsg.
26         (TestState::TestState): Consider DG__endmsg registered when a
27         TestState object is constructed.
28         (TestState::TestState, TestState::~TestState): Track number of
29         live TestState objects in global status structure.
30         (TestState::~TestState): Call totals() and emit "END" message only
31         when the last TestState object is destroyed.
33         * dejagnu.h (outstate): Remove.
34         (TestState::pass, TestState::xpass, TestState::fail)
35         (TestState::xfail, TestState::untested, TestState::unresolved)
36         (TestState::unsupported, TestState::note): Remove support for
37         overriding protocol tag lines.
38         (outstate_list): Rename this...
39         (DG__outstate_list): ...to this to mark it as internal.
40         (teststate): Rename this...
41         (DG_teststate): ...to this to avoid name collisions with user code.
42         (TestState::TestState): Sort lines by length.
44         * dejagnu.h (buffer): Remove this variable.
45         (pass, xpass, fail, xfail, untested, unresolved, unsupported)
46         (note): Replace use of buffer and vsnprintf with flockfile,
47         multiple writes, and funlockfile in all functions.
49         * dejagnu.h (DG__status): New struct for test counters.
50         (passed, failed, xpassed, xfailed, untest, unresolve, unsupport):
51         Move all counters into new struct, changing all functions.
53         * doc/dejagnu.texi (C unit testing API): Document use of "DG_"
54         prefix in dejagnu.h and "DG__" for internal symbols.
55         (C++ unit testing API): Likewise.  Also declare namespace
56         "DejaGnu" reserved for future expansion.
58 2022-11-29  Jacob Bachmeyer  <jcb@gnu.org>
60         * Makefile.in: Regenerate.
61         * Makefile.am (check_PROGRAMS): Add testsuite/libdejagnu/unit-ccxxmix.
62         (testsuite_libdejagnu_unit_ccxxmix_SOURCES): Add.
63         * testsuite/libdejagnu/unit.exp: Add tests for C/C++ mixed usage.
64         * testsuite/libdejagnu/unit-ccxxmix.cxx: New file.
66         * testsuite/libdejagnu/unit.exp: Add note that tests for the
67         framework side of the unit testing protocol are located in
68         testsuite/runtest.main/stats.exp and its nested testsuite.
70         * Makefile.in: Regenerate.
71         * Makefile.am (check_PROGRAMS): Remove unit.
72         (unit_SOURCES): Remove.
73         * testsuite/libdejagnu/tunit.exp: Remove file.
74         * testsuite/libdejagnu/unit.cc: Remove file.
75         The limited coverage of this test is now included in unit.exp
76         and unit-cxx, and supporting this test required some leaky
77         abstractions in dejagnu.h that can now be cleaned up.
79         * Makefile.in: Regenerate.
80         * Makefile.am (check_PROGRAMS): Add testsuite/libdejagnu/unit-cxx.
81         (testsuite_libdejagnu_unit_cxx_SOURCES): Add.
82         * testsuite/libdejagnu/unit.exp: Add tests for C++ unit test API.
83         * testsuite/libdejagnu/unit-cxx.cxx: New file.
85         * dejagnu.h (TestState::totals): Emit header line, like the C version.
87         * dejagnu.h (TestState::note): New method, like C note().
88         * doc/dejagnu.texi (C++ unit testing API): Add note() method.
90         * doc/dejagnu.texi (C++ unit testing API): Fix incorrect
91         documentation.  The C and C++ interfaces share the same global
92         counters, as do all C++ TestState objects.
94 2022-11-28  Jacob Bachmeyer  <jcb@gnu.org>
96         * dejagnu.h: Remove _DEJAGNU_WAIT_ conditional and revise comment
97         to explain improved solution to the problem for which it seems to
98         have been intended as a workaround.
99         (wait): Remove this function.  It conflicted with POSIX wait(2);
100         this conflict was reported as PR59586.
102         * testsuite/runtest.main/stats.exp: Add test for UNSUPPORTED
103         result from a unit test program.
104         * testsuite/runtest.main/nested/testsuite/stat.test/unit-sub.awk:
105         Update to account for addition of END marker and UNSUPPORTED to
106         DejaGnu unit testing protocol.
108         * dejagnu.h: Add UNSUPPORTED test result.
109         (unsupport): New counter variable for UNSUPPORTED results.
110         (unsupported): New function in C API.
111         (TestState::unsupported): New function in C++ API.
112         (outstate_list): Add UNSUPPORTED entry.
113         (teststate::laststate): Likewise.
114         (totals): Mention number of unsupported tests.
115         (TestState::totals): Likewise for C++ API.
116         * lib/dejagnu.exp (host_execute): Add UNSUPPORTED test result.
117         * doc/dejagnu.texi (DejaGnu unit test protocol): Document same.
118         (C unit testing API): Document new function for same.
119         (C++ unit testing API): Document new function for same.
121         * testsuite/libdejagnu/unit-c.c: Add test for UNSUPPORTED.
122         * testsuite/libdejagnu/unit.exp: Likewise.
124         * testsuite/libdejagnu/unit.exp: Add test for NOTE message.
126 2022-11-26  Jacob Bachmeyer  <jcb@gnu.org>
128         * Makefile.in: Regenerate.
129         * Makefile.am (AM_CXXFLAGS): Change this...
130         (AM_CPPFLAGS): ...to this.  (Also remove -g flag.)
131         (check_PROGRAMS): Add testsuite/libdejagnu/unit-c.
132         (testsuite_libdejagnu_unit_c_SOURCES): Add.
133         (TESTSUITE_FILES): Update.
134         * testsuite/libdejagnu/unit-c.c: New file.
135         * testsuite/libdejagnu/unit.exp: New file.
137         * dejagnu.h (xpass): Fix use of wrong counter.
138         (xfail): Likewise.
139         (totals): Report unexpected passes if any occurred.
141         * doc/dejagnu.texi (DejaGnu unit test protocol): Add end marker
142         line using "END" to allow detecting tests that exit prematurely.
143         The "Totals:" line was previously used for this purpose, but it
144         does not match the pattern documented as reserved for carrying
145         unit test results and information.
147         * lib/dejagnu.exp (host_execute): Remove test for "Totals" line.
148         (host_execute): Add corresponding support for the new line types.
150         * dejagnu.h (totals): Add end marker.
151         (TestState::totals): Likewise.
153 2022-10-04  Jacob Bachmeyer  <jcb@gnu.org>
155         PR58065
157         * lib/dg.exp (dg-test): Store results of analyzing messages in a
158         list, then report them to the framework after giving the pruning
159         callback an opportunity to skip the test case.
161         * testsuite/runtest.libs/dg.test: Add tests for skipping tests
162         based on special result codes from mock-dg-prune.
163         (mock-dg-test): Add directive for output text.
164         (mock-dg-prune): Recognize special markers for
165         UNRESOLVED/UNSUPPORTED/UNTESTED result codes.
167 2022-10-01  Jacob Bachmeyer  <jcb@gnu.org>
169         PR58065
171         * testsuite/runtest.libs/mockutil.tcl (test_proc_with_mocks):
172         Report test failure instead of raising errors.
174         * testsuite/runtest.libs/dg.test: Add more unit tests.
175         (eval_tests): Copy this procedure...
176         * testsuite/runtest.libs/target.test (eval_tests): ...from here.
178 2022-09-30  Jacob Bachmeyer  <jcb@gnu.org>
180         PR58065
182         * testsuite/runtest.libs/mockutil.tcl (test_proc_with_mocks): Add
183         usage comment and option to match number of calls for test.
184         (create_test_interpreter): Add support for mockvfs.
186         * testsuite/runtest.libs/dg.test: New file.
188 2022-09-29  Jacob Bachmeyer  <jcb@gnu.org>
190         PR58065
192         * testsuite/runtest.libs/mockvfs.tcl: New file.
194 2022-09-26  Jacob Bachmeyer  <jcb@gnu.org>
196         * testsuite/runtest.libs/libs.exp (process_test): Add forward
197         slash to the list of characters recognized as text.
199 2022-01-21  Jacob Bachmeyer  <jcb@gnu.org>
201         PR53427
203         * runtest.exp (runtest): Reset the global warning and error
204         counters before running each test file.  This prevents an error
205         "left over" from a previous test file from causing the first test
206         in the next file to be spuriously reported as UNRESOLVED.
208         * Makefile.am (TESTSUITE_FILES): Add new files.
210         * testsuite/runtest.main/pr53427.exp: New file for regression test.
211         * testsuite/runtest.main/nested/testsuite/pr53427.test/a.exp: Likewise.
212         * testsuite/runtest.main/nested/testsuite/pr53427.test/b.exp: Likewise.
214 2021-06-29  Jacob Bachmeyer  <jcb@gnu.org>
216         PR49250
218         * runtest.exp: Adjust detection logic for deprecated broken legacy
219         case of a testsuite not actually in a testsuite/ directory.
221         This was never supported but happened to work in older versions.
223 2021-05-22  Jacob Bachmeyer  <jcb@gnu.org>
225         * Makefile.am (TESTSUITE_FILES): Correct oversight.
227         * configure, Makefile.in, aclocal.m4: Regenerate.
229         * runtest.exp, configure.ac, doc/version.texi: Update version.
231         * dejagnu: Fix error message.
233         * config.guess: Import patched version; patches sent upstream.
235         * commands/help.sh: Add test mode in which man(1) is never
236         actually invoked.  The ability to reference a manpage by absolute
237         file name seems to be unique to Free systems.
238         * testsuite/launcher.all/help.exp: Amend test list to use new
239         testing mode in "dejagnu help" command.  This mode should also
240         work on Solaris, so the logic for skipping the tests is removed.
242 2021-05-20  Jacob Bachmeyer  <jcb@gnu.org>
244         * dejagnu: Search for a POSIX Awk and validate that at least a
245         simple Awk program actually works.
246         * testsuite/launcher.all/command.exp: Add tests for error produced
247         when no Awk is found and a help message is requested.
249         * lib/dejagnu.exp: Avoid reporting next test as UNRESOLVED when
250         reporting error due to missing size(1) while loading file.
252         * testsuite/lib/runtest.exp (runtest_copy_nested_testsuite_log):
253         New procedure.  Dumps log from nested run into main test log.
255         * testsuite/runtest.libs/utils.test: Change test for [which make]
256         to [which sh] because make(1) is not always available on non-GNU
257         systems but sh(1) exists on any Unix.  GNU make is often installed
258         as "gmake" on non-GNU systems and may be the only "make" utility.
260         * testsuite/runtest.main/pr42399.exp (test_pr42399): Revise to
261         ensure that a failure to produce any output at all in the inner
262         test will be detected.  This was discovered on Solaris 10.
264         * testsuite/runtest.main/stats.exp: Copy stat.log from nested
265         testsuite run to the main test log upon test failure.
267         * testsuite/runtest.main/nested/testsuite/stat.test/unit-sub.exp:
268         Explicitly pass /dev/null to unit-sub.awk because /usr/bin/awk on
269         Solaris 10 does not seem to recognize assignment to ARGV.
270         * testsuite/runtest.main/nested/testsuite/bug.test/pr42399-sub.exp:
271         Likewise.
273 2021-05-18  Jacob Bachmeyer  <jcb@gnu.org>
275         * dejagnu: Redirect input from /dev/null when testing if awk is
276         GNU Awk; this avoids a hang on Solaris 10 where awk treats
277         --version as an Awk program and attempts to read input.
278         (command): Rework the initial setting of this variable to avoid
279         limitations in Solaris 10 awk.
281         * testsuite/report-card.all/onetest.exp: Avoid Tcl error when item
282         and totals lines are missing entirely.
284         * testsuite/runtest.main/pr48155.exp: Fix assumption about exit
285         code from /bin/false, which is different on Solaris.
287 2021-05-05  Jacob Bachmeyer  <jcb@gnu.org>
289         PR48155
291         * Makefile.am (TESTSUITE_FILES): Update.
292         (CLEANFILES): Add special init file for PR48155 nested tests.
294         * testsuite/runtest.main/pr48155.exp: New file.
295         * testsuite/runtest.main/pr48155-csh.sh: New trivial file.  This
296         script emulates the behavior of the C shell if an attempt is made
297         to use it to run the config.guess script.
299 2021-05-04  Jacob Bachmeyer  <jcb@gnu.org>
301         PR48155
303         * runtest.exp: Tighten regexp used to validate output from
304         config.guess.  The previous regexp would accept an error produced
305         if config.guess was incorrectly run using the C shell.
307 2021-04-28  Jacob Bachmeyer  <jcb@gnu.org>
309         * configure, Makefile.in: Regenerate.
311         * runtest.exp, configure.ac, doc/version.texi: Update version.
313         * Makefile.am (TAR_OPTIONS): Explicitly select v7 tarball format
314         to work around Automake limitation of assuming that v7 is default.
316 2021-04-20  Jacob Bachmeyer  <jcb@gnu.org>
318         * configure.ac: Set Automake options to use the ancient and
319         universal V7 format when building distribution tarballs.  The
320         limitations of this format are not expected to impact DejaGnu; the
321         "ustar" format will be used instead if this is proved wrong.
323         * Makefile.am (TAR_OPTIONS): Add exported environment variable to
324         set options when building distribution tarballs.  Ensure that all
325         files in distribution tarballs will be recorded as owned by root.
327 2021-04-16  Jacob Bachmeyer  <jcb@gnu.org>
329         PR47382
331         * dejagnu (command): Use Awk instead of non-portable basename(1)
332         and a non-portable sed(1) pattern to initially set this variable.
334         * dejagnu: Use shell "case" pattern match instead of non-portable
335         "grep -q" to determine if "awk" is GNU Awk.
337         * dejagnu: Use Awk instead of non-portable "grep -q" to verify
338         that a file contains a help message.  Also use Awk to extract help
339         messages from files, instead of a complex dynamic sed(1) program.
341         * configure.ac: Remove experimental support for propagating
342         CONFIG_SHELL to scripts in the source directory.
344         * runtest.exp: Use CONFIG_SHELL or SHELL environment variable when
345         running config.guess.  Check the result carefully and stop with an
346         error immediately if running config.guess does not produce
347         something that plausibly resembles a triplet.  Advise the user
348         that SHELL or CONFIG_SHELL may need to be set in the environment.
350 2021-04-15  Jacob Bachmeyer  <jcb@gnu.org>
352         PR47382
354         * dejagnu: Avoid using $? for an exit code; it is convenient until
355         the tests fail because the script is run on Solaris where false
356         returns 255 instead of 1 and the test harness expects exit code 1.
358 2021-04-14  Jacob Bachmeyer  <jcb@gnu.org>
360         PR47382
362         * dejagnu: Replace use of "expr :" with shell "case" pattern
363         match to avoid limitations of Solaris 10 expr(1).
365 2021-04-14  Jacob Bachmeyer  <jcb@gnu.org>
367         * lib/specs.exp, testsuite/runtest.libs/specs.test: New files.
369 2021-04-08  Jacob Bachmeyer  <jcb@gnu.org>
371         * configure: Regenerate.
373         * runtest.exp, configure.ac, doc/version.texi: Update version.
375         * configure.ac: Change "dnl" comments that should appear in
376         configure to regular comments.
377         Add experimental support for propagating CONFIG_SHELL to the
378         config.sub and config.guess scripts in the source directory.
380 2021-04-01  Jacob Bachmeyer  <jcb@gnu.org>
382         PR47533
384         * dejagnu, commands/help.sh, commands/report-card.awk: Revise help
385         message to better fit GNU conventions, with thanks to Tom Tromey
386         for the reporting this issue.
388         PR47382
390         * runtest: Remove use of non-portable "if !" that causes problems
391         with /bin/sh on Solaris 10.
393         * dejagnu (Variants): Split the declaration of this read-only
394         variable into an assignment followed by marking it read-only,
395         instead of doing both in one statement.  The Solaris 10 /bin/sh
396         does not accept the combined form.
398 2021-03-30  Jacob Bachmeyer  <jcb@gnu.org>
400         * configure: Regenerate.
402         * runtest.exp, configure.ac, doc/version.texi: Update version.
404 2021-03-26  Jacob Bachmeyer  <jcb@gnu.org>
406         PR47386
408         * testsuite/launcher.all/help.exp: Skip the tests on Solaris,
409         since Solaris man(1) does not accept explicit filenames.  The
410         manpages will be installed as usual, and the "dejagnu help"
411         command should work after installation.
413         Also set PAGER for testing, since other systems might also ignore
414         MANPAGER and that would cause the test to hang.
416         * testsuite/lib/launcher.exp (dejagnu_run): Send commands run and
417         copies of the output produced to the log.
419         * commands/help.sh: Extend PR47382 fix (below) to this file.
421         PR47385
423         * testsuite/lib/runtest.exp: Remove support for automatically
424         locating an Expect executable in the old Cygnus tree layout.
426 2021-03-25  Jacob Bachmeyer  <jcb@gnu.org>
428         PR47382
430         * dejagnu, runtest: Remove use of "$()" command substitution and
431         "$(())" arithmetic substitution shell constructs.  The /bin/sh on
432         Solaris 10 does not support them.  They were replaced with the
433         traditional backticks for command substitution and backticks and
434         the expr command for arithmetic substitution.
436         Also add markers to explicitly disable shellcheck warnings that
437         would lead to reintroducing these problems.
439         Also avoid the non-portable "`..."..."...`" construct on a warning
440         in the GNU Autoconf manual, section "Shell Substitutions",
441         although this introduces additional variables.
443 2021-03-22  Jacob Bachmeyer  <jcb@gnu.org>
445         * configure: Regenerate.
447         * runtest.exp, configure.ac, doc/version.texi: Update version.
449         * config.guess, config.sub: Import from upstream.
451         * MAINTAINERS: Acknowledge that Ben Elliston has left the project.
453 2021-03-15  Jacob Bachmeyer  <jcb@gnu.org>
455         * Makefile.am, Makefile.in: Update accordingly.
457         * contrib/compare_tests: Remove.  This file lacked a GPL notice.
458         This file was imported from GCC many years ago.  The GCC version
459         has benefited from continued development, while ours has not.
461         * testsuite/runtest.libs/load_lib.exp: Remove.  This file lacked a
462         GPL notice and an attempt to contact the contributor produced no
463         response.  The tests in this file will need to be rewritten in any
464         case; there is a bug in load_lib that they should expose and there
465         is now additional infrastructure for tests of this type that was
466         not available when this file was written.
468 2020-12-27  Jacob Bachmeyer  <jcb@gnu.org>
470         * testsuite/runtest.libs/libs.exp (process_test): Report running
471         test scripts as each test script is run.
472         Also, at top-level, sort the list of tests to run.
474         * doc/dejagnu.texi (testsuite procedure): Remove noise word "api"
475         from new "testsuite can call api" feature test API entrypoint.
476         * lib/framework.exp (testsuite_can): Likewise.
477         * testsuite/runtest.libs/testsuite_can.test: Likewise.
478         * NEWS: Likewise.
480 2020-12-16  Jacob Bachmeyer  <jcb@gnu.org>
482         * configure: Regenerate.
484         * configure.ac: Remove Tcl version check.
486         Apply patch from Nick Clifton:
488         * baseboards/msp430-sim.exp: Add missing copyright and GPL notice.
490         Apply patch from Dimitar Dimitrov:
492         * baseboards/pru-sim.exp: New file.
494         * Makefile.am (baseboard_DATA): Add pru-sim.exp to list.
495         * Makefile.in (baseboard_DATA): Likewise.
497 2020-12-15  Jacob Bachmeyer  <jcb@gnu.org>
499         * configure: Regenerate.
500         * Makefile.in: Regenerate.
502         * Makefile.am (RUNTEST): Explain override of Automake default.
504         * configure.ac: Update for autoconf 2.69 using autoupdate.
505         * configure.ac: Remove search for expect now handled by Automake.
507         Apply patch from Dimitar Dimitrov:
509         * Makefile.am (dejagnu_TEXINFOS): Change this...
510         * Makefile.am (doc_dejagnu_TEXINFOS): ...to this.
512         This fixes an incorrectly recorded dependency.
514 2020-11-17  Jacob Bachmeyer  <jcb@gnu.org>
516         PR44636 / PR44693
518         * doc/dejagnu.texi (Adding a new tool): Fix incorrect description
519         that conflated the tool init file with the target interface file.
520         (Make Check): Add cross-reference to the GNU Automake manual for
521         more details.
523 2020-11-10  Jacob Bachmeyer  <jcb@gnu.org>
525         PR44545
527         * testsuite/lib/launcher.exp (link_dejagnu_launcher_test_item):
528         Use [file normalize] to ensure that link targets are unambiguous.
529         (link_dejagnu_launcher_test_item): Avoid spurious errors when test
530         environment has already been prepared in a previous run.
532         * testsuite/lib/launcher.exp (link_dejagnu_launcher_test_item):
533         New procedure to collect existing repeated testsuite code.
534         * testsuite/launcher.all/command.exp: Establish testing
535         environment using link_dejagnu_launcher_test_item procedure.
537 2020-11-09  Jacob Bachmeyer  <jcb@gnu.org>
539         * aclocal.m4: Regenerate.
540         * configure: Regenerate.
541         * Makefile.in: Regenerate.
543         * configure.ac: Revert development version branch tagging hook.
544         * Makefile.am: Likewise.
546         These caused failures (reported in PR44462 as a secondary issue)
547         when a source tree is copied out of a Git directory.
549 2020-08-31  Jacob Bachmeyer  <jcb@gnu.org>
551         * doc/runtest.1: Add brief GFDL notice.  License notice in the
552         formatted manpage should now describe DejaGnu as a whole.
554         * NEWS: Prepare for release.
556 2020-08-18  Jacob Bachmeyer  <jcb@gnu.org>
558         * testsuite/runtest.libs/testsuite_file.test: Add missing
559         copyright and GPL notice.
560         * testsuite/runtest.libs/testsuite_can.test: Likewise.
561         * testsuite/runtest.libs/testcase_group.test: Likewise.
563 2020-08-12  Jacob Bachmeyer  <jcb@gnu.org>
565         * doc/dejagnu.texi (The dejagnu_h header file): Remove node.
566         (Running unit tests): Add node.
567         (DejaGnu unit test protocol): Add node.
568         (C unit testing API): Update to reflect current API.  Move mention
569         of dejagnu.h header here in preparation for future expanded
570         language support.
571         (C++ unit testing API): Likewise.  Mention caveat that the C unit
572         test API is also available in C++ programs.
574 2020-08-10  Jacob Bachmeyer  <jcb@gnu.org>
576         * baseboards/qemu.exp: Tidy whitespace.
578 2020-08-10  Jacob Bachmeyer  <jcb@gnu.org>
580         Merge patch from Kito Cheng to add support for RISC-V sim target.
582         * baseboards/riscv-sim.exp: New file.
583         * Makefile.am (baseboard_DATA): Add riscv-sim.exp.
584         * Makefile.in (baseboard_DATA): Likewise.
586 2020-08-02  Jacob Bachmeyer  <jcb@gnu.org>
588         * Makefile.am (TESTSUITE_FILES): Add files that were introduced
589         during development but were mistakenly not added at that time.
590         (baseboard_DATA): Sort baseboard file list.
591         (baseboard_DATA): Add missing files.
592         (dejagnu_TEXINFOS): New; add GNU FDL file.
593         (CONTRIB): Add experimental Python unit test module.
595         * Makefile.in (TESTSUITE_FILES): Likewise.
596         (baseboard_DATA): Likewise.
598         * testsuite/dejagnu.py:  Move from here...
599         * contrib/dejagnu.py: ...to here.
601 2020-08-02  Rob Savoye  <rob@senecass.com>
603         * Makefile.in: Regenerate so make dist works.
605 2020-07-25  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
607         * doc/dejagnu.texi (Writing a test case): Mention the DejaGnu
608         procedure "perror" instead of the Tcl command "error".
609         (Writing a test case): Reorganize node and give basic hints about
610         Tcl quoting and backslash escape rules.
611         (Writing a test case): Describe synchronization issues and warn
612         that prefixes of valid input can be presented for matching.
613         (Writing a test case): Fix markup from conversion from DocBook.
615 2020-07-22  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
617         PR42399
619         * NEWS: Document changes to host_execute.
621         * lib/dejagnu.exp (host_execute): Revise expect matching to
622         combine all unit test protocol lines into one pattern.
623         (host_execute): Rework other expect patterns.
624         (host_execute): Ensure that all output from child process is read
625         until the child closes its output to avoid sending early SIGPIPE.
626         (host_execute): Report an ERROR (and cause the next test to be
627         recorded as UNRESOLVED) if the Expect matching buffer overflows.
628         (host_execute): Remove dependency on global "text" variable.
630         * Makefile.am (TESTSUITE_FILES): Update.
632         * testsuite/runtest.main/stats.exp: Generalize infrastructure and
633         add tests for DejaGnu unit testing support.
634         * testsuite/runtest.main/nested/testsuite/stat.test/unit-sub.exp:
635         New file.
636         * testsuite/runtest.main/nested/testsuite/stat.test/unit-sub.awk:
637         New file.
639 2020-07-20  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
641         PR42399
643         * Makefile.am (TESTSUITE_FILES): Update.
645         * lib/dejagnu.exp (host_execute): Allow the executable to be
646         specified with an absolute file name.
647         (host_execute): Fix argument handling to allow passing more than
648         one argument to the executable.  Return early if given no
649         arguments at all instead of trying to execute "./".
651         * testsuite/runtest.main/pr42399.exp: New file.
652         * testsuite/runtest.main/nested/testsuite/bug.test/pr42399.awk:
653         New file.
654         * testsuite/runtest.main/nested/testsuite/bug.test/pr42399-sub.exp:
655         New file.
657 2020-07-20  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
659         * Makefile.am (CLEANFILES): Update.
660         (TESTSUITE_FILES): Update to reflect testsuite reorganization.
662         * testsuite/lib/runtest.exp (runtest_setup_nested_testsuite): New
663         procedure.
664         (runtest_cleanup_nested_testsuite): New procedure.
666         * testsuite/runtest.main/error.exp: Use the tool name "error" to
667         select the proper subset of the nested testsuite.  Use new
668         procedures for handling nested testsuite.  Use common
669         nested-init.exp local init file for nested testsuite.  Let local
670         init file nested-init.exp handle setting "outdir" variable.
671         * testsuite/runtest.main/options.exp: Likewise; "null" tool.
672         * testsuite/runtest.main/stats.exp: Likewise; "stat" tool.
674         * testsuite/runtest.main/nested/: Combine nested testsuites.
675         * testsuite/runtest.main/error/testsuite/error.test/error-al-dbz.exp:
676         Move from here...
677         * testsuite/runtest.main/nested/testsuite/error.test/error-al-dbz.exp:
678         ...to here.
679         * testsuite/runtest.main/error/testsuite/error.test/error-dbz.exp:
680         Move from here...
681         * testsuite/runtest.main/nested/testsuite/error.test/error-dbz.exp:
682         ...to here.
683         * testsuite/runtest.main/error/testsuite/error.test/error-undef.exp:
684         Move from here...
685         * testsuite/runtest.main/nested/testsuite/error.test/error-undef.exp:
686         ...to here.
687         * testsuite/runtest.main/error/testsuite/error.test/simple.exp:
688         Move from here...
689         * testsuite/runtest.main/nested/testsuite/error.test/simple.exp:
690         ...to here.
691         * testsuite/runtest.main/options/testsuite/null.test/null.exp:
692         Move from here...
693         * testsuite/runtest.main/nested/testsuite/null.test/null.exp:
694         ...to here.
695         * testsuite/runtest.main/stats/testsuite/stat.test/stats-sub.exp:
696         Move from here...
697         * testsuite/runtest.main/nested/testsuite/stat.test/stats-sub.exp:
698         ...to here.
700 2020-07-16  Rob Savoye  <rob@senecass.com>
702         * baseboards/qemu.exp: Works now with qemu instead of sim.
704 2020-07-06  Rob Savoye  <rob@senecass.com>
706         * baseboards/qemu.exp: Initial working support to use qemu for
707         bare metal testing.
708         * Makefile.am: Install qemu.exp.
709         * autogen.sh: Add script borrowed from my Gnash project to
710         regenerate configure/build files.
711         * aclocal.m4, configure.ac, Makefile.am: regenerated GDB too.
712         * doc/dejagnu.texi: Update copyright date.
714 2020-06-29  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
716         PR 41824 / PR 41918
718         * NEWS: Add item for repeated error messages.
720         * lib/framework.exp (log_and_exit): Add separator lines around the
721         error dumps repeated at the end of a run.
723 2020-06-26  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
725         PR 41824 / PR 41918
727         * NEWS: Remove items for --keep_going / --no_keep_going options.
729         * Makefile.am (CLEANFILES): Adjust for renames.
730         (TESTSUITE_FILES): Likewise.
732         * doc/dejagnu.texi (Invoking runtest): Remove --keep_going and
733         --no_keep_going options.
734         (A POSIX Conforming Test Framework): Document that Tcl errors in
735         test scripts produce UNRESOLVED results as placeholders.
737         * doc/runtest.1: Likewise.
739         * lib/framework.exp (log_and_exit): Print collected Tcl errors.
741         * runtest.exp (dejagnu::error): New internal namespace.
742         (runtest): Collect Tcl errors caught while executing test scripts.
743         (dejagnu::opt): Remove internal namespace.
744         Remove --keep_going / --no_keep_going options.  No longer abort on
745         any Tcl errors; instead store them and repeat the messages at the
746         end of the run.
748         * testsuite/runtest.main/abort.exp: Rename from this ...
749         * testsuite/runtest.main/error.exp: ... to this and revise tests.
751         * testsuite/runtest.main/abort/testsuite/abort.test/abort-al-dbz.exp:
752         Rename from this...
753         * testsuite/runtest.main/error/testsuite/error.test/error-al-dbz.exp:
754         ... to this.
755         * testsuite/runtest.main/abort/testsuite/abort.test/abort-dbz.exp:
756         Rename from this...
757         * testsuite/runtest.main/error/testsuite/error.test/error-dbz.exp:
758         ... to this.
759         * testsuite/runtest.main/abort/testsuite/abort.test/abort-undef.exp:
760         Rename from this...
761         * testsuite/runtest.main/error/testsuite/error.test/error-undef.exp:
762         ... to this.
764 2020-06-24  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
766         PR 41824 / PR 41918
768         * NEWS: Revise relevant items.
770         * doc/dejagnu.texi (Invoking runtest): Add --no_keep_going option.
771         * doc/runtest.1: Document --no_keep_going option.  Remove
772         long-obsolete --name option.  The --name option had been removed
773         from runtest before the code was imported into what became the
774         current repository.
776         * runtest.exp: Add option --no_keep_going to stop immediately if a
777         test script aborts due to a Tcl error.  Remove vestiges of
778         long-obsolete --name option.  Make --keep_going option default.
780         * testsuite/runtest.main/abort.exp: Adjust tests to use
781         --no_keep_going and --keep_going instead of assuming a default.
783 2020-06-22  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
785         Merge patches from Maciej W. Rozycki to fix timeout handling.
787         * lib/remote.exp (close_wait_program): Use `catch' in killing
788         pending force-kills.
790         * lib/remote.exp (close_wait_program): Only kill the pending
791         force-kills if the PID list has a single entry.
792         (local_exec): Set the channel about to be closed to the
793         nonblocking mode if we didn't see an EOF.
794         (standard_close): Likewise, unconditionally.
796 2020-06-22  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
798         * NEWS: Mention "linker=" option and added language support.
800         * doc/dejagnu.texi (target_compile procedure): Document new
801         "linker=" option to target_compile.
803         * lib/target.exp (default_target_compile): Actually use internal
804         option for separate linker provided for Go language support.  This
805         seems to have been accidentally omitted from Tom Tromey's patches.
806         (default_target_compile): Add "linker=" option, similar to
807         "compiler=" option, but the former overrides the latter when
808         building an executable.
809         (default_target_compile): Ensure that "--emit obj" is spaced from
810         previous item when used to compile Rust.  Use "--emit asm" instead
811         of "-S" when generating assembly from Rust sources.
813         * testsuite/runtest.libs/target.test: Add tests for Go and Rust.
814         Also add tests for the new "early_flags=" and "linker=" options.
816 2020-06-20  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
818         * doc/dejagnu.texi (Libgloss): Update menu.
819         (find_go procedure, find_go_linker procedure): New nodes.
820         (find_rustc procedure): New node.
822 2020-06-19  Tom Tromey  <tromey@adacore.com>
824         * doc/dejagnu.texi (target_compile procedure): Document Go
825         additions.
826         * lib/target.exp (default_target_compile): Handle Go.
827         * lib/libgloss.exp (find_go, find_go_linker): New procs.
829 2020-06-19  Tom Tromey  <tromey@adacore.com>
831         * doc/dejagnu.texi (target_compile procedure): Document rust
832         additions.
833         * lib/target.exp (default_target_compile): Handle rust.
834         * lib/libgloss.exp (find_rustc): New proc.
836 2020-06-19  Tom Tromey  <tromey@adacore.com>
838         * lib/target.exp (default_target_compile): Add early_flags.
839         * doc/dejagnu.texi (target_compile procedure): Document
840         early_flags.
842 2020-06-19  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
844         Merge patches from Tom de Vries <tdevries <at> suse.de> and write
845         ChangeLog entries.
847         * testsuite/runtest.main/abort.exp: Add tests that verify handling
848         of arithmetic errors (divide-by-zero) in a procedure called within
849         a test script.
851         * testsuite/runtest.main/abort/testsuite/abort.test/abort-dbz.exp: New file.
853 2020-06-18  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
855         PR 41824 / PR 41918
857         Thanks to Tom de Vries for raising these concerns and offering the
858         initial testsuite patch that led to these changes.
860         * NEWS: Add item for consistent abort-on-error handling.
862         * lib/framework.exp (unknown): Always link global variables.  Tidy.
863         Silently propagate errors raised in autoloaded procedures and move
864         the UNRESOLVED result and aborting the test run to...
865         * runtest.exp (runtest): Report an UNRESOLVED result if a test
866         script aborts due to a Tcl error.  Link global errorCode and
867         report its value if an error occurs.  For consistency, abort the
868         test run on any Tcl error in a test script instead of only when
869         calling an undefined procedure.
871         * testsuite/runtest.main/abort.exp: Add tests to verify handling
872         of arithmetic errors (divide-by-zero) in an auto-loaded procedure
873         called from a test script.  Adjust other patterns.
875         * testsuite/runtest.main/abort/testsuite/abort.test/abort-al-dbz.exp:
876         New file.
878 2020-06-17  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
880         PR 41824
882         * NEWS: Add item for --keep_going option.
884         * Makefile.am (CLEANFILES): Add abort-init.exp to list.
885         (TESTSUITE_FILES): Add new testsuite files to list.
887         * doc/dejagnu.texi (Invoking runtest): Document new --keep_going
888         command line option.
889         * doc/runtest.1: Likewise.
891         * lib/framework.exp (unknown): Report an UNRESOLVED result if an
892         unknown command is invoked.  Avoid exiting and propagate the error
893         from Tcl's "unknown" procedure if --keep_going was
894         specified. Brace procedure argument list.
895         * runtest.exp (dejagnu::opt): New namespace.
896         Add option --keep_going to continue running tests after a test
897         script aborts due to calling an undefined command.
899         * testsuite/runtest.main/abort.exp: New file.
900         * testsuite/runtest.main/abort/testsuite/abort.test/abort-undef.exp:
901         New file.
902         * testsuite/runtest.main/abort/testsuite/abort.test/simple.exp:
903         New file.
905 2020-06-17  Tom de Vries  <tdevries <at> suse.de>
907         * lib/framework.exp (unknown): Propagate return value of auto-loaded
908         command.
910 2020-06-15  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
912         Merge patches from Linaro:
914         2018-09-28  Christophe Lyon <christophe.lyon@linaro.org>
915         * lib/ssh.exp (ssh_exec): Redirect stderr to stdout on the remote
916         machine, to avoid race conditions.
918         2016-04-25  Yvan Roux <yvan.roux@linaro.org>
919         * lib/rsh.exp (rsh_exec): Don't remove trailing newline.
920         * lib/ssh.exp (ssh_exec): Likewise.
922         2016-06-28  Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
923         * config/unix.exp (unix_load): Prepend the value of an
924         "exec_shell" board_info key to the command if it is defined.
926 2020-06-06  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
928         * NEWS: Document "testcase" command.
930         * doc/dejagnu.texi (testcase procedure): Document multiplex entry
931         point and "testcase group" command.
933         * lib/framework.exp: Add internal namespace ::dejagnu::group.
934         (::dejagnu::group::check_name): New procedure.
935         (::dejagnu::group::current): New procedure.
936         (::dejagnu::group::push): New procedure.
937         (::dejagnu::group::pop): New procedure.
938         (::dejagnu::group::pop_to_file): New procedure.
939         (testcase): New procedure for multiplex commands.
940         (testcase_group): New procedure implementing "testcase group".
942         * testsuite/runtest.libs/testcase_group.test: New file.
944 2020-06-05  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
946         * NEWS: Document new "testsuite can call api" command.
948         * doc/dejagnu.texi (testsuite procedure): Document new subcommand
949         "testsuite can call api".
951         * lib/framework.exp (testsuite): Add branch for "testsuite can".
952         (testsuite_can): New procedure implementing "testsuite can".
954         Add internal array ::dejagnu::apilist to store information for
955         "testsuite can call api" for querying the availability of an API
956         call.  This will allow test scripts to adapt and use new features
957         while still being able to run under older versions of DejaGnu.
959         * testsuite/runtest.libs/testsuite_can.test: New file.
961 2020-06-02  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
963         PR 41647
964         * NEWS: Fix typo.  Fix Emacs mode tag.
965         Document use of Tcl namespace ::dejagnu for internals.
966         * runtest.exp (dejagnu::command_line): New namespace.
967         (dejagnu::command_line::save_cmd_var): New procedure.
968         (dejagnu::command_line::restore_cmd_vars): New procedure.
969         (dejagnu::command_line::dump_cmd_vars): New procedure.
970         * runtest.exp: Save internal variables set by command line
971         arguments during the first pass and restore their values after
972         loading testsuite init files.
974 2020-06-01  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
976         PR 41647
977         * runtest.exp: Describe search for testsuite at verbose level 3.
978         Print initial working directory at verbose level 1.
980 2020-05-28  Jacob Bachmeyer  <jcb62281+dev@gmail.com>
982         PR 41587
983         * testsuite/lib/launcher.exp: Adjust LAUNCHER variable default
984         value to use an absolute file name.
985         * testsuite/lib/report-card.exp: Likewise.
986         * testsuite/runtest.main/options.exp: Set outdir in options-init
987         instead of changing working directory in child runtest.
989         * runtest.exp (logname): Move verbose display of logname to
990         immediately after finding the user's login name.
992         PR 41585
993         * runtest.exp (libdir): Fix default value of global variable.
995         * ChangeLog: Tidy irregular indentation.
997 2020-05-26 Jacob Bachmeyer <jcb62281+dev@gmail.com>
999         * doc/dejagnu.texi (target_compile procedure): Add documentation.
1001 2020-05-26 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1003         * doc/dejagnu.texi (target_link procedure): New stub node.
1004         (default_link procedure): Document internal procedure.
1005         (default_target_assemble procedure): Likewise.
1006         (default_target_compile procedure): Likewise.
1008 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1010         * baseboards/{aarch64-sim, arm-ice, arm-sim, basic-sid, iq2000-sim,
1011         mn10300-sim, moxie-sim}.exp: Cleanup up whitespace.
1013 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1015         * lib/target.exp (default_target_compile): Use "host_info"
1016         procedure to probe for a host configuration, instead of checking a
1017         local empty target_info array due to lacking "global target_info".
1019 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1021         * doc/dejagnu.texi (Adding a new board): Document that the
1022         "compiler" board_info field is optional and defaults to [find_gcc]
1023         if not given.
1024         (Board configuration file): Likewise.
1026         * lib/target.exp (default_target_compile): Establish a default C
1027         compiler by evaluating [find_gcc] if no other compiler is given.
1029         * baseboards/aarch64-sim.exp: Remove no-longer-needed
1030         "set_board_info compiler [find_gcc]" from this file.
1031         * baseboards/am33_2.0-libremote.exp: Likewise.
1032         * baseboards/androideabi.exp: Likewise.
1033         * baseboards/arm-ice.exp: Likewise.
1034         * baseboards/arm-sim.exp: Likewise.
1035         * baseboards/cris-sim.exp: Likewise.
1036         * baseboards/d30v-sim.exp: Likewise.
1037         * baseboards/fr30-sim.exp: Likewise.
1038         * baseboards/frv-sim.exp: Likewise.
1039         * baseboards/gdbserver-sample.exp: Likewise.
1040         * baseboards/iq2000-sim.exp: Likewise.
1041         * baseboards/linux-gdbserver.exp: Likewise.
1042         * baseboards/linux-libremote.exp: Likewise.
1043         * baseboards/mcore-moto-sim.exp: Likewise.
1044         * baseboards/mcore-sim.exp: Likewise.
1045         * baseboards/mips-sim-idt32.exp: Likewise.
1046         * baseboards/mips-sim-idt64.exp: Likewise.
1047         * baseboards/mips-sim-mti32.exp: Likewise.
1048         * baseboards/mips-sim-mti64.exp: Likewise.
1049         * baseboards/mips-sim-mti64_64.exp: Likewise.
1050         * baseboards/mips-sim-mti64_n32.exp: Likewise.
1051         * baseboards/mips-sim-sde32.exp: Likewise.
1052         * baseboards/mips-sim-sde64.exp: Likewise.
1053         * baseboards/mips-sim.exp: Likewise.
1054         * baseboards/mmixware-sim.exp: Likewise.
1055         * baseboards/mn10200-sim.exp: Likewise.
1056         * baseboards/mn10300-sim.exp: Likewise.
1057         * baseboards/moxie-sim.exp: Likewise.
1058         * baseboards/msp430-sim.exp: Likewise.
1059         * baseboards/powerpc-sim.exp: Likewise.
1060         * baseboards/powerpcle-sim.exp: Likewise.
1061         * baseboards/rx-sim.exp: Likewise.
1062         * baseboards/sh-sim.exp: Likewise.
1063         * baseboards/sparc-sim.exp: Likewise.
1064         * baseboards/sparc64-sim.exp: Likewise.
1065         * baseboards/sparclite-sim-le.exp: Likewise.
1066         * baseboards/sparclite-sim.exp: Likewise.
1067         * baseboards/unix.exp: Likewise.
1068         * baseboards/v850-sim.exp: Likewise.
1069         * baseboards/visium-sim.exp: Likewise.
1070         * baseboards/xtensa-sim.exp: Likewise.
1072 2020-05-24  Rob Savoye  <rob@senecass.com>
1074         * baseboards/pi.exp: New config file for cross testing to a
1075         Raspberry PI.
1077 2020-05-24  Tom Tromey  <tom@tromey.com>
1079         * .gitignore: Add files.
1081 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1083         * testsuite/runtest.libs/target.test: Use mockutil.tcl.
1084         Collect loading DejaGnu libraries into a single loop.
1085         Revise the mock board_info array.
1086         Add section headings for different test groups in this file.
1087         Add tests for default_target_compile in lib/target.exp.
1088         * testsuite/runtest.libs/mockutil.tcl: New file.
1090 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1092         * doc/dejagnu.texi (remote_exec procedure): Explicitly list
1093         optional arguments instead of simply copying the Tcl argument list
1094         or the remote_exec procedure.
1096 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1098         * testsuite/runtest.libs/default_procs.tcl: Set sum_file to empty
1099         string instead of opening a temporary file named .tmp.
1100         * testsuite/runtest.libs/libs.exp: No longer need to remove .tmp.
1102 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1104         * testsuite/runtest.libs/target.test: Rename fake "target_info"
1105         array to a fake "board_info" array, to align with changes made to
1106         the DejaGnu core on 29 January 1997 that moved the target
1107         configuration data into the global board_info array.
1109         * testsuite/runtest.libs/remote.test: Likewise.
1111 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1113         * testsuite/runtest.libs/libs.exp: Use runtest_file_p to honor
1114         requests to run only some library tests.
1116 2020-05-18  Rob Savoye  <rob@senecass.com>
1118         * configure.ac: Extract the current branch.
1119         * Makefile.am: Change the frame_version in runtest.exp post
1120         install to add the branch and git revision to make it easier to
1121         support multiple versions during development.
1123 2020-05-15  Rob Savoye  <rob@senecass.com>
1125         * All files: Minor change, update copyright dates.
1127 2019-03-08  Andrew Burgess  <andrew.burgess@embecosm.com>
1129         * runtest.exp (search_and_load_file): Join the directory and
1130         filename once using 'file join'.
1132 2019-01-24  Jacob Bachmeyer  <jcb62281@gmail.com>
1134         * doc/dejagnu.texi: Refill paragraphs and normalize inter-sentence
1135         spacing so the Emacs move-by-sentence commands work correctly.
1137 2019-01-23  Ben Elliston  <bje@gnu.org>
1139         * doc/dejagnu.texi: Replace "config file" with "configuration
1140         file" throughout.
1142 2019-01-23  Jacob Bachmeyer  <jcb62281@gmail.com>
1144         * doc/dejagnu.texi (Command line option variables): Improve table
1145         formatting to fix overlapping columns and revise text slightly.
1147 2019-01-23  Jacob Bachmeyer  <jcb62281@gmail.com>
1149         * doc/dejagnu.texi (Global config file): Change example to use the
1150         Tcl "switch" command instead of the deprecated "case" command.
1152 2019-01-12  Jacob Bachmeyer  <jcb62281@gmail.com>
1154         * doc/dejagnu.texi (runtest_file_p procedure): Fix description of
1155         the structure of the "runtests" argument.
1157 2019-01-12  Ben Elliston  <bje@gnu.org>
1159         * doc/dejagnu.texi: Various documentation fixes.
1161 2019-01-10  Jacob Bachmeyer  <jcb62281@gmail.com>
1163         * testsuite/runtest.libs/clone_output.test: Use new test harness
1164         for verifying output of clone_output.
1166         * testsuite/runtest.libs/default_procs.tcl (send_error): Roll into
1167         template using store_test_output.
1168         (send_log): Likewise.
1169         (send_user): Likewise.
1170         (clear_test_output): New proc.
1171         (store_test_output): New proc.
1173         * lib/framework.exp (clone_output): Actually send errors to the
1174         error stream; bug found while improving testsuite.
1176 2019-01-10  Jacob Bachmeyer  <jcb62281@gmail.com>
1178         * testsuite/runtest.libs/libs.exp (process_test): Handle blank
1179         lines from child process correctly.
1181 2019-01-02  Jacob Bachmeyer  <jcb62281@gmail.com>
1183         * NEWS: Document report card.
1185         * Makefile.am (clean-local): Add target.
1186         (clean-local-check): Add target; mark as PHONY.
1187         (commands_DATA): Add "report-card" scripts.
1188         (dist_man_MANS): Add dejagnu-report-card.1 and split.
1189         (DEJATOOL): Add "report-card" tool.
1190         (TESTSUITE_FILES): Add testsuite for "report-card" tool.
1192         * commands/report-card.awk: New command script.
1194         * doc/dejagnu.texi (Invoking dejagnu report card): New node.
1195         * doc/dejagnu-report-card.1: New man page.
1197         * testsuite/lib/bohman_ssd.exp: New file.
1198         * testsuite/lib/report-card.exp: New file.
1199         * testsuite/report-card.all/onetest.exp: New file.
1200         * testsuite/report-card.all/passes.exp: New file.
1202 2019-01-02  Ben Elliston  <bje@gnu.org>
1204         * Makefile.am (DISTCLEANFILES): Don't use this.
1205         (CLEANFILES): Use this instead.
1206         * Makefile.in: Regenerate.
1208 2019-01-01  Ben Elliston  <bje@gnu.org>
1210         * configure.ac: Abort if AWK is not installed.
1211         * configure: Regenerate.
1213 2019-01-01  Ben Elliston  <bje@gnu.org>
1215         * config.guess: Update to latest version.
1216         * config.sub: Likewise.
1218 2019-01-01  Ben Elliston  <bje@gnu.org>
1220         * configure.ac: Add AC_PROG_AWK check.
1221         * configure: Regenerate.
1223 2018-12-29  Jacob Bachmeyer  <jcb62281@gmail.com>
1225         * dejagnu: Avoid use of semicolon as sed(1) command separator.
1226         POSIX does not clearly require sed(1) to support that feature.
1228 2018-12-28  Jacob Bachmeyer  <jcb62281@gmail.com>
1230         * testsuite/lib/util-defs.exp: Whitespace clean up.
1232 2018-12-21  Jacob Bachmeyer  <jcb62281@gmail.com>
1234         PR 33817
1235         * dejagnu: Improve command parsing to fix bug. Previously, the
1236         documented equivalence between "multi word command" and
1237         "multi-word-command" did not hold if no arguments were given.
1238         * testsuite/launcher.all/command.exp: Add tests.
1240 2018-12-20  Ben Elliston  <bje@gnu.org>
1242         * NEWS: Add item for new dejagnu command.
1244         * Makefile.am (EXTRA_DIST): Remove $(XML).
1245         * Makefile.in: Regenerate.
1247 2018-12-20  Jacob Bachmeyer  <jcb62281@gmail.com>
1249         * Makefile.am (EXTRA_DIST): Add "dejagnu" launcher script and
1250         contents of $(commands_DATA).
1251         (bin_SCRIPTS): Add "dejagnu" launcher script.
1252         (commandsdir): Installation directory for "dejagnu" subcommands is
1253         $(pkgdatadir)/commands.
1254         (commands_DATA): New, contains "commands/help.sh" as initial item.
1255         (TESTSUITE_FILES): Add testsuite for same.
1256         (DEJATOOL): Add "launcher" to list of tools to test.
1257         (dist_man_MANS): Add man pages for "dejagnu" and "dejagnu help".
1259         * doc/dejagnu.texi (Running other DejaGnu commands): New chapter.
1260         (Invoking dejagnu): New node for dejagnu(1) launcher script.
1261         (Invoking dejagnu help): New node.
1263         * doc/dejagnu.1: New man page.
1264         * doc/dejagnu-help.1: New man page.
1266         * dejagnu: New script.
1268         * commands/help.sh: New dejagnu subcommand for reading manpages.
1270         * testsuite/launcher.all/command.exp: New file.
1271         * testsuite/launcher.all/command/commands/bar-baz.awk: New file.
1272         * testsuite/launcher.all/command/commands/bar.awk: New file.
1273         * testsuite/launcher.all/command/commands/bar.sh: New file.
1274         * testsuite/launcher.all/command/commands/baz-quux.gawk: New file.
1275         * testsuite/launcher.all/command/commands/foo.sh: New file.
1276         * testsuite/launcher.all/command/commands/foo.tcl: New file.
1277         * testsuite/launcher.all/help.exp: New file.
1278         * testsuite/launcher.all/interp.exp: New file.
1279         * testsuite/launcher.all/verbose.exp: New file.
1280         * testsuite/lib/launcher.exp: New file.
1282 2018-12-20  Jacob Bachmeyer  <jcb62281@gmail.com>
1284         * doc/dejagnu.texi (bt procedure): Fix Info links.
1286 2018-12-17  Ben Elliston  <bje@gnu.org>
1288         * doc/dejagnu.texi (Board config file): Fix up @ref.
1289         (Command line option variables): Likewise.
1290         (Debugging Procedures): Add an entry for 'bt' command.
1292 2018-12-16  Jacob Bachmeyer  <jcb62281@gmail.com>
1294         * runtest.exp: Move processing of -V|--version option to first
1295         pass through command line arguments instead of delaying it.
1297 2018-12-16  Jacob Bachmeyer  <jcb62281@gmail.com>
1299         * Makefile.am (RUNTESTDEFAULTFLAGS): Remove; no longer needed.
1300         * Makefile.in: Regenerate.
1302 2018-12-15  Ben Elliston  <bje@gnu.org>
1304         * doc/dejagnu.texi (telnet Procedure): Remove old node.
1305         (rlogin Procedure): Likewise.
1306         (rsh Procedure): Likewise.
1307         (tip Procedure): Likewise.
1308         (kermit Procedure): Likewise.
1309         (list_targets Procedure): Likewise.
1310         (prune_system_crud): Likewise.
1312 2018-12-15  Jacob Bachmeyer  <jcb62281@gmail.com>
1314         * testsuite/runtest.libs/default_procs.tcl (send_error): New stub.
1315         (send_user): Likewise.
1316         * testsuite/runtest.libs/clone_output.test: Remove unneeded global
1317         variable link at top-level.
1318         * testsuite/runtest.libs/utils.test: Adjust absolute path to
1319         config.status.
1320         * testsuite/runtest.libs/clone_output.test: Use preset srcdir,
1321         subdir, and objdir variables instead of extracting them from argv.
1322         Remove setval.tmp, which is now obsolete.
1323         * testsuite/runtest.libs/config.test: Likewise.
1324         * testsuite/runtest.libs/remote.test: Likewise.
1325         * testsuite/runtest.libs/target.test: Likewise.
1326         * testsuite/runtest.libs/testsuite_file.test: Likewise.
1327         * testsuite/runtest.libs/utils.test: Likewise.
1329         * testsuite/lib/libsup.exp (make_defaults_file): Replace this ..
1330         (send_defaults): .. with this.
1331         (start_expect): Remove redundant code.
1333         * testsuite/runtest.libs/libs.exp: Eliminate setval.tmp file.
1334         Remove unneeded test for EXPECT global variable.
1335         Use one Expect subprocess to run all test cases.
1336         (process_test): Redesign to use Expect subprocess and to use
1337         throwaway slave interpreters for running test cases.
1339 2018-12-15  Jacob Bachmeyer  <jcb62281@gmail.com>
1341         * testsuite/lib/runtest.exp (runtest_start): Remove.
1342         Move the sanity check in runtest_start to top-level and similarly
1343         check to ensure that $EXPECT can be found.  Make failure of either
1344         sanity check an immediate fatal error.
1345         Improve error messages for sanity checks to indicate which
1346         critical tool was not found.  Remove useless 'global RUNTEST'
1347         command at top-level.
1348         (runtest_version): Brace 'if' expression.
1350 2018-12-15  Jacob Bachmeyer  <jcb62281@gmail.com>
1352         * testsuite/lib/runtest.exp: Use 'testsuite file' to locate the
1353         default runtest executable instead of implicitly searching PATH.
1354         Remove unused RUNTESTFLAGS Tcl variable.
1356 2018-12-15  Jacob Bachmeyer  <jcb62281@gmail.com>
1358         * testsuite/lib/runtest.exp (runtest_start): Remove unused global
1359         variable links.
1361 2018-12-14  Jacob Bachmeyer  <jcb62281@gmail.com>
1363         * lib/framework.exp (log_summary): Remove "testcnt" mechanism.
1364         * testsuite/lib/libsup.exp: Remove obsolete "testcnt" variable.
1366 2018-12-12  Ben Elliston  <bje@gnu.org>
1368         * config/gdb-comm.exp, config/gdb_stub.exp, config/vxworks.exp,
1369         lib/dg.exp, lib/ftp.exp, lib/kermit.exp, lib/rlogin.exp,
1370         lib/telnet.exp, runtest.exp, testsuite/lib/libsup.exp: Simplify
1371         some regular expressions in constant strings by placing them
1372         inside braces instead of quotes. This allows one level of
1373         backslash quoting to be removed.
1375 2018-12-12  Ben Elliston  <bje@gnu.org>
1377         * doc/dejagnu.texi: Acknowledge contributions to the manual from
1378         others.
1380 2018-12-11  Jacob Bachmeyer  <jcb62281@gmail.com>
1382         * testsuite/runtest.all/libs.exp: Use "testsuite file" command.
1383         * testsuite/runtest.all/load_lib.exp: Likewise.
1384         * testsuite/runtest.all/stats.exp: Likewise.
1386         * testsuite/runtest.all/stats.exp: Write local init file as
1387         "stats-init.exp" for status summary tests.  Use --local_init
1388         option to runtest to load that file instead of site.exp and move
1389         the inner test module to a nested testsuite.
1390         * testsuite/runtest.all/stats-sub.exp: Move file from here ..
1391         * testsuite/runtest.all/stats/testsuite/stat.test/stats-sub.exp:
1392         .. to here.
1394         * testsuite/runtest.all/options.exp: Clean up whitespace in file.
1395         Wrap lines in test list and move short items to beginning of list.
1396         Write local init file as "options-init.exp" for options tests.
1397         Use --local_init option with nested runtest to load that file
1398         instead of site.exp; also create an empty nested testsuite.  Local
1399         init file arranges for inner runtest processes to run in a
1400         subdirectory in the object tree to eliminate filename clashes.
1401         Set tmpdir if not already set and remove entire temporary
1402         directory after running options tests.
1403         * testsuite/runtest.all/options/testsuite/null.test/null.exp: New.
1405         * testsuite/runtest.all/clone_output.test: Move from here ..
1406         * testsuite/runtest.libs/clone_output.test: .. to here.
1407         * testsuite/runtest.all/config.test: Move from here ..
1408         * testsuite/runtest.libs/config.test: .. to here.
1409         * testsuite/runtest.all/default_procs.tcl: Move from here ..
1410         * testsuite/runtest.libs/default_procs.tcl: .. to here.
1411         * testsuite/runtest.all/libs.exp: Move from here ..
1412         * testsuite/runtest.libs/libs.exp: .. to here.
1413         * testsuite/runtest.all/load_lib.exp: Move from here ..
1414         * testsuite/runtest.libs/load_lib.exp: .. to here.
1415         * testsuite/runtest.all/remote.test: Move from here ..
1416         * testsuite/runtest.libs/remote.test: .. to here.
1417         * testsuite/runtest.all/target.test: Move from here ..
1418         * testsuite/runtest.libs/target.test: .. to here.
1419         * testsuite/runtest.all/testsuite_file.test: Move from here ..
1420         * testsuite/runtest.libs/testsuite_file.test: .. to here.
1421         * testsuite/runtest.all/topdir/subdir1/subfile1: Move from here ..
1422         * testsuite/runtest.libs/topdir/subdir1/subfile1: .. to here.
1423         * testsuite/runtest.all/topdir/subdir1/subfile2: Move from here ..
1424         * testsuite/runtest.libs/topdir/subdir1/subfile2: .. to here.
1425         * testsuite/runtest.all/topdir/subdir1/subsubdir1/subsubfile1:
1426         Move from here ..
1427         * testsuite/runtest.libs/topdir/subdir1/subsubdir1/subsubfile1:
1428         .. to here.
1429         * testsuite/runtest.all/topdir/subdir2/subfile2: Move from here ..
1430         * testsuite/runtest.libs/topdir/subdir2/subfile2: .. to here.
1431         * testsuite/runtest.all/utils.test: Move from here ..
1432         * testsuite/runtest.libs/utils.test: .. to here.
1433         * testsuite/runtest.libs/utils.test: Update references to
1434         "runtest.all".
1436         * testsuite/runtest.all/options.exp: Move from here ..
1437         * testsuite/runtest.main/options.exp: .. to here.
1438         * testsuite/runtest.all/options/testsuite/null.test/null.exp: Move
1439         from here ..
1440         * testsuite/runtest.main/options/testsuite/null.test/null.exp:
1441         .. to here.
1442         * testsuite/runtest.all/stats.exp: Move from here ..
1443         * testsuite/runtest.main/stats.exp: .. to here.
1444         * testsuite/runtest.all/stats/testsuite/stat.test/stats-sub.exp:
1445         Move from here ..
1446         * testsuite/runtest.main/stats/testsuite/stat.test/stats-sub.exp:
1447         .. to here.
1449         * Makefile.am (DISTCLEANFILES): Update for testsuite improvements.
1450         (TESTSUITE_FILES): Update to reflect testsuite reorganization.
1451         * Makefile.in: Regenerate.
1453 2018-12-11  Jacob Bachmeyer  <jcb62281@gmail.com>
1455         * doc/dejagnu.texi: Clean up whitespace.  Some indented examples
1456         were changed to use the Texinfo '@ ' command (yes, a space
1457         character) to preserve correct indentation.  The '@ ' command is
1458         treated as a single space by Tex and makeinfo, but prevents Emacs
1459         from complaining about indentation using spaces instead of tabs.
1461 2018-12-11  Jacob Bachmeyer  <jcb62281@gmail.com>
1463         * doc/dejagnu.texi (getdirs procedure): Document hard-coded
1464         directory exclusions by name in this procedure.
1466 2018-12-10  Ben Elliston  <bje@gnu.org>
1468         * doc/dejagnu.texi (getdirs procedure): This procedure accepts Tcl
1469         glob patterns, not "shell wildcard characters" per se.
1471         * doc/dejagnu.texi (istarget procedure): Remove stray @{.
1473 2018-12-10  Jacob Bachmeyer  <jcb62281@gmail.com>
1475         * doc/dejagnu.texi (Writing a test case): Add warning about
1476         priority of Expect patterns, complete with example.
1477         * testsuite/runtest.all/libs.exp (process_test): Fix bug that
1478         caused test results other than "PASS" to be skipped if a "PASS" is
1479         further along in the input buffer.  Describe problem in manual.
1480         (process_test): Ensure that the log file shows each test case run.
1481         (process_test): Directly run the test cases instead of using
1482         temporary files and "cat".  All output is always available in the
1483         log file, which is no longer overwritten by other tests.
1484         (process_test): Expect END markers from test case scripts.
1485         * testsuite/runtest.all/clone_output.test: Emit END markers.
1486         * testsuite/runtest.all/config.test: Likewise.
1487         * testsuite/runtest.all/remote.test: Likewise.
1488         * testsuite/runtest.all/target.test: Likewise.
1489         * testsuite/runtest.all/testsuite_file.test: Likewise.
1490         * testsuite/runtest.all/utils.test: Likewise.
1492 2018-12-10  Ben Elliston  <bje@gnu.org>
1494         * lib/utils.exp (grep): Use a proper Tcl list for options.
1496 2018-12-10  Ben Elliston  <bje@gnu.org>
1498         * testsuite/runtest.all/utils.test: ${srcdir} -> $srcdir.
1500         * lib/utils.exp (getdirs): Use glob -nocomplain rather than glob
1501         and catching the "no files matched glob pattern" error
1502         message. Catching the error message was the wrong thing to do
1503         because the foreach loop then iterates over each word in the error
1504         message as if they were matches.
1506 2018-12-10  Ben Elliston  <bje@gnu.org>
1508         * testsuite/runtest.all/utils.test (getdirs): Add a test for the
1509         non-existent directory case.
1511 2018-12-10  Ben Elliston  <bje@gnu.org>
1513         * runtest.exp: Remove unnecessary quotes and braces around
1514         variable expansions.
1516         * lib/debugger.exp (dumpvars): Remove unnecessary braces.
1518 2018-12-09  Ben Elliston  <bje@gnu.org>
1520         * runtest.exp (setup_target_hook): Use 'ne' and not '!='.
1521         (iterate_target_variants_two): Likewise.
1522         * lib/remote.exp (standard_download): Use 'eq' not '=='.
1523         (remote_upload): Likewise.
1524         * lib/framework.exp (open_logs): Likewise.
1525         (is_remote): Likewise.
1527 2018-12-09  Ben Elliston  <bje@gnu.org>
1529         * baseboards/basic-sid.exp, baseboards/basic-sim.exp,
1530         baseboards/i386-sid.exp, baseboards/mt-sid.exp,
1531         baseboards/sh-sid.exp, config/adb.exp, config/gdb-comm.exp,
1532         config/gdb_stub.exp, config/sim.exp, config/unix.exp,
1533         config/vxworks.exp, lib/dejagnu.exp, lib/dg.exp,
1534         lib/framework.exp, lib/kermit.exp, lib/libgloss.exp,
1535         lib/remote.exp, lib/rsh.exp, lib/target.exp, lib/tip.exp,
1536         lib/utils.exp, testsuite/lib/libsup.exp,
1537         testsuite/runtest.all/options.exp,: Remove unnecessary braces
1538         around variable expansions.
1540 2018-12-09  Ben Elliston  <bje@gnu.org>
1542         * lib/debugger.exp, lib/dg.exp, lib/framework.exp, lib/ftp.exp,
1543         lib/kermit.exp, lib/libgloss.exp, lib/remote.exp, lib/rlogin.exp,
1544         lib/target.exp, lib/tip.exp, lib/utils.exp, runtest.exp: Remove
1545         unnecessary quotes and braces around variable expansions.
1547 2018-12-09  Ben Elliston  <bje@gnu.org>
1549         * config/gdb-comm.exp: Remove unnecessary quotes.
1550         * config/gdb_stub.exp: Likewise.
1551         * config/vxworks.exp: Likewise.
1552         * config/unix.exp: Likewise.
1553         * config/sim.exp: Likewise.
1555 2018-12-09  Ben Elliston  <bje@gnu.org>
1557         * testsuite/lib/libsup.exp: Remove unnecessary quotes around
1558         variable expansions.
1559         * testsuite/lib/util-defs.exp: Likewise.
1561 2018-12-09  Ben Elliston  <bje@gnu.org>
1563         * baseboards/androideabi.exp: Remove unnecessary quotes and braces
1564         around variable expansions.
1565         * baseboards/basic-sid.exp: Likewise.
1566         * baseboards/cris-sim.exp: Likewise.
1567         * baseboards/generic-sim.exp: Likewise.
1568         * baseboards/mcore-moto-sim.exp: Likewise.
1569         * baseboards/multi-sim.exp: Likewise.
1571 2018-12-08  Ben Elliston  <bje@gnu.org>
1573         * NEWS: Tweak.
1575 2018-12-08  Ben Elliston  <bje@gnu.org>
1577         * lib/dejagnu.exp (host_execute): Remove unnecessary quotes around
1578         variable expansions.
1579         * testsuite/runtest.all/clone_output.test: Likewise.
1580         * testsuite/runtest.all/target.test: Likewise.
1581         * testsuite/runtest.all/stats.exp: Likewise.
1582         * testsuite/runtest.all/remote.test: Likewise.
1583         * testsuite/runtest.all/config.test: Likewise.
1584         * testsuite/runtest.all/default_procs.tcl: Likewise.
1585         * testsuite/runtest.all/libs.exp: Likewise.
1586         * testsuite/runtest.all/options.exp: Likewise.
1588 2018-12-08  Jacob Bachmeyer  <jcb62281@gmail.com>
1590         * NEWS: Document 'testsuite' command.
1591         * doc/dejagnu.texi (testsuite procedure): Document multiplex entry
1592         point and "testsuite file" command.
1593         * lib/framework.exp (testsuite): New proc for multiplex commands.
1594         (testsuite_file): New proc implementing "testsuite file".
1595         * testsuite/runtest.all/testsuite_file.test: New file.
1596         * runtest.exp: Expect to find testsuite in ${srcdir}/testsuite,
1597         but also search $srcdir itself.
1598         (load_lib): Add explicit search for testsuite-local libraries.
1599         (load_tool_init): Use $testsuitedir in search.
1600         (load_config): Use $testsuitedir instead of $srcdir.
1601         (load_tool_target_config): Likewise.
1603         Add variable "testsuitedir" for testsuite root directory.
1605         Add internal global variables "testbuilddir" and "testdir" for use
1606         by "testsuite file".
1608         Ensure that $testsuitedir, $testbuilddir, and $objdir also avoid
1609         duplicated path delimiters.
1611         Add warning if no tests are found and fallback method of searching
1612         $srcdir is used.
1614 2018-12-08  Ben Elliston  <bje@gnu.org>
1616         * testsuite/lib/libsup.exp (start_expect): Brace commands in if
1617         expressions.
1618         * testsuite/lib/util-defs.exp (util_test): Likewise.
1619         * testsuite/runtest.all/stats.exp: Likewise.
1620         * testsuite/runtest.all/libs.exp: Likewise.
1622 2018-12-08  Jacob Bachmeyer  <jcb62281@gmail.com>
1624         * testsuite/runtest.all/default_procs.tcl:
1625         (lib_errpat_test, lib_errregexp_test, lib_err_test): New.
1626         (lib_regexp_test): Fix copy-paste-edit error.
1627         (lib_pat_test, lib_regexp_test, lib_ret_test, lib_bool_test):
1628         Fix handling of errors raised by tested procedure.  Also ensure
1629         proper quoting of argument lists passed to eval and simplify
1630         the logic for producing return values.
1632 2018-12-08  Ben Elliston  <bje@gnu.org>
1634         * config/vxworks.exp (${board}_init): Use 'ne' instead of !=.
1636 2018-12-08  Ben Elliston  <bje@gnu.org>
1638         * lib/tip.exp (tip_open): Put braces around if expression.
1640 2018-12-08  Ben Elliston  <bje@gnu.org>
1642         * runtest.exp, lib/utils.exp, lib/targetdb.exp, lib/target.exp,
1643         lib/remote.exp, lib/framework.exp, lib/dg.exp, config/vxworks.exp,
1644         config/sim.exp, config/gdb_stub.exp, config/aarch64-fv8.exp,
1645         baseboards/vr4300-sim.exp, baseboards/vr4111-sim.exp,
1646         baseboards/vr4100-sim.exp, baseboards/sh-sid.exp,
1647         baseboards/mt-sid.exp, baseboards/mips-sim.exp,
1648         baseboards/mips-sim-idt64.exp, baseboards/mips-sim-idt32.exp,
1649         baseboards/i386-sid.exp, baseboards/arm-sim.exp,
1650         baseboards/arm-ice.exp, baseboards/androideabi.exp,
1651         testsuite/runtest.all/utils.test,
1652         testsuite/runtest.all/target.test: Replace string literal
1653         comparisons using == and != with 'eq' and 'ne'.
1655 2018-12-08  Ben Elliston  <bje@gnu.org>
1657         * runtest.exp, lib/utils.exp, lib/target.exp, lib/ssh.exp,
1658         lib/rsh.exp, lib/rlogin.exp, lib/remote.exp, lib/libgloss.exp,
1659         lib/framework.exp, lib/dg.exp, lib/dejagnu.exp,
1660         config/vxworks.exp, config/unix.exp, config/sim.exp,
1661         config/gdb_stub.exp, config/gdb-comm.exp, config/adb.exp,
1662         baseboards/multi-sim.exp, baseboards/cris-sim.exp,
1663         baseboards/basic-sim.exp, baseboards/basic-sid.exp,
1664         baseboards/androideabi.exp, testsuite/runtest.all/load_lib.exp,
1665         testsuite/libdejagnu/tunit.exp: Replace empty string comparisons
1666         using == and != with 'eq' and 'ne'.
1668 2018-12-07  Jacob Bachmeyer  <jcb62281@gmail.com>
1670         * testsuite/runtest.all/default_procs.tcl (lib_bool_test): New.
1671         (lib_regexp_test): New.
1672         (lib_pat_test): Brace "if" conditions.
1673         (lib_pat_test): Remove spurious quotes in debugging output.
1674         (run_tests): Add support for comments in lists of procedure tests.
1676         * testsuite/runtest.all/config.test: Adjust to use run_tests
1677         procedure. Fixes issue cited in FIXME comment.
1679         * testsuite/runtest.all/utils.test (getdirs tests): Fix these.
1680         The old tests had the sense of the return value from lib_pat_test
1681         inverted and were failing but reported PASS.
1682         (find tests, relative_filename tests, runtest_file_p tests):
1683         Adjust to use run_tests procedure.
1685 2018-12-07  Ben Elliston  <bje@gnu.org>
1687         * doc/dejagnu.texi: Add more missing material.
1689 2018-12-07  Jacob Bachmeyer  <jcb62281@gmail.com>
1691         * testsuite/runtest.all/default_procs.tcl (lib_ret_test): Tidy.
1692         (run_tests): Replace implicit "eval" with explicit "eval".  Tidy.
1693         (verbose): Remove unnecessary quotes.
1695 2018-12-06  Ben Elliston  <bje@gnu.org>
1697         * doc/dejagnu.texi: Add more missing material.
1699 2018-12-06  Jacob Bachmeyer  <jcb62281@gmail.com>
1701         * testsuite/runtest.all/default_procs.tcl: Whitespace clean up.
1702         (lib_pat_test): Handle an argument list instead of only a single
1703         argument for the procedure under test.
1704         (lib_ret_test): Likewise.
1705         * testsuite/runtest.all/utils.test: Whitespace clean up.
1706         Adjust to pass argument lists for improved lib_pat_test.
1707         * testsuite/runtest.all/clone_output.test: Likewise.
1709 2018-12-06  Jacob Bachmeyer  <jcb62281@gmail.com>
1711         * lib/remote.exp (standard_load): Fix typo on empty string.
1712         * runtest.exp: Adjust expression to follow GNU conventions.
1713         * lib/utils.exp (diff): Fix mistake in replacing [string compare]
1714         with "eq" instead of "ne".
1715         * testsuite/runtest.all/config.test: Likewise.
1717 2018-12-06  Ben Elliston  <bje@gnu.org>
1719         * runtest.exp: Replace [string match] commands involving literal
1720         strings and variables known to not be Tcl glob patterns with eq
1721         and ne.
1722         * config/unix.exp: Likewise.
1723         * lib/debugger.exp: Likewise.
1724         * lib/dg.exp: Likewise.
1725         * lib/framework.exp: Likewise.
1726         * lib/remote.exp: Likewise.
1727         * lib/utils.exp: Likewise.
1728         * baseboards/androideabi.exp: Likewise.
1729         * baseboards/multi-sim.exp: Likewise.
1730         * testsuite/lib/util-defs.exp: Likewise.
1731         * testsuite/runtest.all/config.test: Likewise.
1733 2018-12-06  Jacob Bachmeyer  <jcb62281@gmail.com>
1735         * testsuite/runtest.all/utils.test: Add Tcl mode marker for Emacs.
1736         * testsuite/runtest.all/target.test: Likewise.
1737         * testsuite/runtest.all/remote.test: Likewise.
1738         * testsuite/runtest.all/config.test: Likewise.
1739         * testsuite/runtest.all/clone_output.test: Likewise.
1741 2018-12-06  Ben Elliston  <bje@gnu.org>
1743         * runtest.exp: Replace '==' with 'eq' for string compares.
1744         Likewise, replace '!=' with 'ne'. Replace a few instances of
1745         [string length $str] == 0 with $str eq "".
1746         * config/gdb-comm.exp: Likewise.
1747         * lib/dg.exp: Likewise.
1748         * lib/framework.exp: Likewise.
1749         * lib/libgloss.exp: Likewise.
1750         * lib/remote.exp: Likewise.
1751         * lib/target.exp: Likewise.
1752         * lib/utils.exp: Likewise.
1754 2018-12-06  Jacob Bachmeyer  <jcb62281@gmail.com>
1756         * runtest.exp: Replace archaic use of [string match] with "eq".
1758 2018-12-06  Ben Elliston  <bje@gnu.org>
1760         * doc/dejagnu.texi (compile Procedure): Remove old node.
1761         (archive Procedure): Likewise.
1762         (ranlib Procedure): Likewise.
1764 2018-12-06  Ben Elliston  <bje@gnu.org>
1766         * doc/dejagnu.texi (rsh procedure): Fix node connectivity.
1768 2018-12-06  Ben Elliston  <bje@gnu.org>
1770         * lib/telnet.exp (telnet_open): Remove connectmode global.
1771         * doc/dejagnu.texi (Procedures For Remote Communication): Remove
1772         mention of connectmode.
1774 2018-12-05  Ben Elliston  <bje@gnu.org>
1776         * doc/dejagnu.texi (execute_anywhere Procedure): Remove obsolete
1777         node.
1779 2018-12-05  Ben Elliston  <bje@gnu.org>
1781         * doc/dejagnu.texi: Add more missing material.
1783 2018-12-05  Ben Elliston  <bje@gnu.org>
1785         * testsuite/runtest.all/utils.test: Test runtest_file_p.
1787 2018-12-05  Jacob Bachmeyer  <jcb62281@gmail.com>
1789         * runtest.exp (load_config): Remove unused globals.
1790         (load_generic_config): Likewise.
1791         (load_board_description): Likewise.
1792         (load_base_board_description): Likewise.
1794 2018-12-05  Ben Elliston  <bje@gnu.org>
1796         * lib/utils.exp (grep): Handle -n.
1797         * doc/dejagnu.texi (grep procedure): Document it.
1798         * testsuite/runtest.all/utils.test: Add a test case.
1799         * NEWS: Add an item.
1801 2018-12-05  Ben Elliston  <bje@gnu.org>
1803         * testsuite/runtest.all/utils.test: Test diff.
1805 2018-12-04  Ben Elliston  <bje@gnu.org>
1807         * testsuite/runtest.all/utils.test: Test grep.
1809 2018-12-04  Ben Elliston  <bje@gnu.org>
1811         * testsuite/runtest.all/utils.test (which): Fail on the else path,
1812         don't pass in either case.
1814 2018-12-04  Ben Elliston  <bje@gnu.org>
1816         * doc/dejagnu.texi (Libgloss): Improve documentation.
1817         (Debugging Procedures): Likewise.
1819 2018-12-04  Ben Elliston  <bje@gnu.org>
1821         * lib/debugger.exp (dumprocs): Fix proc comment.
1823 2018-12-04  Ben Elliston  <bje@gnu.org>
1825         * doc/dejagnu.texi (Utility Procedures): Improve documentation for
1826         the procedures in this section.
1828 2018-12-04  Jacob Bachmeyer  <jcb62281@gmail.com>
1830         * NEWS: Document new relative_filename procedure and --local_init/
1831         --global_init command line options.
1833 2018-12-04  Jacob Bachmeyer  <jcb62281@gmail.com>
1835         * lib/utils.exp (relative_filename): New proc.
1836         * runtest.exp: Use it.
1837         * doc/dejagnu.texi (relative_filename procedure): Document it.
1838         * testsuite/runtest.all/utils.test: Add tests for relative_filename.
1840 2018-12-03  Ben Elliston  <bje@gnu.org>
1842         * dejagnu.h (TestState): Remove const char * variants of pass(),
1843         xpass(), fail(), xfail(), untested(), unresolved() for C++. A
1844         const char * will be implicitly converted to std::string.
1846 2018-12-03  Ben Elliston  <bje@gnu.org>
1848         * doc/dejagnu.texi: Move 'Built-in Procedures' node up a level,
1849         removing the 'Reference' node and chapter. Make all subsubsections
1850         in this chapter unnumbered subheadings.
1852 2018-12-03  Jacob Bachmeyer  <jcb62281@gmail.com>
1854         * doc/dejagnu.texi: Fix Info node links.  The arguments to @node
1855         are: here, next, previous, up; not here, previous, next, up.
1857 2018-12-03  Ben Elliston  <bje@gnu.org>
1859         * Makefile.am (EXTRA_DIST): Use $(TEXINFO_TEX), not a hardcoded
1860         doc/texinfo.tex. With thanks to Jacob Bachmeyer.
1861         * Makefile.in: Regenerate.
1863 2018-12-03  Ben Elliston  <bje@gnu.org>
1865         * Makefile.am (TEXINFO_TEX): Set to doc/texinfo.tex.
1866         (EXTRA_DIST): Add doc/texinfo.tex. Setting TEXINFO_TEX otherwise
1867         prevents the distribution of the overridden texinfo.tex.
1868         * Makefile.in: Regenerate.
1869         * texinfo.tex: Move from here ..
1870         * doc/texinfo.tex: .. to here.
1872 2018-12-03  Ben Elliston  <bje@gnu.org>
1874         * lib/framework.exp (isremote): Add verbose message.
1876 2018-12-02  Ben Elliston  <bje@gnu.org>
1878         * lib/framework.exp (isremote): Pass $board to is_remote.
1880 2018-12-02  Ben Elliston  <bje@gnu.org>
1882         * doc/fdl.texi: New.
1883         * doc/dejagnu.texi (Variable Index): New.
1884         Add more concept index entries.
1885         (GNU Free Documentation License): New appendix.
1887 2018-12-02  Ben Elliston  <bje@gnu.org>
1889         * doc/dejagnu.texi (Procedure Index): New. Add Texinfo function
1890         index (@findex) entries for every built-in procedure.
1892 2018-12-02  Ben Elliston  <bje@gnu.org>
1894         * doc/dejagnu.texi: Start an index.
1896 2018-12-02  Ben Elliston  <bje@gnu.org>
1898         * doc/version.texi: New.
1900 2018-12-02  Ben Elliston  <bje@gnu.org>
1902         * doc/dejagnu.texi: Add title page and frontmatter. Include
1903         version.texi.
1904         * Makefile.in: Regenerate.
1905         * mdate-sh: Installed by automake --add-missing.
1907 2018-12-02  Ben Elliston  <bje@gnu.org>
1909         * doc/dejagnu.texi (diff procedure): Tidy up this node.
1911 2018-12-02  Jacob Bachmeyer  <jcb62281@gmail.com>
1913         * runtest.exp (hex): Remove useless test before setting.
1914         (decimal): Likewise.
1916 2018-12-02  Jacob Bachmeyer  <jcb62281@gmail.com>
1918         * doc/dejagnu.texi (Invoking runtest): Document new --local_init
1919         and --global_init command line options.
1920         * doc/runtest.1: Likewise.
1922         * runtest.exp: Remove useless tests before setting default values
1923         for variables: all_flag, binpath, debug, options, outdir, reboot,
1924         tracelevel, verbose, log_dialog.  They are set before loading any
1925         files or parsing the command line.
1927         * runtest.exp: Add options --local_init and --global_init for
1928         selecting alternate testsuite configuration files.
1930         * runtest.exp: Split variable "configfile" into "local_init_file"
1931         and "global_init_file" in preparation for adding command-line
1932         options to specify these independently.
1934         * runtest.exp (load_generic_config): Remove configfile global.
1935         (load_board_description): Likewise.
1936         (load_base_board_description): Likewise.
1938 2018-11-30  Ben Elliston  <bje@gnu.org>
1940         * lib/utils.exp (grep): Remove reference to "NULL" in comment.
1941         * testsuite/lib/util-defs.exp (util_start): Likewise.
1943 2018-11-30  Ben Elliston  <bje@gnu.org>
1945         * doc/dejagnu.texi: (verbose procedure): Improve documentation.
1946         (load_lib procedure): Likewise.
1948 2018-11-30  Ben Elliston  <bje@gnu.org>
1950         * doc/dejagnu.texi: More clean-ups of built-in proc documentation.
1952 2018-11-30  Ben Elliston  <bje@gnu.org>
1954         * runtest.exp: Use isremote.
1955         * lib/target.exp: Likewise.
1956         * lib/remote.exp: Likewise.
1957         * lib/libgloss.exp: Likewise.
1958         * config/unix.exp: Likewise.
1959         * config/sim.exp: Likewise.
1960         * config/gdb_stub.exp: Likewise.
1961         * config/gdb-comm.exp: Likewise.
1962         * baseboards/basic-sim.exp: Likewise.
1963         * baseboards/androideabi.exp: Likewise.
1965 2018-11-30  Ben Elliston  <bje@gnu.org>
1967         * lib/framework.exp (isremote): New.
1968         * doc/dejagnu.texi (isremote procedure): Document it.
1969         * NEWS: Mention isremote.
1971 2018-11-30  Ben Elliston  <bje@gnu.org>
1973         * texinfo.tex: Update to latest upstream version.
1974         * INSTALL: Likewise.
1976 2018-11-29  Ben Elliston  <bje@gnu.org>
1978         * lib/framework.exp (istarget, ishost, istarget): Set the argument
1979         default value to the empty string.
1980         * doc/dejagnu.texi (find procedure): Remove reference to "NULL".
1981         (getenv procedure): Re-word this node.
1982         (isbuild procedure): Update.
1983         (ishost procedure): Likewise.
1984         (istarget procedure): Likewise.
1985         * testsuite/runtest.all/config.test: Add test cases.
1987 2018-11-28  Ben Elliston  <bje@gnu.org>
1989         * config.guess: Update to latest version.
1990         * config.sub: Likewise.
1992 2018-11-28  Ben Elliston  <bje@gnu.org>
1994         * NEWS: Update.
1995         * configure.ac: Update version number.
1996         * configure: Regenerate.
1997         * doc/dejagnu.texi: Update version number.
1998         * runtest.exp: Update version number.
2000 2018-11-28  Ben Elliston  <bje@gnu.org>
2002         * Makefile.am (TESTSUITE_FILES): Update filenames.
2003         * Makefile.in: Regenerate.
2005 2018-11-28  Ben Elliston  <bje@gnu.org>
2007         * NEWS: Update.
2009         * doc/dejagnu.texi: Tidy up (fill) some paragraphs.
2011 2018-11-25  Jacob Bachmeyer  <jcb62281@gmail.com>
2013         * lib/framework.exp: Clean up whitespace.
2015 2018-11-25  Ben Elliston  <bje@gnu.org>
2017         * config/gdb-comm.exp: Clean up whitespace.
2018         * config/gdb_stub.exp: Likewise.
2019         * config/sid.exp: Likewise.
2020         * config/sim.exp: Likewise.
2021         * config/unix.exp: Likewise.
2023 2018-11-23  Ben Elliston  <bje@gnu.org>
2025         * doc/dejagnu.texi (getdirs procedure): Improve documentation
2026         including documenting the -all option.
2027         (find procedure): Fix a typo.
2028         * lib/utils.exp (getdirs): Improve comments.
2030 2018-11-22  Jacob Bachmeyer  <jcb62281@gmail.com>
2032         * runtest.exp: Ensure that multipass pass variables are always
2033         restored.  Previously, they were only restored if the "Go digging
2034         for tests" branch was taken near the end of runtest.exp.
2036 2018-11-22  Ben Elliston  <bje@gnu.org>
2038         * doc/dejagnu.texi (Customizing DejaGnu): Document error handling
2039         of the $DEJAGNU environment variable (see change below).
2041 2018-11-22  Jacob Bachmeyer  <jcb62281@gmail.com>
2043         * runtest.exp: Raise error if $DEJAGNU is defined but not found.
2045 2018-11-15  Jacob Bachmeyer  <jcb62281@gmail.com>
2047         * runtest.exp (load_tool_init): Search for tool init file instead
2048         of assuming exactly one location.
2050 2018-11-15  Ben Elliston  <bje@gnu.org>
2052         * runtest.exp (load_lib): Whitespace fix.
2054 2018-11-11  Jacob Bachmeyer  <jcb62281@gmail.com>
2056         * lib/ssh.exp: Clean up whitespace.
2057         * lib/remote.exp: Clean up whitespace.
2058         (remote_expect): Change literal tab to "\t" in regexp.
2060 2018-11-05  Ben Elliston  <bje@gnu.org>
2062         * config.guess: Update to latest version.
2063         * config.sub: Likewise.
2065 2018-11-02  Ben Elliston  <bje@gnu.org>
2067         * Makefile.in: Regenerate.
2069 2018-10-31  Jacob Bachmeyer  <jcb62281@gmail.com>
2071         * Makefile.am (DEJATOOL): List tools in testsuite.
2072         (RUNTESTDEFAULTFLAGS): Adjust to support per-tool testing.
2073         * testsuite/config/default.exp: Rename from this ...
2074         * testsuite/lib/runtest.exp: ... to this.
2075         (runtest_exit): Remove spurious "close". This was causing per-tool
2076         testing to fail, since the testsuite for "runtest" never actually
2077         uses "spawn", so "close" ends up closing exp0, which is the
2078         terminal.  The ${tool}_exit proc is not called if the --tool
2079         option is not given, so this had no effect earlier.
2080         * testsuite/lib/libdejagnu.exp: New empty file.
2082 2018-10-31  Jacob Bachmeyer  <jcb62281@gmail.com>
2084         * runtest.exp (load_tool_init): Add message indicating the
2085         expected location of the tool init file.
2087 2018-10-31  Jacob Bachmeyer  <jcb62281@gmail.com>
2089         * contrib/sum2junit.sh (failures): Fix typo.
2091 2018-10-31  Jacob Bachmeyer  <jcb62281@gmail.com>
2093         * configure.ac (DEJAGNU): Add comments.
2095 2018-10-31  Jacob Bachmeyer  <jcb62281@gmail.com>
2097         * Makefile.am (DEJATOOL): List tools in testsuite.
2098         (RUNTESTDEFAULTFLAGS): Adjust to support per-tool testing.
2099         * testsuite/config/default.exp: Rename from this ...
2100         * testsuite/lib/runtest.exp: ... to this.
2101         (runtest_exit): Remove spurious "close".  This was causing
2102         per-tool testing to fail, since the testsuite for "runtest" never
2103         actually uses "spawn", so "close" ends up closing exp0, which is
2104         the terminal.  The ${tool}_exit proc is not called if the --tool
2105         option is not given, so this had no effect earlier.
2106         * testsuite/lib/libdejagnu.exp: New empty file.
2108 2018-10-30  Ben Elliston  <bje@gnu.org>
2110         * Makefile.am (DISTCLEANFILES): Add testrun.xml.
2111         * Makefile.in: Regenerate with Automake 1.15.1.
2112         * aclocal.m4: Likewise.
2114 2018-10-30  Ben Elliston  <bje@gnu.org>
2116         * configure.ac (AC_CONFIG_SUBDIRS): Remove.
2117         * configure: Regenerate.
2119 2018-10-29  Ben Elliston  <bje@gnu.org>
2121         * README (Documentation): Update.
2123 2018-10-28  Jacob Bachmeyer  <jcb62281@gmail.com>
2125         * lib/framework.exp (record_test): Really fix message formatting.
2127 2018-10-29  Ben Elliston  <bje@gnu.org>
2129         Reported by Jacob Bachmeyer.
2130         * testsuite/runtest.all/utils.test: Fix missing end quote.
2132 2018-10-28  Jacob Bachmeyer  <jcb62281@gmail.com>
2134         * lib/framework.exp (record_test): Fix message formatting.
2136 2018-07-20  Ben Elliston  <bje@gnu.org>
2138         * contrib/mysql/make-datafile.sh: Eliminate Shellcheck warnings.
2139         * contrib/mysql/sum2xml.sh: Likewise.
2141 2018-07-20  Ben Elliston  <bje@gnu.org>
2143         * contrib/compare_tests: Eliminate Shellcheck warnings.
2144         * contrib/mysql/sum2xml.sh: Likewise.
2146 2018-07-20  Ben Elliston  <bje@gnu.org>
2148         * compile, depcomp, install-sh: Latest upstream versions.
2150 2018-07-20  Ben Elliston  <bje@gnu.org>
2152         * contrib/sum2junit.sh: Eliminate some Shellcheck warnings.
2154 2018-07-19  Ben Elliston  <bje@gnu.org>
2156         * runtest: Use POSIX 'command', not 'type', to look for the Expect
2157         binary. Silences Shellcheck warning SC2039 ("In POSIX sh, 'type'
2158         is undefined").
2160 2018-07-19  Ben Elliston  <bje@gnu.org>
2162         * config.guess: Update to latest version.
2163         * config.sub: Likewise.
2165 2018-07-06  Richard Biener  <rguenther@suse.de>
2167         * lib/remote.exp (close_wait_program): Use separate kill command
2168         for each pid.
2170 2017-10-16  Ben Elliston  <bje@gnu.org>
2172         * NEWS: Start a new section for the next release.
2173         * configure.ac (AC_INIT): Update version number.
2174         * configure: Regenerate.
2175         * runtest.exp (frame_version): Update version number.
2176         * doc/dejagnu.texi: Likewise.
2177         * doc/runtest.1: Update datestamp.
2179 2017-10-16  Ben Elliston  <bje@gnu.org>
2181         * config.guess: Update to version 2017-09-26.
2182         * config.sub: Likewise.
2184 2017-09-13  Ben Elliston  <bje@gnu.org>
2186         * lib/framework.exp (open_logs): Set XML version to 1.1.
2187         (xml_tag): Skip valid whitespace chars (0x9, 0xA, 0xD). Include
2188         missing 'x' in escape sequence.
2190 2017-08-29  Ben Elliston  <bje@gnu.org>
2192         Revert these changes:
2194         2016-04-25  Ben Elliston  <bje@gnu.org>
2196         * testsuite/runtest.all/utils.test: Remove unsetenv test.
2198         2016-04-24  Ben Elliston  <bje@gnu.org>
2200         * lib/utils.exp (unsetenv): Remove proc.
2201         * doc/dejagnu.texi: Update documentation.
2202         * NEWS: Update.
2204 2017-08-19  Ben Elliston  <bje@gnu.org>
2206         * lib/framework.exp (xml_tag): Escape all of the non-printable
2207         control characters (ASCII codes 1 to 31 inclusive).
2209 2017-08-18  Tom Tromey  <tom@tromey.com>
2211         * runtest.exp: Fix --directory matching.
2213 2017-08-15  Ben Elliston  <bje@gnu.org>
2215         * lib/framework.exp (xml_tag): New proc.
2216         (log_summary): Use it.
2217         (record_test): Likewise.
2219 2017-08-15  Ben Elliston  <bje@gnu.org>
2221         * lib/framework.exp (open_logs): Set .xml filename correctly.
2222         * runtest.exp: Remove xml_file_name var.
2223         (usage): Update --xml option to not take an argument.
2224         (load_tool_init): Likewise.
2225         * doc/dejagnu.texi (Invoking runtest): Update documentation.
2226         * doc/runtest.1: Likewise.
2228 2017-08-01  Ben Elliston  <bje@gnu.org>
2230         * runtest.exp (usage): Improve --strace message.
2232 2017-08-01  Ben Elliston  <bje@gnu.org>
2234         * runtest.exp (usage): --reboot doesn't take a 'name' parameter.
2236 2017-06-04  Ben Elliston  <bje@gnu.org>
2238         * lib/target.exp (push_target): Remove unnecessary global command.
2239         * testsuite/runtest.all/target.test: Overhaul tests.
2241 2017-06-04  Ben Elliston  <bje@gnu.org>
2243         * testsuite/runtest.all/remote.test: Remove cruft from yesteryear.
2245 2017-06-04  Tom de Vries  <tom@codesourcery.com>
2247         * testsuite/runtest.all/target.test: Remove list_targets test.
2249 2017-06-04  Tom de Vries  <tom@codesourcery.com>
2251         * testsuite/runtest.all/libs.exp (process_test): Dump entire
2252         output when there's no reportable output.
2253         * testsuite/runtest.all/remote.test (load_lib): New proc.
2254         * testsuite/runtest.all/target.test (load_lib): Same.
2256 2017-03-11  Thomas Preud'homme  <thomas.preudhomme@arm.com>
2258         * lib/remote.exp (remote_download): Add logging message when
2259         source and destination file differ in name.
2261 2016-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
2263         * runtest.exp: Set CCACHE_DISABLE, clear CCACHE_NODISABLE.
2265 2016-06-28  Ben Elliston  <bje@gnu.org>
2267         * aclocal.m4, Makefile.in: Regenerate with automake 1.15.
2268         * configure: Regenerate.
2270 2016-06-22  Bernhard Reutner-Fischer  <rep.dot.nop@gmail.com>
2272         * configure.ac, dejagnu.h, runtest, runtest.exp,
2273         baseboards/am33_2.0-libremote.exp, baseboards/androideabi.exp,
2274         baseboards/arm-ice.exp, baseboards/arm-sid.exp,
2275         baseboards/arm-sim.exp, baseboards/basic-sid.exp,
2276         baseboards/basic-sim.exp, baseboards/cris-sim.exp,
2277         baseboards/d30v-sim.exp, baseboards/fr30-sim.exp,
2278         baseboards/frv-sim.exp, baseboards/gdbserver-sample.exp,
2279         baseboards/i386-sid.exp, baseboards/iq2000-sim.exp,
2280         baseboards/jmr3904-sim.exp, baseboards/linux-gdbserver.exp,
2281         baseboards/linux-libremote.exp, baseboards/m68k-sid.exp,
2282         baseboards/mcore-moto-sim.exp, baseboards/mcore-sim.exp,
2283         baseboards/mips-lnews-sim.exp, baseboards/mips-lsi-sim.exp,
2284         baseboards/mips-sim-idt32.exp, baseboards/mips-sim-idt64.exp,
2285         baseboards/mips-sim-mti32.exp, baseboards/mips-sim-mti64.exp,
2286         baseboards/mips-sim-mti64_64.exp,
2287         baseboards/mips-sim-mti64_n32.exp, baseboards/mips-sim-sde32.exp,
2288         baseboards/mips-sim-sde64.exp, baseboards/mips-sim.exp,
2289         baseboards/mmixware-sim.exp, baseboards/mn10200-sim.exp,
2290         baseboards/mn10300-sim.exp, baseboards/moxie-sim.exp,
2291         baseboards/mt-sid.exp, baseboards/multi-sim.exp,
2292         baseboards/powerpc-sim.exp, baseboards/powerpcle-sim.exp,
2293         baseboards/rx-sim.exp, baseboards/sh-sid.exp,
2294         baseboards/sh-sim.exp, baseboards/sparc-sim.exp,
2295         baseboards/sparc64-sim.exp, baseboards/sparclite-sim-le.exp,
2296         baseboards/sparclite-sim.exp, baseboards/tx39-sim.exp,
2297         baseboards/unix.exp, baseboards/v850-sim.exp,
2298         baseboards/visium-sim.exp, baseboards/vr4100-sim.exp,
2299         baseboards/vr4111-sim.exp, baseboards/vr4300-sim.exp,
2300         baseboards/xtensa-sim.exp, lib/debugger.exp, lib/dejagnu.exp,
2301         lib/dg.exp, lib/ftp.exp, lib/kermit.exp, lib/remote.exp,
2302         lib/rlogin.exp, lib/rsh.exp, lib/standard.exp, lib/target.exp,
2303         lib/targetdb.exp, lib/telnet.exp, lib/tip.exp, lib/utils.exp,
2304         testsuite/config/default.exp, testsuite/lib/libsup.exp,
2305         testsuite/lib/util-defs.exp, testsuite/libdejagnu/tunit.exp,
2306         testsuite/libdejagnu/unit.cc, testsuite/runtest.all/libs.exp,
2307         testsuite/runtest.all/stats-sub.exp,
2308         testsuite/runtest.all/stats.exp, config/adb.exp,
2309         config/default.exp, config/gdb-comm.exp, config/gdb_stub.exp,
2310         config/sid.exp, config/sim.exp, config/unix.exp,
2311         config/vxworks.exp: Update copyright date for 2016.
2313 2016-06-22  Bernhard Reutner-Fischer  <rep.dot.nop@gmail.com>
2315         * baseboards/aarch64-sim.exp, baseboards/am33_2.0-libremote.exp,
2316         baseboards/arm-ice.exp, baseboards/arm-sid.exp,
2317         baseboards/arm-sim.exp, baseboards/basic-sid.exp,
2318         baseboards/basic-sim.exp, baseboards/cris-sim.exp,
2319         baseboards/d30v-sim.exp, baseboards/fr30-sim.exp,
2320         baseboards/frv-sim.exp, baseboards/gdbserver-sample.exp,
2321         baseboards/generic-sim.exp, baseboards/i386-sid.exp,
2322         baseboards/iq2000-sim.exp, baseboards/jmr3904-sim.exp,
2323         baseboards/linux-gdbserver.exp, baseboards/linux-libremote.exp,
2324         baseboards/m68k-sid.exp, baseboards/mcore-moto-sim.exp,
2325         baseboards/mcore-sim.exp, baseboards/mips-lnews-sim.exp,
2326         baseboards/mips-lsi-sim.exp, baseboards/mips-sim-idt32.exp,
2327         baseboards/mips-sim-idt64.exp, baseboards/mips-sim.exp,
2328         baseboards/mmixware-sim.exp, baseboards/mn10200-sim.exp,
2329         baseboards/mn10300-sim.exp, baseboards/mt-sid.exp,
2330         baseboards/powerpc-sim.exp, baseboards/powerpcle-sim.exp,
2331         baseboards/rx-sim.exp, baseboards/sh-sid.exp,
2332         baseboards/sh-sim.exp, baseboards/sparc-sim.exp,
2333         baseboards/sparc64-sim.exp, baseboards/sparclite-sim-le.exp,
2334         baseboards/sparclite-sim.exp, baseboards/tx39-sim.exp,
2335         baseboards/unix.exp, baseboards/v850-sim.exp,
2336         baseboards/vr4100-sim.exp, baseboards/vr4111-sim.exp,
2337         baseboards/vr4300-sim.exp, baseboards/xtensa-sim.exp,
2338         lib/debugger.exp, lib/dejagnu.exp, lib/dg.exp, lib/framework.exp,
2339         lib/ftp.exp, lib/kermit.exp, lib/libgloss.exp, lib/remote.exp,
2340         lib/rlogin.exp, lib/rsh.exp, lib/standard.exp, lib/target.exp,
2341         lib/targetdb.exp, lib/telnet.exp, lib/tip.exp, lib/utils.exp,
2342         testsuite/config/default.exp, testsuite/lib/libsup.exp,
2343         testsuite/lib/util-defs.exp, testsuite/libdejagnu/tunit.exp,
2344         testsuite/libdejagnu/unit.cc, testsuite/runtest.all/libs.exp,
2345         testsuite/runtest.all/options.exp,
2346         testsuite/runtest.all/stats-sub.exp,
2347         testsuite/runtest.all/stats.exp, config/default.exp,
2348         config/gdb-comm.exp, config/gdb_stub.exp, config/sid.exp,
2349         config/sim.exp, config/unix.exp, config/vxworks.exp, configure.ac,
2350         dejagnu.h, runtest, runtest.exp: Use condensed years in copyright
2351         statement.
2353 2016-06-22  Bernhard Reutner-Fischer  <rep.dot.nop@gmail.com>
2355         * doc/runtest.1: Use condensed years in copyright statement.
2357 2016-06-21  Bernhard Reutner-Fischer  <rep.dot.nop@gmail.com>
2359         * runtest: Quote paths. Use test -z, -n for clarity.
2361 2016-06-21  Bernhard Reutner-Fischer  <rep.dot.nop@gmail.com>
2363         * config/adb.exp (adb_exec) Improve verbose message.
2365 2016-06-03  Jim Wilson  <jim.wilson@linaro.org>
2367         * baseboards/aarch64-sim.exp: New file.
2368         * Makefile.am (baseboard_DATA): Add aarch64-sim.exp.
2369         * Makefile.in: Regenerate.
2370         * lib/libgloss.exp (libgloss_link_flags): Map aarch64* to aarch64.
2372 2016-04-26  Ben Elliston  <bje@gnu.org>
2374         * doc/dejagnu.texi: Fill more paragraphs.
2376 2016-04-25  Ben Elliston  <bje@gnu.org>
2378         * testsuite/runtest.all/utils.test: Remove unsetenv test.
2380 2016-04-24  Ben Elliston  <bje@gnu.org>
2382         * lib/utils.exp (unsetenv): Remove proc.
2383         * doc/dejagnu.texi: Update documentation.
2384         * NEWS: Update.
2386 2016-04-19  Nick Clifton  <nickc@redhat.com>
2388         * baseboards/msp430-sim.exp: New file.
2389         * Makefile.am (baseboard_DATA): Add msp430-sim.exp.
2390         * Makefile.in: Regenerate.
2392 2016-04-18  Ben Elliston  <bje@gnu.org>
2394         * runtest: Remove quoting in final exec command.
2396 2016-04-17  Ben Elliston  <bje@gnu.org>
2398         * lib/remote.exp: Load ssh.exp lib.
2400 2016-04-17  Ben Elliston  <bje@gnu.org>
2402         * lib/rsh.exp (rsh_open): Fix description comment.
2404 2016-04-17  Ben Elliston  <bje@gnu.org>
2406         Reported by shellcheck.
2407         * runtest: Use $((..)) not `expr ..` and defensively double quote
2408         shell variables.
2410 2016-04-17  Ben Elliston  <bje@gnu.org>
2412         * Makefile.am (pkgdata_DATA): Add lib/ssh.exp, lib/dmucs.exp.
2413         * Makefile.in: Regenerate.
2415 2016-04-17  Ben Elliston  <bje@gnu.org>
2417         Reported by shellcheck.
2418         * runtest: Use $((..)) not `expr ..`.
2420 2016-04-17  Ben Elliston  <bje@gnu.org>
2422         * configure.ac (AC_INIT): Update version number.
2423         * configure: Regenerate.
2424         * runtest.exp (frame_version): Update version number.
2425         * doc/dejagnu.texi: Likewise.
2427 2016-04-17  Ben Elliston  <bje@gnu.org>
2429         * NEWS: Start a new section for the next release.
2431 2016-04-15  Ben Elliston  <bje@gnu.org>
2433         * Makefile.am (CONTRIB): Add new contrib scripts.
2434         * Makefile.in: Regenrate.
2436 2016-04-15  Ben Elliston  <bje@gnu.org>
2438         * lib/ssh.exp (ssh_exec): Handle regexp return status.
2440 2016-04-13  Ben Elliston  <bje@gnu.org>
2442         * lib/rsh.exp (rsh_exec): Improve verbose message.
2443         * lib/ssh.exp (ssh_exec): Likewise.
2444         * config/adb.exp: Likewise.
2446 2016-04-13  Ben Elliston  <bje@gnu.org>
2448         * runtest.exp: Improve --version (-v) output.
2449         * testsuite/runtest.all/options.exp: Update test case.
2451 2016-04-13  Christophe Lyon  <christophe.lyon@linaro.org>
2453         * lib/rsh.exp (rsh_exec): Handle regexp return status.
2455 2016-04-08  Ben Elliston  <bje@gnu.org>
2457         Reported by Faraz Shahbazker.
2458         * doc/dejagnu.texi (Global config file): Fix broken @node.
2459         (Local config file): Likewise.
2461 2016-04-07  Ben Elliston  <bje@gnu.org>
2463         * lib/remote.exp (remote_exec): Join cd $remotedir and $program on
2464         the command line with ';' and not &&.
2466 2016-04-07  Ben Elliston  <bje@gnu.org>
2468         Reported by Faraz Shahbazker.
2469         * doc/dejagnu.texi (rsh_exec procedure): Fix broken @node.
2471 2016-04-06  Yvan Roux  <yvan.roux@linaro.org>
2473         * lib/remote.exp (remnote_download): Create a remote directory if
2474         needed and use it.
2475         (remote_exec): Execute program inside remotedir when it exists.
2476         (standard_load): Set remotedir board field if not present.
2477         * config/unix.exp (unix_load): Handle remotedir in board field.
2478         (remotedir): Set board info field.
2479         * doc/dejagnu.texi (Board File Values): Document remotedir.
2481 2016-04-06  Ben Elliston  <bje@gnu.org>
2483         * doc/dejagnu.texi (Global config file): Put before node 'Local
2484         config file'.
2486 2016-04-05  Ben Elliston  <bje@gnu.org>
2488         * runtest.exp: Remove defunct and undocumented --tool_root option.
2490 2016-04-04  Ben Elliston  <bje@gnu.org>
2492         * doc/dejagnu.texi: More overhauling.
2494 2016-04-04  Ben Elliston  <bje@gnu.org>
2496         * lib/targetdb.exp (set_board_info): Improve comment.
2497         (add_board_info): Likewise.
2499 2016-04-04  Ben Elliston  <bje@gnu.org>
2501         * NEWS: Add some more detail.
2503 2016-04-04  Ben Elliston  <bje@gnu.org>
2505         * site.tmpl: Delete.
2506         * Makefile.am (EXTRA_DIST): Remove site.tmpl.
2507         * Makefile.in: Regenerate.
2509 2016-04-03  Ben Elliston  <bje@gnu.org>
2511         * doc/dejagnu.texi: More overhauling.
2513 2016-04-03  Ben Elliston  <bje@gnu.org>
2515         * runtest.exp: Document the magical handling of -D[01].
2517 2016-04-03  Ben Elliston  <bje@gnu.org>
2519         * doc/runtest.1: Do not document obsolete --status option. It is
2520         still accepted for compatibility, but does nothing.
2522 2016-04-03  Ben Elliston  <bje@gnu.org>
2524         * doc/runtest.1 (OPTIONS): Place short forms (-v, -V, -x) first.
2526 2016-04-03  Ben Elliston  <bje@gnu.org>
2528         * doc/runtest.1 (OPTIONS): Sort options.
2530 2016-04-03  Ben Elliston  <bje@gnu.org>
2532         * doc/dejagnu.texi: More overhauling.
2534 2016-04-02  Ben Elliston  <bje@gnu.org>
2536         * doc/dejagnu.texi: Fill paragraphs.
2538 2016-04-02  Ben Elliston  <bje@gnu.org>
2540         * doc/dejagnu.texi: Fix capitalisation of procedure names
2541         throughout.  Use Tcl syntax in procedure prototypes, not C syntax.
2543 2016-04-02  Rob Savoye  <rob.savoye@linaro.org>
2545         * contrib/mysql/create-db.sql: New file.
2546         * contrib/mysql/importxml.sh: Likewise.
2547         * contrib/mysql/make-datafile.sh: Likewise.
2548         * contrib/mysql/plot.sh: Likewise.
2549         * contrib/mysql/README: Likewise.
2550         * contrib/mysql/sum2xml.sh: Likewise.
2552 2016-04-02  Ben Elliston  <bje@gnu.org>
2554         * config.guess: Update to version 2016-04-02.
2555         * config.sub: Update to version 2016-03-30.
2557 2016-04-02  Rob Savoye  <rob.savoye@linaro.org>
2559         * contrib/sum2junit.sh: New.
2561 2016-04-01  Ben Elliston  <bje@gnu.org>
2563         * doc/dejagnu.texi (connprocs): Document new SSH procs.
2565 2016-03-31  Rob Savoye  <rob.savoye@linaro.org>
2567         * lib/ssh.exp: New.
2568         * NEWS: Update.
2570 2016-03-30  Ben Elliston  <bje@gnu.org>
2572         * baseboards/mcore-moto-sim.exp, lib/dejagnu.exp, lib/dg.exp,
2573         lib/dmucs.exp, lib/framework.exp, lib/remote.exp, lib/target.exp,
2574         runtest.exp: Fix spelling errors in comments.
2576 2016-03-30  Ben Elliston  <bje@gnu.org>
2578         * lib/remote.exp (remote_expect): Use perror not send_user.
2580 2016-03-29  Ben Elliston  <bje@gnu.org>
2582         * lib/remote.exp (remote_expect): Fix spelling error.
2584 2016-03-29  Rob Savoye  <rob.savoye@linaro.org>
2586         * runtest.exp: Only print "searching for <test name>" message at
2587         verbose level >= 2 -- too much noise.
2589 2016-03-29  Ben Elliston  <bje@gnu.org>
2591         * texinfo.tex: Update to latest master version.
2592         * INSTALL: Likewise.
2594 2016-03-29  Ben Elliston  <bje@gnu.org>
2596         * runtest.exp: More fixes identified by the Frink static analyser.
2597         * lib/dg.exp: Likewise.
2598         * config/adb.exp: Likewise.
2599         * config/vxworks.exp: Likewise.
2600         * baseboards/androideabi.exp: Likewise.
2601         * baseboards/basic-sid.exp: Likewise.
2602         * baseboards/multi-sim.exp: Likewise.
2604 2016-03-28  Dominik Vogt  <vogt@linux.vnet.ibm.com>
2606         * dg.exp (dg-do): Do not change the previously selected action if
2607         a de-selected dg-do is encountered.
2609 2016-03-28  Ben Elliston  <bje@gnu.org>
2611         * lib/framework.exp (check_xml): Remove unused proc.
2613 2016-03-28  Rob Savoye  <rob.savoye@linaro.org>
2615         * lib/dmucs.exp: New.
2617 2016-03-28  Rob Savoye  <rob.savoye@linaro.org>
2619         * lib/libgloss.exp (find_g++): Look for xgcc++ to use the freshly
2620         built compiler, then look in the path.
2622 2016-03-28  Ben Elliston  <bje@gnu.org>
2624         * lib/utils.exp (which): Don't exclude symbolic links--Debian's
2625         /bin/which doesn't. Modern systems rely too heavily on symbolic
2626         links (eg. alternatives).
2628 2016-03-28  Ben Elliston  <bje@gnu.org>
2630         * baseboards/multi-sim.exp: Indent properly.
2632 2016-03-28  Ben Elliston  <bje@gnu.org>
2634         * lib/rlogin.exp (rlogin_open): Return -1 if unable to spawn
2635         rlogin. Identified by Frink.
2637 2016-03-28  Ben Elliston  <bje@gnu.org>
2639         * runtest.exp: Use 'array exists' for testing array existence
2640         rather than 'info exists'.
2642 2016-03-28  Ben Elliston  <bje@gnu.org>
2644         * runtest.exp: Fixes identified by the Frink static analyser:
2645           (1) use -- in switch commands for safety,
2646           (2) remove unreachable return commands after error commands,
2647           (3) replace abbreviated "info proc" with "info procs",
2648           (4) use -- in unset commands for safety where the variable name
2649               is itself a variable.
2650         * lib/dg.exp: Likewise.
2651         * lib/debugger.exp: Likewise.
2652         * lib/framework.exp: Likewise.
2653         * lib/remote.exp: Likewise.
2654         * lib/target.exp: Likewise.
2655         * lib/targetdb.exp: Likewise.
2656         * lib/telnet.exp: Likewise.
2657         * lib/utils.exp: Likewise.
2659 2016-03-28  Ben Elliston  <bje@gnu.org>
2661         * Makefile.am: Remove references to Docbook and friends.
2662         * configure.ac: Likewise.
2663         * Makefile.in: Regenerate.
2664         * configure: Regenerate.
2665         * doc/dejagnu.xml: Remove.
2666         * doc/legal.xml: Likewise.
2667         * doc/ref.xml: Likewise.
2668         * doc/user.xml: Likewise.
2670 2016-03-28  Ben Elliston  <bje@gnu.org>
2672         * lib/framework.exp (exp_continue): Remove old compatibility
2673         wrapper. Expect deprecated 'continue -expect' in August 1997.
2675 2016-03-28  Ben Elliston  <bje@gnu.org>
2677         * NEWS: Update.
2679 2016-03-28  Ben Elliston  <bje@gnu.org>
2681         * lib/utils.exp (which): Reimplement to more closely mimic the
2682         behaviour of the UNIX which utility.
2683         * testsuite/runtest.all/utils.test: Test proc which.
2685 2016-03-27  Ben Elliston  <bje@gnu.org>
2687         * lib/remote.exp (standard_wait): Append any trailing characters
2688         to $output that may be still in $expect_out(buffer) when eof is
2689         matched. Remove arbitrary limitation in the ".+" matching case,
2690         similar to the change to local_exec on 2016-02-17.
2692 2016-03-23  Ben Elliston  <bje@gnu.org>
2694         * Makefile.am (baseboard_DATA): Remove cygwin.exp, mcore-elf.exp,
2695         mcore-pe.exp, vx4300.exp, vx68k.exp, vx960.exp, vxsparc.exp.
2696         * Makefile.in: Regenerate.
2697         * baseboards/cygwin.exp, baseboards/mcore-elf.exp,
2698         baseboards/mcore-pe.exp, baseboards/vx4300.exp,
2699         baseboards/vx68k.exp, baseboards/vx960.exp,
2700         baseboards/vxsparc.exp: Remove.
2702 2016-03-23  Ben Elliston  <bje@gnu.org>
2704         * baseboards/README: Remove mention of devo.
2705         * baseboards/iq2000-sim.exp: Likewise.
2706         * baseboards/moxie-sim.exp: Likewise.
2708 2016-03-23  Ben Elliston  <bje@gnu.org>
2710         * Makefile.am (baseboard_DATA): Add arm-ice.exp, arm-sim.exp.
2711         * Makefile.in: Regenerate.
2712         * baseboards/arm-ice.exp: Reinstate.
2713         * baseboards/arm-sim.exp: Likewise.
2715 2016-03-23  Ben Elliston  <bje@gnu.org>
2717         * Makefile.am (config_DATA): Update.
2718         (baseboard_DATA): Likewise.
2719         * Makefile.in: Regenerate.
2720         * NEWS: Update.
2722         Remove the following old config files:
2724         * arc.exp, arm-ice.exp, base-config.exp, base68k.exp, bug.exp,
2725         cfdbug.exp, cygmon.exp, d10v.exp, ddb-ether.exp, ddb.exp, dos.exp,
2726         dve.exp, h8300.exp, i386-bozo.exp, i960.exp, m32r-stub.exp,
2727         m32r.exp, m68hc11.exp, m68k-emc.exp, mips-idt.exp,
2728         mn10200-eval.exp, mn10300-eval.exp, netware.exp, powerpc-bug.exp,
2729         proelf.exp, rom68k.exp, sh.exp, slite.exp, sparclet.exp,
2730         tic80.exp, vr4100.exp, vr4300.exp, vr5000.exp: Remove.
2732         Remove the following old baseboard files:
2734         * arc-sim.exp, arm-ice.exp, arm-sim.exp, cf.exp, cygmon.exp,
2735         d10v-sim.exp, d10v.exp, danlite-elf.exp, dos.exp, fr30-cygmon.exp,
2736         fr30-elf.exp, frv-elf.exp, frv-tiger.exp, frv-tomcat.exp,
2737         h8300-sim.exp, h8300.exp, i386-bozo.exp, i960-cyclone.exp,
2738         i960-sim.exp, m32r-elf.exp, m32r-linux-sim.exp, m32r-sid.exp,
2739         m32r-sim.exp, m68hc11-sim.exp, m68k-emc.exp, mips-idt.exp,
2740         mips64-sim.exp, mips64vr4100-sim.exp, mn10200-cygmon.exp,
2741         mn10300-cygmon.exp, msparc-cygmon.exp, op50n.exp, powerpc-bug.exp,
2742         powerpc-bug1.exp, rom68k-idp.exp, sh-hms.exp, sparclet-aout.exp,
2743         sparclite-coff.exp, sparclite-cygmon.exp, strongarm-cygmon.exp,
2744         tic80-sim.exp, tx39-dve.exp, usparc-cygmon.exp, vr4100-ddb.exp,
2745         vr4300-ddb.exp, vr4300.exp, vr5000-ddb.exp, x86-cygmon.exp,
2746         xscale-cygmon.exp: Remove.
2748 2016-03-22  Ben Elliston  <bje@gnu.org>
2750         * lib/target.exp (only--Ls): Change '???' comment to a note. This
2751         isn't a serious shortcoming, but the comment should be retained.
2753 2016-03-22  Rob Savoye  <rob.savoye@linaro.org>
2755         * baseboards/generic-sim.exp: If DEJAGNU_SIM_SPECFILE exists in
2756         the environment, use that as the spec file for bare metal testing.
2758 2016-03-22  Ben Elliston  <bje@gnu.org>
2760         * Makefile.am (config_DATA): Add config/aarch64-fv8.exp.
2761         * Makefile.in: Regenerate.
2763 2016-03-22  Rob Savoye  <rob.savoye@linaro.org>
2765         * config/aarch64-fv8.exp: Add support for testing armv8 using the
2766         ARM Foundation Model.
2768 2016-03-21  Ben Elliston  <bje@gnu.org>
2770         * runtest.exp: Whitespace, comment and typo fixes.
2771         * lib/dejagnu.exp: Likewise.
2772         * lib/remote.exp: Likewise.
2773         * lib/utils.exp: Likewise.
2775 2016-03-21  Ben Elliston  <bje@gnu.org>
2777         * baseboards/mcore-moto-sim.exp: Remove old FIXME comment.
2778         * baseboards/mmixware-sim.exp: Likewise.
2779         * config/sim.exp: Likewise.
2780         * runtest.exp: Likewise.
2782 2016-03-21  Ben Elliston  <bje@gnu.org>
2784         * lib/dg.exp (dg-get-options): Clean up regular expression and
2785         remove FIXME comment about it.
2787 2016-03-20  Ben Elliston  <bje@gnu.org>
2789         * baseboards/i960-sim.exp: Remove stale ??? comment.
2790         * config/vxworks.exp: Likewise.
2792 2016-03-20  Ben Elliston  <bje@gnu.org>
2794         * runtest.exp: Load .dejagnurc last not first.
2795         (load_file): Update comment about Tcl 7.5a2.
2796         * doc/user.xml (Customizing DejaGnu): Document new search order
2797         for site.exp files.
2798         * doc/dejagnu.texi: Regenerate.
2799         * NEWS: Update.
2801 2016-03-20  Ben Elliston  <bje@gnu.org>
2803         * lib/dg.exp (dg-runtest): Improve arg naming to remove a FIXME.
2805 2016-03-20  Ben Elliston  <bje@gnu.org>
2807         * lib/dg.exp: Remove commented-out calls to send_user.
2809 2016-03-20  Ben Elliston  <bje@gnu.org>
2811         * runtest.exp (load_file): Remove old comment.
2813 2016-03-20  Ben Elliston  <bje@gnu.org>
2815         * lib/dg.exp (dg-test): There is no need to call unresolved to
2816         clear errcnt. Instead, pass 0 as argument 2 to perror.
2817         * runtest.exp (runtest): Likewise.
2819 2016-03-16  Ben Elliston  <bje@gnu.org>
2821         Revert this change (the GCC testsuite uses diff):
2823         2016-03-15  Ben Elliston  <bje@gnu.org>
2825         * lib/utils.exp (diff): Remove proc.
2826         * doc/ref.xml: Update documentation.
2827         * doc/dejagnu.texi: Regenerate.
2828         * NEWS: Update.
2830 2016-03-15  Ben Elliston  <bje@gnu.org>
2832         * testsuite/runtest.all/options.exp: Properly clean up log files
2833         left by the runtest under test.
2835 2016-03-15  Ben Elliston  <bje@gnu.org>
2837         * testsuite/runtest.all/load_lib.exp: Typo fixes.
2839 2016-03-15  Ben Elliston  <bje@gnu.org>
2841         * testsuite/runtest.all/options.exp: Add more tests.
2843 2016-03-15  Ben Elliston  <bje@gnu.org>
2845         * testsuite/libdejagnu/tunit.exp: Clean up.
2847 2016-03-15  Ben Elliston  <bje@gnu.org>
2849         * lib/utils.exp (diff): Remove proc.
2850         * doc/ref.xml: Update documentation.
2851         * doc/dejagnu.texi: Regenerate.
2852         * NEWS: Update.
2854 2016-03-15  Ben Elliston  <bje@gnu.org>
2856         Revert this change:
2857         2016-02-14  Steve Ellcey  <sellcey@mips.com>
2859         * baseboards/multi-sim.exp (dynamic_linker_flag): Check
2860         GCC_UNDER_TEST.
2861         * baseboards/multi-sim.exp (rpath_flags): Ditto.
2863 2016-03-13  Ben Elliston  <bje@gnu.org>
2865         * lib/utils.exp: Whitespace fixes.
2867 2016-03-13  Ben Elliston  <bje@gnu.org>
2869         * lib/dg.exp (dg-process-target): Remove old commented code.
2870         * lib/dg.exp (dg-test): Likewise.
2872 2016-03-13  Ben Elliston  <bje@gnu.org>
2874         * lib/dg.exp: Improve top-of-file documentation.
2876 2016-03-05  Yvan Roux  <yvan.roux@linaro.org>
2878         * lib/remote.exp (remote_exec): Restore original timeout value.
2880 2016-03-04  Yvan Roux  <yvan.roux@linaro.org>
2882         * lib/remote.exp (standard_upload): Remove dead code.
2884 2016-02-24  Ben Elliston  <bje@gnu.org>
2886         * lib/utils.exp (prune): Restore this proc.
2887         * doc/ref.xml: Update documentation.
2888         * doc/dejagnu.texi: Regenerate.
2889         * NEWS: Update.
2891 2016-02-23  Iain Buclaw  <ibuclaw@gdcproject.org>
2893         * lib/libgloss.exp (find_gdc): New proc.
2894         * lib/target.exp (default_target_compile): Add D support.
2895         * NEWS: Update.
2897 2016-02-20  Ben Elliston  <bje@gnu.org>
2899         * lib/utils.exp (diff): Replace calls to verbose followed by
2900         send_log with a single call to verbose -log. Remove additional
2901         newlines from the log messages.
2903 2016-02-20  Ben Elliston  <bje@gnu.org>
2905         * lib/utils.exp (getdirs): Ignore .git and .svn directories.
2907 2016-02-20  Ben Elliston  <bje@gnu.org>
2909         * lib/utils.exp: Improve comments.
2910         * NEWS: Update.
2912 2016-02-20  Ben Elliston  <bje@gnu.org>
2914         * lib/utils.exp (prune): Remove proc.
2915         * doc/ref.xml: Update documentation.
2916         * doc/dejagnu.texi: Regenerate.
2918 2016-02-20  Ben Elliston  <bje@gnu.org>
2920         * lib/utils.exp (slay): Remove proc.
2921         * doc/ref.xml: Update documentation.
2922         * doc/dejagnu.texi: Regenerate.
2924 2016-02-20  Ben Elliston  <bje@gnu.org>
2926         * lib/utils.exp (absolute): Remove proc.
2927         * doc/ref.xml: Update documentation.
2928         * doc/dejagnu.texi: Regenerate.
2930 2016-02-20  Ben Elliston  <bje@gnu.org>
2932         * lib/utils.exp (psource): Remove proc.
2933         * doc/ref.xml: Update documentation.
2934         * doc/dejagnu.texi: Regenerate.
2936 2016-02-20  Ben Elliston  <bje@gnu.org>
2938         * lib/targetdb.exp (board_info): Simplify return logic.
2940 2016-02-19  Ben Elliston  <bje@gnu.org>
2942         * configure.ac: Require Tcl version 8.5 at a minimum.
2943         * configure: Regenerate.
2945 2016-02-18  Ben Elliston  <bje@gnu.org>
2947         * configure.ac: Require Tcl version 8.6 at a minimum.
2948         * configure: Regenerate.
2950 2016-02-17  Ben Elliston  <bje@gnu.org>
2952         * runtest.exp: Tweak "Test run by .." output.
2954 2016-02-17  Ben Elliston  <bje@gnu.org>
2956         * lib/target.exp (default_target_compile): Do not pass -log to
2957         verbose when outputting the captured compiler/assembler/linker
2958         diagnostic output as it will already be in the .log file courtesy
2959         of Expect.
2961 2016-02-17  Ben Elliston  <bje@gnu.org>
2963         * runtest.exp: Enable --status by default.
2964         (runtest): Set exit status to 2 if there is any error sourcing
2965         the Tcl scripts.
2966         * lib/framework.exp (unknown): Likewise, set exit status to 2.
2967         * doc/runtest.1: Clarify exit status codes.
2968         * NEWS: Update.
2970 2016-02-17  Ben Elliston  <bje@gnu.org>
2972         * lib/remote.exp (local_exec): Call exp_continue until eof is
2973         matched.
2975 2016-02-16  Ben Elliston  <bje@gnu.org>
2977         * runtest.exp: Use the traditional exit codes when runtest is
2978         interrupted. This makes it possible to tell if runtest ran to
2979         completion or not. Suggested by Michael Chastain.
2981 2016-02-15  Ben Elliston  <bje@gnu.org>
2983         * TODO: Add ideas produced from Cauldron 2013.
2985 2016-02-15  Ben Elliston  <bje@gnu.org>
2987         * TODO: Update.
2989 2016-02-15  Ben Elliston  <bje@gnu.org>
2991         * lib/dg.exp (dg-test): Remove comment about proc unresolved not
2992         setting exit_status to 1 -- it does.
2994 2016-02-15  Ben Elliston  <bje@gnu.org>
2996         * lib/framework.exp (cleanup): Remove do-nothing proc.
2997         (log_and_exit): Remove call to cleanup.
2998         * doc/ref.xml: Remove documentation for cleanup.
2999         * doc/dejagnu.texi: Regenerate.
3001 2016-02-15  Ben Elliston  <bje@gnu.org>
3003         Reported by David Malcolm.
3004         * lib/dejagnu.exp (text): Allow angle brackets in test messages.
3006 2016-02-15  Ben Elliston  <bje@gnu.org>
3008         * config.guess: Update to version 2016-02-11.
3009         * config.sub: Update to version 2016-01-01.
3011 2016-02-14  Maxim Kuvyrkov  <maxim.kuvyrkov@linaro.org>
3013         * lib/remote.exp (remote_exec): Set global timeout for benefit of
3014         <remote>_exec.
3016 2016-02-14  Ben Elliston  <bje@gnu.org>
3018         * lib/remote.exp (local_exec): Improve comments.
3020 2016-02-14  Ben Elliston  <bje@gnu.org>
3022         * doc/runtest.1: Tweak.
3024 2016-02-14  Steve Ellcey  <sellcey@mips.com>
3026         * baseboards/multi-sim.exp (dynamic_linker_flag): Check
3027         GCC_UNDER_TEST.
3028         * baseboards/multi-sim.exp (rpath_flags): Ditto.
3030 2016-01-23  Simon Marchi  <simon.marchi@ericsson.com>
3032         * lib/remote.exp (standard_file): Reverse return logic for remote
3033         exists case.
3035 2016-01-23  Simon Marchi  <simon.marchi@ericsson.com>
3037         * lib/remote.exp (standard_file); Add else clause.
3039 2016-01-16  Ben Elliston  <bje@gnu.org>
3041         * runtest.exp (runtest): Improve comment about --status.
3043 2016-01-12  Simon Marchi  <simon.marchi@ericsson.com>
3045         * lib/remote.exp (standard_file): The [ operator does not actually
3046         output anything. It returns 0 or 1 as its exit code, so "exit `[
3047         -f $file ]`" always expands to "exit " (equivalent to exit 0).
3048         Instead, use test(1) to check for file existence.
3050 2015-12-20  Ben Elliston  <bje@gnu.org>
3052         * doc/dejagnu.xml: Begin overhauling.
3053         * doc/ref.xml: Likewise.
3054         * doc/user.xml: Likewise.
3055         * doc/dejagnu.texi: Regenerate.
3057 2015-12-20  Ben Elliston  <bje@gnu.org>
3059         * doc/runtest.1: Miscellaneous minor improvements.
3061 2015-12-09  Yoshinori Sato  <ysato@users.sourceforge.jp>
3063         * Makefile.am (baseboard_DATA): Add missing rx-sim.exp.
3064         * Makefile.in: Regenerate.
3066 2015-11-16  Brooks Moses  <bmoses@google.com>
3068         * config/unix.exp: Add ability to set test timeout from site.exp.
3069         * doc/user.xml: Document new test_timeout variable in site.exp.
3070         * doc/dejagnu.texi: Regenerate.
3072 2015-11-16  Ben Elliston  <bje@gnu.org>
3074         * testsuite/runtest.all/options.exp: Re-enable --strace 1 test.
3076 2015-11-16  Ben Elliston  <bje@gnu.org>
3078         * testsuite/runtest.all/options.exp: Remove some commented code.
3080 2015-11-16  Ben Elliston  <bje@gnu.org>
3082         * runtest.exp: Refer to "DejaGnu version", not "Framework
3083         version" in --version output.
3084         * testsuite/runtest.all/options.exp: Update test case.
3086 2015-11-14  Ben Elliston  <bje@gnu.org>
3088         * runtest.exp (usage): Improve help text.
3090 2015-11-12  Ben Elliston  <bje@gnu.org>
3092         * runtest.exp (usage): Sort options in usage.
3094 2015-11-12  Ben Elliston  <bje@gnu.org>
3096         * lib/framework.exp (note): Remove old commented-out code.
3098 2015-11-11  Ben Elliston  <bje@gnu.org>
3100         * doc/user.xml (Summary File): 'untested', not 'runtested'.
3101         * doc/dejagnu.texi: Regenerate.
3103 2015-11-11  Michael Forney  <forney@google.com>
3105         * lib/target.exp (default_target_compile): Honor LDFLAGS_FOR_TARGET.
3107 2015-11-11  Ben Elliston  <bje@gnu.org>
3109         * doc/dejagnu.texi: Regenerate.
3111 2015-11-10  Ben Elliston  <bje@gnu.org>
3113         * doc/user.xml: Fix runtest output formatting in <programlisting>.
3115 2015-11-10  Ben Elliston  <bje@gnu.org>
3117         * doc/dejagnu.xml: Update month and year.
3118         * doc/user.xml: Lots of editorial fixes from Daniel Thibault
3119         <Daniel.Thibault@drdc-rddc.gc.ca>.
3121 2015-09-10  Robert Suchanek  <Robert.Suchanek@imgtec.com>
3123         * baseboards/multi-sim.exp (rpath_flags): Add libgomp.so check.
3125 2015-07-30  Pedro Alves  <palves@redhat.com>
3127         * lib/remote.exp (close_wait_program): New procedure.
3128         (local_exec, standard_close): Use it.
3130 2015-05-23  Ben Elliston  <bje@gnu.org>
3132         * doc/dejagnu.xml: Fix broken URLs.
3133         * doc/dejagnu.texi: Regenerate.
3135 2015-05-23  Ben Elliston  <bje@gnu.org>
3137         * doc/user.xml: Fix 'crosscompilation'.
3139 2015-05-23  Ben Elliston  <bje@gnu.org>
3141         * doc/runtest.1 (log_dialog): Improve documentation.
3143 2015-05-16  Filipe Brandenburger  <filbranden@google.com>
3145         * configure.ac: Enable subdir-objects, require automake 1.14.
3146         * Makefile.in: Regenerate.
3148 2015-05-15  Filipe Brandenburger  <filbranden@google.com>
3150         * doc/dejagnu.xml: Fix typos such as stray }'s and @samp{...},
3151         possibly introduced in a conversion of .texi to SGML Docbook.
3152         * doc/user.xml: Likewise.
3153         * doc/ref.xml: Likewise.
3154         * doc/dejagnu.texi: Regenerate.
3156 2015-05-15  Filipe Brandenburger  <filbranden@google.com>
3158         * runtest.exp (runtest): Introduce new --log_dialog option.
3159         * doc/runtest.1: Document it.
3160         * doc/user.xml: Likewise.
3161         * doc/dejagnu.texi: Regenerate.
3163 2015-05-14  Steve Ellcey  <sellcey@imgtec.com>
3165         * baseboards/multi-sim.exp (get_library_dirlist): New.
3166         (dynamic_linker_flag): Use get_library_dirlist to find dynamic
3167         linker.
3168         (rpath_flags): Use get_library_dirlist to set rpath.
3170 2015-05-12  Steve Ellcey  <sellcey@imgtec.com>
3172         * baseboards/generic-sim.exp: Check $DEJAGNU_SIM_OPTION.
3174 2015-03-30  Ben Elliston  <bje@gnu.org>
3176         Revert the following change which causes breakage reported here:
3177         https://lists.gnu.org/archive/html/dejagnu/2015-03/msg00003.html
3179         2011-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
3181         * runtest.exp (runtest): Call reset_vars at initialisation so that
3182         perror does not affect test results in other test scripts.
3184 2015-02-26  H.J. Lu  <hjl.tools@gmail.com>
3186         * lib/target.exp (default_target_compile): Prepend multilib_flags,
3187         instead of appending it.
3189 2015-02-18  Ben Elliston  <bje@gnu.org>
3191         * lib/framework.exp (log_and_exit): Set tool to "testrun" if
3192         unset.
3194 2015-02-05  Ben Elliston  <bje@gnu.org>
3196         * doc/runtest.1: Fix a spelling error.
3198 2015-02-04  Ben Elliston  <bje@gnu.org>
3200         * config.guess: Update to version 2015-01-01.
3201         * config.sub: Likewise.
3203 2015-01-22  Eric Botcazou  <ebotcazou@adacore.com>
3205         * Makefile.am (baseboard_DATA): Add baseboards/visium-sim.exp.
3206         * Makefile.in: Regenerate.
3207         * baseboards/visium-sim.exp: New file.
3209 2014-11-25  Ben Elliston  <bje@gnu.org>
3211         * lib/dejagnu.exp (host_execute): Remove stray leading hyphen.
3212         Reported by David Malcolm.
3214 2014-10-28  Ben Elliston  <bje@gnu.org>
3216         * Makefile.in: Regenerate.
3218 2014-10-28  Ben Elliston  <bje@gnu.org>
3220         * example: Remove stale examples.
3222 2014-10-24  Steve Ellcey  <sellcey@mips.com>
3224         * dejagnu.h (pass): Make function static as well as inline.
3225         (xpass): Ditto.
3226         (fail): Ditto.
3227         (xfail): Ditto.
3228         (untested): Ditto.
3229         (unresolved): Ditto.
3230         (note): Ditto.
3231         (totals): Ditto.
3233 2014-10-14  Ben Elliston  <bje@gnu.org>
3235         * runtest.exp: Only match $directory, not *${directory}* when the
3236         user passes the --directory option. Reported by Sergey Alyoshin.
3238 2014-10-14  Ben Elliston  <bje@gnu.org>
3240         * lib/dejagnu.exp (host_execute): Remove buffer_full check. This
3241         is not the right command keyword -- it is full_buffer. Reported by
3242         David Malcolm.
3244 2014-07-15  Maciej W. Rozycki  <macro@mips.com>
3245             Maciej W. Rozycki  <macro@codesourcery.com>
3247         * lib/targetdb.exp (add_board_info): New procedure.
3248         * doc/ref.xml (Add_board_info Procedure): New section.
3249         (Set_board_info Procedure): Add description.
3250         (Unset_board_info Procedure): Likewise.
3251         * doc/user.xml (Board Config File Values): Add `add_board_info'
3252         reference.  Reorder `gdb_init_command' table rows and remove a
3253         duplicate entry, reusing it for `gdb_init_commands'.
3255 2014-06-25  Rob Savoye  <rob.savoye@linaro.org>
3257         * runtest.exp: (lookfor-file): Fix bug were none of the relative
3258         paths were actually being used for file lookup.
3260 2014-06-06  Ben Elliston  <bje@gnu.org>
3262         * depcomp, install-sh, missing: Update to latest versions.
3263         * mkinstalldirs: Remove.
3264         * Makefile.in: Regenerate.
3266 2014-06-04  Ben Elliston  <bje@gnu.org>
3268         * Makefile.in: Regenerate with Automake 1.14.1.
3269         * compile: Add missing file.
3271 2014-06-04  Ben Elliston  <bje@gnu.org>
3273         * config.guess: Update to version 2014-03-23.
3274         * config.sub: Likewise.
3276 2014-06-04  Ben Elliston  <bje@gnu.org>
3278         * aclocal.m4: Regenerate with Automake 1.14.1.
3279         * configure: Regenerate with Autoconf 2.69.
3281 2014-03-15  Steve Ellcey  <sellcey@mips.com>
3283         * baseboards/multi-sim.exp (rpath_flags): Add libatomic.so check.
3285 2014-02-23  Steve Ellcey  <sellcey@mips.com>
3286             Richard Sandiford  <rdsandiford@googlemail.com>
3288         * config/sim.exp (sim_exec): New.
3289         (sim_file): New.
3291 2013-12-08  Richard Sandiford  <rdsandiford@googlemail.com>
3293         * lib/dg.exp (dg-test): Don't put the expected and actual output
3294         of a pattern test in the test name; send it to the log instead.
3296 2013-11-01  Steve Ellcey  <sellcey@mips.com>
3298         * Makefile.am (baseboard_SCRIPTS): Add multi-sim.exp baseboard.
3299         * Makefile.in: Regenerate.
3300         * baseboards/multi-sim.exp: New.
3302 2013-10-31  Anton Kolesov  <anton.kolesov@synopsys.com>
3304         * lib/remote.exp (standard_reboot): Return 1 instead of an empty string.
3305         (remote_reboot): Add comment explaining return value of this procedure.
3306         * doc/ref.xml (remote_reboot, standard_reboot): Document procedures.
3307         * doc/dejagnu.texi: Regenerate.
3309 2013-10-15  Alexander Ivchenko  <alexander.ivchenko@intel.com>
3311         * baseboards/androideabi.exp (process_multilib_options): Add option.
3312         * config/adb.exp: Remove hardcoded -static option.
3313         (adb_load): Add the possibility to change the temp directory. Also
3314         handle permission potential problems.
3315         (adb_exec): Do cd to android_tmp_dir first.
3317 2013-10-05  Jose E. Marchesi  <jose.marchesi@oracle.com>
3319         * baseboards/unix.exp: Add gdb settings to not use hardware
3320         watchpoints in sparc64 running GNU/Linux.
3322 2013-06-17  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
3324         * runtest.exp (libdirs): New global variable.
3325         (load_lib): Append libdirs to search_and_load_files directories.
3326         * doc/ref.xml (load_lib): Document global variable libdirs.
3327         * doc/dejagnu.texi: Regenerate.
3328         * testsuite/runtest.all/load_lib.exp: New testcase.
3329         * Makefile.am (TESTSUITE_FILES): Add new testcase.
3330         * Makefile.in: Regenerate.
3332 2013-06-15  Ben Elliston  <bje@gnu.org>
3334         * configure.ac: If DEJAGNU is unset, set it to /dev/null.
3335         * Makefile.am: Export DEJAGNU.
3336         * configure: Likewise.
3337         * Makefile.in: Regenerate.
3339 2013-06-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
3341         * doc/user.xml: Fix typos.
3342         * doc/ref.xml: Likewise.
3343         * doc/dejagnu.texi: Regenerate.
3345 2013-06-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
3347         * doc/user.xml: Fix number of columns in table.
3348         * doc/dejagnu.texi: Regenerate.
3350 2013-06-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
3352         * doc/user.xml: Fix rendering errors around programlisting.
3353         * doc/ref.xml: Likewise.
3354         * doc/dejagnu.texi: Regenerate.
3356 2013-06-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
3358         * doc/user.xml: Fix spacing before productname.
3359         * doc/dejagnu.texi: Regenerate.
3361 2013-06-12  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
3363         * testsuite/runtest.all/default_procs.tcl (send_log): Use the
3364         magic "args" parameter name, as expect send_log proc accepts -- as
3365         a leading option.
3367 2013-06-08  Makoto Fujiwara  <makoto@ki.nu>
3369         * Makefile.am (pkgdata_DATA): Rename from pkgdata_SCRIPTS.
3370         (config_DATA): Likewise for config_SCRIPTS.
3371         (baseboard_DATA): Likewise for baseboard_SCRIPTS.
3372         (EXTRA_DIST): Remove pkgdata_SCRIPTS, config_SCRIPTS and
3373         baseboard_SCRIPTS.
3374         * Makefile.in: Regenerate.
3376 2013-06-08  Ben Elliston  <bje@gnu.org>
3378         * configure: Regenerate with autoconf 2.69.
3379         * aclocal.m4: Regenerate.
3381 2013-03-31  Ben Elliston  <bje@gnu.org>
3383         * Makefile.am (html-local): Rename target from html.
3384         * Makefile.in: Regenerate with automake 1.12.6.
3385         * aclocal.m4: Likewise.
3386         * configure: Regenerate.
3388 2013-03-28  Gilles Espinasse  <g.esp@free.fr>
3390         * TODO: Remove todo item about warncnt and errcnt.
3392 2013-03-28  Gilles Espinasse  <g.esp@free.fr>
3394         * testsuite/lib/libsup.exp (make_defaults_file): Only set $tool once.
3396 2013-03-26  Ben Elliston  <bje@gnu.org>
3398         * config.guess: Update to version 2013-02-12.
3399         * config.sub: Likewise.
3401 2013-02-16  Rob Savoye  <rob@build.welcomehome.org>
3403         * config/adb.exp: Add adb_file so we can remotely delete test
3404         cases to save on limited disk space. Don't remove the file after
3405         executing it, leave that for the test driver instead.
3407 2013-02-15  Rob Savoye  <rob@welcomehome.org>
3409         * config/adb.exp: Remove the test case after executing
3410         it. Otherwise we can fill up all the diskspace on a small target
3411         pretty fast.
3413 2013-02-11  Rob Savoye  <rob@welcomehome.org>
3415         * baseboards/androideabi.exp: Board support for Android using ADB.
3416         * config/adb.exp: Config support for Android using ADB.
3417         * Makefile.am (dist): Add new config and board files.
3418         * aclocal.m4, Makefile.in, configure, example/calc/configure,
3419         example/mathhelper/configure: Regenerated with newer autotools.
3421 2012-12-05  Ben Elliston  <bje@gnu.org>
3423         * example/hello: Remove.
3424         * configure.ac: Likewise.
3425         * configure: Regenerate.
3427 2012-10-04  Steve Ellcey  <sellcey@mips.com>
3429         * Makefile.am (baseboard_SCRIPTS): Add new baseboards.
3430         * Makefile.in: Regenerate.
3431         * baseboards/mips-sim-mti32.exp: New.
3432         * baseboards/mips-sim-mti64.exp: New.
3433         * baseboards/mips-sim-mti64_n32.exp: New.
3434         * baseboards/mips-sim-mti64_64.exp: New.
3435         * baseboards/mips-sim-sde32.exp: New.
3436         * baseboards/mips-sim-sde64.exp: New.
3438 2012-10-04  Ben Elliston  <bje@gnu.org>
3440         * aclocal.m4: Regenerate with automake 1.11.3.
3441         * Makefile.in: Likewise.
3442         * configure: Regenerate with autoconf 2.68.
3444 2012-08-22  Steve Ellcey  <sellcey@mips.com>
3446         * baseboards/generic-sim.exp: New baseboard definition.
3448 2012-06-15  Andreas Schwab  <schwab@linux-m68k.org>
3450         * lib/framework.exp (clone_output): Protect from leading dash in
3451         $message.
3452         * runtest.exp (verbose): Likewise.
3454 2012-06-11  Tom Tromey  <tromey@redhat.com>
3456         * doc/runtest.1: Update.
3457         * runtest.exp (xml_file_name): New global.
3458         (usage): Update.
3459         Handle optional argument to --xml.
3460         * lib/framework.exp (open_logs): Respect xml_file_name.
3462 2012-03-24  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
3464         * runtest.exp (load_tool_init): Fix typo in -de option handling.
3466 2012-03-24  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
3468         * doc/runtest.1: Correct name of debug file.
3470 2012-02-25  Ben Elliston  <bje@gnu.org>
3472         * runtest: Search /usr/share/dejagnu and /usr/local/share/dejagnu
3473         for runtest.exp as a last resort (for usrmove environments, where
3474         /bin is a link to /usr/bin). From Honza Horak <hhorak@redhat.com>.
3476 2011-12-30  Ben Elliston  <bje@gnu.org>
3478         * doc/user.xml: Various spelling and consistency fixes.
3479         * doc/ref.xml: Likewise.
3480         (exit_remote_shell): Remove, as this procedure is defunct.
3481         * doc/dejagnu.texi: Regenerate.
3483 2011-12-30  Ben Elliston  <bje@gnu.org>
3485         * config.guess: Update to version 2011-12-29.
3486         * config.sub: Update to version 2011-11-11.
3488 2011-06-30  Tom Tromey  <tromey@redhat.com>
3490         * doc/ref.xml: Document find_gfortran.
3491         * doc/dejagnu.texi: Regenerate.
3492         * lib/target.exp (default_target_compile): Handle f90.
3493         (default_target_compile): Likewise.
3494         * lib/libgloss.exp (find_gfortran): New proc.
3496 2011-06-30  Ben Elliston  <bje@gnu.org>
3498         * Makefile.am (all-local): New rule.
3499         * Makefile.in: Regenerate.
3501 2011-04-12  Ben Elliston  <bje@gnu.org>
3503         * config/vxworks.exp (vxworks_file): Use "file delete", not "exec
3504         rm", for better portability.
3505         * config/netware.exp (${board}_load): Likewise.
3506         * lib/dg.exp (dg-test): Likewise.
3507         * lib/framework.exp (open_logs): Likewise.
3508         * lib/remote.exp (standard_file): Likewise.
3509         * runtest.exp: Likewise.
3510         * testsuite/runtest.all/options.exp: Likewise.
3512 2011-03-15  Ben Elliston  <bje@gnu.org>
3514         * runtest.exp: Whitespace cleanups.
3515         * lib/dejagnu.exp, lib/dg.exp, lib/framework.exp,
3516         lib/libgloss.exp, lib/remote.exp, lib/rsh.exp, lib/target.exp,
3517         lib/telnet.exp, lib/tip.exp, lib/utils.exp: Likewise.
3519 2011-03-15  Ben Elliston  <bje@gnu.org>
3521         * runtest: Remove trailing semicolons.
3522         * lib/rsh.exp: Likewise.
3524 2011-03-15  H.J. Lu  <hjl.tools@gmail.com>
3526         * lib/remote.exp (local_exec): Ignore SIGHUP.
3528 2011-03-14  Ben Elliston  <bje@gnu.org>
3530         * runtest.exp (frame_version): Set to 1.5.1.
3531         * configure.ac (AC_INIT): Set version to 1.5.1.
3532         * configure: Regenerate.
3533         * doc/dejagnu.xml (appversion, version): Set to 1.5.1.
3534         * doc/dejagnu.texi: Regenerate.
3536 2011-03-14  Ben Elliston  <bje@gnu.org>
3538         * dejagnu.h: Whitespace cleanups.
3540 2011-03-14  Ben Elliston  <bje@gnu.org>
3542         * baseboards/cris-sim.exp: Remove trailing semicolon(s).
3543         * baseboards/mt-sid.exp: Likewise.
3544         * baseboards/tx39-sim.exp: Likewise.
3545         * lib/target.exp (default_target_compile): Likewise.
3547 2011-03-14  Ben Elliston  <bje@gnu.org>
3549         Reported by Flash Sheridan <flash@pobox.com>:
3550         * doc/user.xml (Testing "Hello world" locally): Improve the
3551         example test script and make it robust to failures.  Tidy some
3552         formatting errors.
3553         * doc/dejagnu.texi: Regenerate.
3555 2011-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
3557         * runtest.exp (runtest): Call reset_vars at initialisation so that
3558         perror does not affect test results in other test scripts.
3560 2011-03-09  Ben Elliston  <bje@gnu.org>
3562         * NEWS: Start a new section for post-1.5 changes.
3564 2011-03-09  Ben Elliston  <bje@gnu.org>
3566         * DejaGnu 1.5 released.
3568 2011-03-09  Ben Elliston  <bje@gnu.org>
3570         * Makefile.am (DISTCLEANFILES): Define.
3571         * Makefile.in: Regenerate.
3572         * testsuite/runtest.all/libs.exp: Clean up temp files on exit.
3573         * testsuite/runtest.all/options.exp: Likewise for dbg.log.
3574         * testsuite/runtest.all/stats.exp: Likewise for tmpdir. Use "file
3575         mkdir" instead of exec'ing mkdir(1).
3577 2011-03-07  Ben Elliston  <bje@gnu.org>
3579         * Makefile.am (doc/dejagnu.texi): Conditional on MAINTAINER_MODE.
3580         * Makefile.in: Regenerate.
3582 2011-03-06  Ben Elliston  <bje@gnu.org>
3584         * configure.ac (AC_INIT): Set version to 1.5.
3585         * configure: Regenerate.
3586         * runtest.exp (frame_version): Set to 1.5.
3587         * doc/dejagnu.texi: Regenerate.
3589 2011-03-04  Ben Elliston  <bje@gnu.org>
3591         * texinfo.tex: Import latest version from ftp://tug.org/tex.
3593 2011-03-04  Ben Elliston  <bje@gnu.org>
3595         * Makefile.am (EXTRA_DIST): Correct name of historical ChangeLog.
3596         * Makefile.in: Regenerate.
3598 2011-03-03  Ben Elliston  <bje@gnu.org>
3600         * Makefile.am: Bump to GPL version 3.
3601         * configure.ac: Likewise.
3602         * Makefile.in: Regenerate.
3603         * aclocal.m4: Likewise.
3604         * configure: Likewise.
3606 2011-03-03  Ben Elliston  <bje@gnu.org>
3608         * config.guess: Update to most recent version.
3609         * config.sub: Likewise.
3611 2011-03-03  Ben Elliston  <bje@gnu.org>
3613         * lib/framework.exp (unknown): Rename the native Tcl ::unknown
3614         proc to ::tcl_unknown.  If ::tcl_unknown returns a failure result,
3615         then fall back to the conventional DejaGnu handling.  Report from
3616         David Byron <dbyron@dbyron.com>.
3618 2011-03-03  Maciej W. Rozycki  <macro@codesourcery.com>
3620         * lib/remote.exp (remote_expect): Pass all exception conditions up
3621         to the caller.
3623 2011-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3625         * lib/dg.exp (dg-test): Support nested calls.
3627 2010-04-13  Ben Elliston  <bje@gnu.org>
3629         * testglue.c: Remove duplicated prototypes for abort and exit.
3631 2010-03-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3633         * doc/user.xml (Tcl Variables For Command Line Options): Correct
3634         column count.
3636 2010-01-21  Jie Zhang  <jie.zhang@analog.com>
3638         * config/gdb-comm.exp (gdb_comm_load): Set breakpoints after load.
3640 2010-01-15  Anthony Green  <green@moxielogic.com>
3642         * baseboards/moxie-sim.exp: New baseboard.
3644 2009-12-10  DJ Delorie  <dj@redhat.com>
3646         * baseboards/rx-sim.exp: New baseboard.
3648 2009-10-15  Ben Elliston  <bje@gnu.org>
3650         * MAINTAINERS: Remove refererence to Tom Tromey's Tcl style guide.
3651         This web page has disappeared.
3653 2009-07-06  Ben Elliston  <bje@gnu.org>
3655         * doc/dejagnu.xml, doc/ref.xml, doc/user.xml: Mark up options with
3656         <option> not <emphasis>.  Apply other grammatical fixes from
3657         Reuben Thomas.
3658         * doc/dejagnu.texi: Regenerate.
3660 2009-07-06  Ben Elliston  <bje@gnu.org>
3662         * configure.ac: Check for docbook2x-texi.
3663         * configure: Regenerate.
3665 2009-07-06  Ben Elliston  <bje@gnu.org>
3667         From Reuben Thomas  <rrt@sc3d.org>:
3668         * doc/runtest.1: Fix some formatting issues.
3670 2009-06-16  Ben Elliston  <bje@gnu.org>
3672         * config.guess: Update to most recent version.
3673         * config.sub: Likewise.
3675 2009-06-16  Ben Elliston  <bje@gnu.org>
3677         * Makefile.am (rpm, deb, solpkg, hpdepot): Remove targets.
3678         * Makefile.in: Regenerate.
3679         * packaging: Remove directory and its contents.
3681 2009-06-10  Maciej W. Rozycki  <macro@codesourcery.com>
3683         * config/gdb-comm.exp (gdb_comm_add_breakpoint): Handle pending
3684         breakpoints.
3686 2008-12-03  Ben Elliston  <bje@gnu.org>
3688         * COPYING: Update to GPL version 3.
3690 2008-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3692         * doc/ref.xml, doc/user.xml: Fix typos.
3693         * doc/dejagnu.texi: Regenerate.
3695 2008-04-06  Daniel Jacobowitz  <drow@false.org>
3697         * Makefile.am (RUNTESTDEFAULTFLAGS): Add RUNTEST=$(RUNTEST).
3698         * Makefile.in: Regenerate.
3699         * dejagnu.exp (host_execute): Improve regexp matching.
3700         * testsuite/libdejagnu/unit.cc: C++ fixes.
3702 2008-04-06  Daniel Jacobowitz  <drow@false.org>
3704         * lib/utils.exp (diff): Open both files as binary.
3706 2008-04-06  Daniel Jacobowitz  <dan@codesourcery.com>
3708         * dejagnu.h (totals): Correct typos.
3710 2008-04-06  Daniel Jacobowitz  <dan@codesourcery.com>
3712         * doc/user.xml (Adding a New Tool, Adding a New Target): Fix typos.
3713         * doc/dejagnu.texi: Regenerate.
3715 2008-02-25  Ben Elliston  <bje@gnu.org>
3717         * doc/runtest.1: Update date of last revision.
3719 2008-02-11  Hans-Peter Nilsson  <hp@axis.com>
3721         * baseboards/h8300.exp: Use -- before switch argument that may
3722         begin with "-".
3723         * baseboards/cris-sim.exp: Ditto.
3725 2008-02-11  Hans-Peter Nilsson  <hp@axis.com>
3727         * Makefile.am (baseboard_SCRIPTS): Add scripts cris-sim.exp,
3728         iq2000-sim.exp and m32r-linux-sim.exp.
3729         * Makefile.in: Regenerate.
3731 2008-02-08  Ben Elliston  <bje@gnu.org>
3733         * baseboards/cris-sim.exp: Fix MS-DOS line termination.
3735 2007-12-28  Joseph Myers  <joseph@codesourcery.com>
3737         * lib/target.exp (default_link): Initialize nobjects before use.
3739 2007-12-06  Ben Elliston  <bje@gnu.org>
3741         * lib/dg.exp (dg_bogus): Comment fix.
3743 2007-10-31  DJ Delorie  <dj@redhat.com>
3745         * lib/framework.exp (open_logs): Line buffer the .sum file.
3747 2007-09-04  Matt Kraai  <kraai@ftbfs.org>
3749         * doc/user.xml (Configuration): Fix typos.
3750         * doc/dejagnu.texi: Regenerate.
3752 2007-08-28  Daniel Jacobowitz  <dan@codesourcery.com>
3754         * lib/remote.exp (standard_send): Correct quoting.
3756 2007-05-17  Ben Elliston  <bje@gnu.org>
3758         * doc/user.xml: Correct the syntax for running apt-get on a Debian
3759         GNU/Linux system. From Peter Welte <weltepe@gmail.com>.
3761 2007-04-30  Bob Wilson  <bob.wilson@acm.org>
3763         * baseboards/xtensa-sim.exp: Set target_install.  Stop using
3764         basic-sim.exp.  Run the simulator with --turbo option.  Replace
3765         needs_status_wrapper with the simulator's --exit_with_target_code
3766         option.
3768 2006-10-15  Rob Savoye  <rob@bertha.welcomehome.org>
3770         * dejagnu.h: Add support for for expected failures and
3771         unexpected successes.
3773 2005-05-06  Andrew Fyfe <a.fyfe@tiscali.co.uk>
3775         * doc/Makefile.am: Fix install path for man page.
3776         * Makefiles: Regenerated.
3778 2006-08-29  Ben Elliston  <bje@gnu.org>
3780         * runtest.exp (usage): Use "triplet" instead of "config name".
3782 2006-07-13  Daniel Jacobowitz  <dan@codesourcery.com>
3784         * Makefile.am (DOCBOOK2RTF): Fix typo.
3785         * Makefile.in: Regenerated.
3786         * lib/libgloss.exp (process_multilib_options): Use -- to handle
3787         options starting with hyphens.
3789 2006-06-23  Eric Botcazou  <ebotcazou@adacore.com>
3791         * libgloss.exp (find_gnatmake): Rewrite.
3793 2006-03-30  Daniel Jacobowitz  <dan@codesourcery.com>
3795         * rsh.exp (rsh_exec): Handle inp and outp arguments.  Use
3796         local_exec to run rsh.  Return failure if rsh times out.
3797         * remote.exp (local_exec): Handle "|& cat" we added when deciding
3798         whether to return output.
3800 2006-06-09  Ben Elliston  <bje@gnu.org>
3802         * baseboards/cris-sim.exp: Use Tcl fall-through syntax for
3803         multiple cases, not a list (case uses lists, switch does not).
3804         Pass -glob to switch where applicable to emulate case behaviour.
3805         * baseboards/h8300.exp: Likewise.
3806         * lib/framework.exp (clone_output): Likewise.
3807         (clear_xfail): Likewise.
3808         (clear_kfail): Likewise.
3809         * lib/libgloss.exp (process_multilib_options): Likewise.
3810         * runtest.exp: Likewise.
3812 2006-06-06  Ben Elliston  <bje@gnu.org>
3814         * Makefile.am (CONTRIB): New.
3815         (EXTRA_DIST): Add $(CONTRIB).
3816         (doc/dejagnu.texi): Set directory-category param to docbook2texi.
3817         * Makefile.in: Regenerate.
3818         * doc/dejagnu.texi: Likewise.
3820 2006-06-06  Ben Elliston  <bje@gnu.org>
3822         * runtest.exp (load_lib): Typo fix.
3824 2006-06-06  Ben Elliston  <bje@gnu.org>
3826         * dejagnu.h: Tidy comments.
3827         (_BUFFER_SIZE_): Remove to minimise namespace pollution.
3828         (wait): Define this function unconditionally.  Conditionally
3829         compile the function body if _DEJAGNU_WAIT_ is defined.
3830         (buffer): Set the buffer size explicitly.
3831         (pass): Use sizeof (buffer).  Call wait() unconditionally.
3832         (fail, untested, unresolved, note): Likewise.
3833         (enum teststate): Tidy whitespace.
3835 2006-06-06  Ben Elliston  <bje@gnu.org>
3837         * doc/dejagnu.xml, doc/ref.xml, doc/user.xml: Edits.
3838         * doc/dejagnu.texi: Regenerate.
3840 2006-06-06  Ben Elliston  <bje@gnu.org>
3842         Import from GCC tree:
3843         2006-06-02  Richard Earnshaw  <rearnsha@arm.com>
3844                     Mike Stump  <mrs@apple.com>
3846         * compare_tests: Handle multilibs better.
3848 2006-06-06  Ben Elliston  <bje@gnu.org>
3850         * doc/dejagnu.texi: Regnerate using Docbook2X 0.8.7.
3852         * configure.ac: Check for docbook2texi, not docbook2x-texi.  The
3853         wrapper script changed its name again in the latest release.
3854         * configure: Regenerate.
3855         * Makefile.am (DOCBOOK2X_TEXI): Rename from this ..
3856         (DOCBOOK2TEXI): .. to this.
3857         (doc/dejagnu.texi): Do not use output-file parameter to deposit
3858         the .texi file into the source directory; use mv(1) instead. Set
3859         directory-description parameter.
3860         * Makefile.in: Likewise.
3862 2006-06-02  Ben Elliston  <bje@gnu.org>
3864         * config/sim.exp (sim_upload): Match up argument names.
3866 2006-06-02  Ben Elliston  <bje@gnu.org>
3868         * config.guess: Update to most recent version.
3869         * config.sub: Likewise.
3871 2006-06-02  Ben Elliston  <bje@gnu.org>
3873         * config/dos.exp (dos_open): Only run global board_info once at
3874         the beginning of the proc; remove duplicates.
3875         (dos_load): Use file join to separate path components.
3876         (dos_copy_upload): Likewise.
3877         * lib/remote.exp (call_remote): Use error, not "blooie" to trigger
3878         an error.
3880 2006-06-02  Ben Elliston  <bje@gnu.org>
3882         * contrib/compare_tests: Import from the GCC contrib directory.
3884 2006-05-24  Ben Elliston  <bje@gnu.org>
3886         * runtest.exp (verbose): Brace some expressions.
3887         (load_file, search_and_load_file): Likewise.
3888         (runtest): Likewise.
3890 2006-05-23  Ben Elliston  <bje@gnu.org>
3892         * config/gdb-comm.exp (gdb_comm_load): Brace some expressions.
3893         * config/i960.exp (i960_spawn): Initialise status.
3894         * config/netware.exp (${board}_init): Brace some if expressions.
3895         * lib/dg.exp (dg-test): Brace some expressions.
3896         * lib/framework.exp (clone_output, log_and_exit, log_summary,
3897         record_test, pass, fail): Likewise.
3898         * lib/libgloss.exp (get_multilibs): Likewise.
3899         * lib/remote.exp (standard_transmit, unix_clean_filename,
3900         remote_load, check_for_board_status, remote_expect): Likewise.
3901         * lib/rsh.exp (rsh_exec): Likewise.
3903 2006-05-22  Ben Elliston  <bje@gnu.org>
3905         * baseboards/cris-sim.exp: Use switch, not case.
3906         * baseboards/h8300.exp: Likewise.
3907         * config/base68k.exp (base68k_ld): Brace an if expression.
3909 2006-05-22  Ben Elliston  <bje@gnu.org>
3911         * runtest.exp, baseboards/basic-sim.exp, baseboards/cf.exp,
3912         baseboards/cris-sim.exp, baseboards/i960-cyclone.exp,
3913         baseboards/mcore-moto-sim.exp, baseboards/mips64vr4100-sim.exp,
3914         baseboards/mmixware-sim.exp, baseboards/op50n.exp,
3915         baseboards/rom68k-idp.exp, baseboards/sparclite-sim-le.exp,
3916         baseboards/usparc-cygmon.exp, config/base-config.exp,
3917         config/base68k.exp, config/ddb-ether.exp, config/ddb.exp,
3918         config/dos.exp, config/gdb-comm.exp, config/gdb_stub.exp,
3919         config/i386-bozo.exp, config/i960.exp, config/m68k-emc.exp,
3920         config/netware.exp, config/sid.exp, config/sim.exp,
3921         config/tic80.exp, config/unix.exp, config/vxworks.exp,
3922         lib/debugger.exp, lib/dejagnu.exp, lib/dg.exp, lib/framework.exp,
3923         lib/ftp.exp, lib/kermit.exp, lib/libgloss.exp, lib/remote.exp,
3924         lib/rlogin.exp, lib/rsh.exp, lib/target.exp, lib/targetdb.exp,
3925         lib/telnet.exp, lib/tip.exp, lib/utils.exp: Put braces around if
3926         expressions throughout.
3928 2006-05-22  Ben Elliston  <bje@gnu.org>
3930         * lib/framework.exp (open_logs): Use file join where applicable.
3931         * lib/libgloss.exp (libgloss_link_flags, newlib_link_flags,
3932         newlib_include_flags, g++_link_flags, libstdc++_link_flags,
3933         get_multilibs, winsup_include_flags, winsup_link_flags): Likewise.
3934         * lib/utils.exp (which): Likewise.
3935         * runtest.exp (search_and_load_file, lookfor_file,
3936         load_tool_init): Likewise.
3938         * lib/debugger.exp (watcharray): Add `array' parameter.  Rename
3939         `type' parameter to `op' and update all uses in the proc.
3940         (watchvar): Add `ignore' parameter for scalar variables.
3941         Likewise, rename `type' to `op' and update throughout the proc.
3943         * runtest.exp: Use switch, not case.
3944         * lib/framework.exp (clone_output): Likewise.
3945         (clear_xfail): Likewise.
3946         (clear_kfail): Likewise.
3947         (set_warning_threshold): Make warning_threshold global.
3948         (get_warning_threshold): Likewise.
3949         * lib/libgloss.exp (process_multilib_options): Use switch, not
3950         case.
3951         * lib/remote.exp (local_exec): Only run global errorInfo once.
3952         (standard_upload): Fix error in variable use ($file -> $srcfile).
3953         * lib/utils.exp (grep): Use switch, not case.
3954         (slay): Fix mismatched bracket.
3956         * lib/debugger.exp (watcharray): Use switch, not case.
3957         (watchvar): Likewise.
3958         (bt): Add an explanatory comment.
3960 2006-04-03  Ben Elliston  <bje@gnu.org>
3962         * lib/debugger.exp, lib/dejagnu.exp, lib/dg.exp,
3963         lib/framework.exp, lib/libgloss.exp, lib/remote.exp,
3964         lib/rlogin.exp, lib/target.exp, lib/telnet.exp: Formatting.
3966 2006-01-02  Ben Elliston  <bje@gnu.org>
3968         * configure.ac (AC_INIT): Set version to 1.4.99.
3969         * configure: Regenerate.
3971 2006-01-01  Ben Elliston  <bje@gnu.org>
3973         * testsuite/runtest.all/utils.test: Add runtest_file_p.
3975 2006-01-01  Ben Elliston  <bje@gnu.org>
3977         * runtest.exp (frame_version): Set to 1.4.99.
3979 2006-01-01  Ben Elliston  <bje@gnu.org>
3981         * dejagnu.h: Update copyright notice.  Use C-style /* .. */
3982         comments for portability with ISO C compilers.
3983         * testsuite/libdejagnu/unit.cc: Likewise, update copyright notice.
3985 2006-01-01  Ben Elliston  <bje@gnu.org>
3987         * runtest.exp: Update copyright notice.
3988         * example/calc/testsuite/calc.test/calc.exp: Likewise.
3989         * example/calc/testsuite/config/unix.exp: Likewise.
3990         * testsuite/libdejagnu/tunit.exp: Likewise.
3991         * testsuite/runtest.all/libs.exp: Likewise.
3992         * testsuite/runtest.all/options.exp: Likewise.
3993         * testsuite/runtest.all/stats-sub.exp: Likewise.
3994         * testsuite/runtest.all/stats.exp: Likewise.
3996 2006-01-01  Ben Elliston  <bje@gnu.org>
3998         * config/default.exp, config/unix.exp, config/vxworks.exp,
3999         lib/debugger.exp, lib/dejagnu.exp, lib/framework.exp,
4000         lib/libgloss.exp, lib/remote.exp, testsuite/lib/util-defs.exp:
4001         Formatting fixes.
4002         * dejagnu.h, testsuite/config/default.exp,
4003         testsuite/lib/libsup.exp, testsuite/libdejagnu/tunit.exp,
4004         testsuite/libdejagnu/unit.cc, testsuite/runtest.all/libs.exp,
4005         testsuite/runtest.all/options.exp,
4006         testsuite/runtest.all/stats-sub.exp,
4007         testsuite/runtest.all/stats.exp: Update copyright notice and FSF
4008         office address. Remove bug reporting address, as it is now
4009         maintained centrally in the README file.
4011 2005-12-31  Ben Elliston  <bje@gnu.org>
4013         * testsuite/runtest.all/utils.test: Don't bother mentioning
4014         absolute, psource, prune and slay as untested procedures.
4016 2005-12-31  Ben Elliston  <bje@gnu.org>
4018         * doc/ref.xml (Utility Procedures): Note that the following
4019         procedures are deprecated: absolute, psource, prune, slay.
4020         * NEWS: Likewise.
4021         * doc/dejagnu.texi: Regenerate.
4023 2005-12-24  Ben Elliston  <bje@gnu.org>
4025         * Makefile.am (doc/dejagnu.texi): Don't use shell redirection, in
4026         case the command fails and zeroes the Texinfo source file.  Move
4027         the output (if successful) by its default filename using mv(1).
4028         * Makefile.in: Regenerate.
4030 2005-12-24  Ben Elliston  <bje@gnu.org>
4032         * configure.ac (DOCBOOK2X_TEXI): Add search for this program.
4033         * configure: Regenerate.
4034         * Makefile.am (DOCBOOK2PDF, DOCBOOK2RTF, DOCBOOK2PS): New.
4035         (DOCBOOK2HTML, DOCBOOK2X_TEXI): Likewise.
4036         (dejagnu.pdf): Use $(DOCBOOK2PDF).
4037         (dejagnu.ps): Likewise, use $(DOCBOOK2PS).
4038         (dejagnu.rtf): Likewise, use $(DOCBOOK2RTF).
4039         (html): Likewise, use $(DOCBOOK2HTML).
4040         (doc/dejagnu.texi): Produce using the docbook2x-texi wrapper,
4041         which is much simpler. Likewise, use $(DOCBOOK2X_TEXI).
4042         * Makefile.in: Regenerate.
4044 2005-12-24  Ben Elliston  <bje@gnu.org>
4046         * Makefile.am (EXTRA_DIST): Remove $(PACKAGING_METAFILES).
4047         (XML): Remove $(srcdir) from each filename; VPATH suffices.
4048         (PACKAGING_METAFILES): Remove.
4049         * Makefile.in: Regenerate.
4051 2005-12-24  Ben Elliston  <bje@gnu.org>
4053         * README: Rewrite.
4055 2005-12-24  Ben Elliston  <bje@gnu.org>
4057         * COPYING: Update.
4059 2005-12-24  Ben Elliston  <bje@gnu.org>
4061         * testsuite/libdejagnu/tunit.exp: Don't change to a non-existent
4062         subdirectory.
4064 2005-12-24  Ben Elliston  <bje@gnu.org>
4066         * Makefile.am (RUNTEST): Simplify, as Automake already generates
4067         similar logic in Makefile.in.
4068         * Makefile.in: Regenerate.
4070 2005-12-24  Ben Elliston  <bje@gnu.org>
4072         * Makefile.am (RUNTESTDEFAULTFLAGS): Omit --tool so that
4073         libdejagnu tests are run too.
4074         * Makefile.in: Regenerate.
4076 2005-12-24  Ben Elliston  <bje@gnu.org>
4078         * configure: Regenerate.
4080         * lib/remote.exp: Tidy.
4081         * lib/targetdb.exp: Likewise.
4082         * lib/target.exp (prune_warnings): Improve comments.
4083         * lib/dejagnu.exp: Likewise.
4084         * lib/utils.exp: Likewise.
4086         * NEWS: Update.
4088 2005-12-24  Ben Elliston  <bje@gnu.org>
4090         * doc/dejagnu.xml: Don't use apostrophes in section titles.
4091         * doc/dejagnu.texi: Regenerate.
4093 2005-12-24  Ben Elliston  <bje@gnu.org>
4095         * Makefile.am (XML): Include $(srcdir) in filenames.
4096         * Makefile.in: Regenerate.
4098 2005-12-24  Ben Elliston  <bje@gnu.org>
4100         * doc/C/Makefile.am: Remove.
4101         * doc/C/Makefile.in: Likewise.
4103         * Makefile.am (SUBDIRS): Remove.
4104         (EXTRA_DIST): Append $(XML).
4105         (dist_man_MANS): Define.
4106         (info_TEXINFOS): Likewise.
4107         (XML): List XML source files.
4108         (dejagnu.pdf): New target.
4109         (dejagnu.ps): Likewise.
4110         (dejagnu.rtf): Likewise.
4111         (html): Likewise.
4112         (dejagnu.texi): Special rule to build Texinfo source.
4113         * Makefile.in: Regenerate.
4114         * configure.ac: Don't search for docbook2dvi.
4115         Search for docbook2rtf and docbook2pdf.
4116         Don't output doc/Makefile or doc/C/Makefile.
4117         * configure: Regenerate.
4118         * doc/texinfo.tex: Move from here ..
4119         * texinfo.tex: .. to here.
4120         * doc/Makefile.am: Remove.
4121         * doc/Makefile.in: Likewise.
4122         * doc/C/dejagnu.omf: Likewise.
4123         * doc/C/topic.dat: Likewise.
4124         * doc/C/dejagnu.xml: Move from here ..
4125         * doc/dejagnu.xml: .. to here.
4126         * doc/C/legal.xml: Move from here ..
4127         * doc/legal.xml: .. to here.
4128         * doc/C/ref.xml: Move from here ..
4129         * doc/ref.xml: .. to here.
4130         * doc/C/user.xml: Move from here ..
4131         * doc/user.xml: .. to here.
4132         * doc/dejagnu.texi: Rebuild from XML source.
4134 2005-12-23  Ben Elliston  <bje@gnu.org>
4136         * doc/runtest.1: Update manual page.
4138 2005-12-23  Ben Elliston  <bje@gnu.org>
4140         * doc/overview.sgml: Remove in favour of XML versions.
4141         * doc/ref.sgml: Ditto.
4142         * doc/user.sgml: Ditto.
4143         * doc/texinfo.tex: Import new version.
4145 2005-12-20  Ben Elliston  <bje@gnu.org>
4147         * Makefile.am (SUBDIRS): Remove testsuite, example.
4148         (EXTRA_DIST): Add $(TESTSUITE_FILES).
4149         (TESTSUITE_FILES): New.
4150         (RUNTEST, RUNTESTDEFAULTFLAGS): New.
4151         (AM_CXXFLAGS): Set.
4152         (check_PROGRAMS): New.
4153         (unit_SOURCES): New.
4154         * Makefile.in: Regenerate.
4155         * configure.ac (AC_OUTPUT): Don't output example/Makefile,
4156         testsuite/Makefile or testsuite/libdejagnu/Makefile.
4157         * configure: Regenerate.
4158         * testsuite/Makefile.am: Remove.
4159         * testsuite/Makefile.in: Likewise.
4160         * testsuite/libdejagnu/Makefile.am: Likewise.
4161         * testsuite/libdejagnu/Makefile.in: Likewise.
4163 2005-12-20  Ben Elliston  <bje@gnu.org>
4165         * Makefile.am (baseboard_SCRIPTS): Rename ms1->mt.
4166         * Makefile.in: Regenerate.
4168 2005-12-20  Ben Elliston  <bje@gnu.org>
4170         * configure: Regenerate with autoconf 2.59.
4171         * aclocal.m4: Regenerate with aclocal 1.9.6.
4172         * Makefile.in: Regenerate with automake 1.9.6.
4173         * doc/Makefile.in: Likewise.
4174         * doc/C/Makefile.in: Likewise.
4175         * example/Makefile.in: Likewise.
4176         * testsuite/Makefile.in: Likewise.
4177         * testsuite/libdejagnu/Makefile.in: Likewise.
4179 2005-12-20  Nathan Sidwell  <nathan@codesourcery.com>
4181         * baseboards/ms1-sid.exp: Rename from this ..
4182         * baseboards/mt1-sid.exp: .. to this. Update ms1->mt within.
4184 2005-12-20  Ben Elliston  <bje@gnu.org>
4186         * config.guess: Update to most recent version.
4187         * config.sub: Likewise.
4189 2005-09-24  Ben Elliston  <bje@gnu.org>
4191         * packaging/pkg/pkginfo (EMAIL): Update mail address.
4193         * lib/rsh.exp: Tidy comments.
4195 2005-07-07  Ben Elliston  <bje@gnu.org>
4197         * lib/telnet.exp (telnet_transmit): Remove; use standard method.
4199 2005-07-07  Ben Elliston  <bje@gnu.org>
4201         * Makefile.am (baseboard_SCRIPTS): Add ms1-sid.exp.
4202         * Makefile.in: Regenerate.
4204 2005-07-06  Ben Elliston  <bje@gnu.org>
4206         * lib/tip.exp (tip_open): Improve comments.
4207         (tip_download): Likewise.
4209 2005-07-06  Ben Elliston  <bje@gnu.org>
4211         * lib/telnet.exp (telnet_open): Improve option handling.  Clarify
4212         documentation for each proc.
4214 2005-07-06  Ben Elliston  <bje@gnu.org>
4216         * aclocal.m4: Regenerate with aclocal 1.9.
4217         * configure: Regenerate with autoconf 2.59.
4218         * doc/C/Makefile.am: Remove stray include.
4219         * Makefile.in, doc/Makefile.in, doc/C/Makefile.in,
4220         example/Makefile.in, testsuite/Makefile.in,
4221         testsuite/libdejagnu/Makefile.in: Regenerate with automake 1.9.
4223 2005-07-06  Ben Elliston  <bje@gnu.org>
4225         Import some missing hunks from this patch on sourceware:
4227         2004-11-11  Nick Clifton  <nickc@redhat.com>
4229         * lib/libgloss.exp (libio_include_flags, g++_include_flags,
4230         winsup_include_flags): Revert previous patch, restoring the use of
4231         -I, for all libraries except newlib.  Newlib needs -isystem to
4232         avoid the problems with <limits.h> but the C++ and winsup
4233         libraries need -I because -isystem generates an implicit 'extern
4234         "C"' which may not be appropriate for certain targets.
4236 2005-07-06  Aldy Hernandez  <aldyh@redhat.com>
4238         * baseboards/ms1-sid.exp: New.
4240 2005-07-01  Ben Elliston  <bje@gnu.org>
4242         Unify some changes with the 1.4 branch:
4244         2004-10-28  Nick Clifton  <nickc@redhat.com>
4245         * baseboards/iq2000-sim.exp: New file.
4247         2004-06-08  Alexandre Oliva  <aoliva@redhat.com>
4248         * baseboards/mn10300-sim.exp: Set needs_status_wrapper and
4249         noresults to zero.
4251         2004-05-13  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
4252         * baseboards/m32r-linux-sim.exp: Add New file.
4254 2005-06-24  Ben Elliston  <bje@gnu.org>
4256         * MAINTAINERS: Update my email address.
4258 2005-06-24  Ben Elliston  <bje@gnu.org>
4260         * Update the FSF's physical address throughout.
4262 2005-06-22  Ben Elliston  <bje@gnu.org>
4264         * config.guess: Update to most recent version.
4265         * config.sub: Likewise.
4267 2005-04-28  Mark Kettenis  <kettenis@gnu.org>
4269         * lib/target.exp (prune_warnings): Add a few more linker
4270         warning patterns for OpenBSD.
4272 2005-03-20  Mark Kettenis  <kettenis@gnu.org>
4274         * lib/target.exp (prune_warnings): Add linker warning patterns for
4275         OpenBSD.
4277 2005-01-29  Hans-Peter Nilsson  <hp@axis.com>
4279         * baseboards/cris-sim.exp: New file.
4281 2004-11-19  Nick Clifton  <nickc@redhat.com>
4283         * lib/libgloss.exp (newlib_include_flags): Document why -isystem
4284         is used instead of -I.
4285         (libio_include_flags): Use -I instead of -isystem and
4286         document why.
4287         (g++_include_flags): Use -I instead of -isystem.
4288         (libstdc++_include_flags): Likewise.
4290 2004-11-04  Ben Elliston  <bje@gnu.org>
4292         * lib/dg.exp (dg-test): If a `dg-do run' test fails to compile,
4293         mark the test as unresolved, rather than warning.
4295 2004-10-27  Nick Clifton  <nickc@redhat.com>
4297         * baseboards/iq2000-sim.exp: New file.
4299 2004-08-20  Daniel Jacobowitz  <dan@debian.org>
4301         * testglue.c: Prototype abort(3) and exit(3).
4303 2004-08-14  Paul Brook  <paul@codesourcery.com>
4305         * config/sim.exp (sim_download, sim_upload): New procs.
4307 2004-06-30  Ben Elliston  <bje@gnu.org>
4309         * config.guess: Update to current revision.
4310         * config.sub: Likewise.
4312 2004-06-12  Ben Elliston  <bje@gnu.org>
4314         * config.guess: Update to current revision.
4315         * config.sub: Likewise.
4317 2004-06-08  Alexandre Oliva  <aoliva@redhat.com>
4319         * testglue.c: Prototype abort and exit.
4321 2004-06-08  Alexandre Oliva  <aoliva@redhat.com>
4323         * baseboards/mn10300-sim.exp: Set needs_status_wrapper to empty
4324         string.
4326 Tue Feb 25 05:19:57 UTC 2003  Brendan Conoboy  <blc@@redhat.com>
4328         * lib/remote.exp (call_remote): Remove multilibs from the board
4329         name when rebooting a board.
4331 2004-06-03  Alexandre Oliva  <aoliva@redhat.com>
4333         * baseboards/mn10300-sim.exp: Set needs_status_wrapper and
4334         noresults to zero.
4336 2004-06-07  Ben Elliston  <bje@gnu.org>
4338         * lib/libgloss.exp (build_wrapper): Remove redundant set command.
4340 2004-03-29  Joel Brobecker  <brobecker@gnat.com>
4342         * lib/libgloss.exp (find_gnatmake): New procedure.
4343         * lib/target.exp (default_target_compile): Add support for Ada.
4345 2004-04-16  Kazuhiro Inaoka  <inaoka dot kazuhiro at renesas dot com>
4347         * baseboards/m32r-linux-sim.exp: Add New file.
4349 2004-04-02  Rob Savoye  <rob@direwolf.welcomehome.org>
4351         * configure.ac, example/Makefile.am: Add example/mathhelper.
4352         * configure, alocal.m4, example/Makefile.in: Regenerated.
4354 2004-04-02 Joel Sherrill <joel@OARcorp.com>
4356         * example/mathhelper: New example for using the unit testing API.
4358 2004-03-05  Daniel Jacobowitz  <drow@mvista.com>
4360         * lib/remote.exp (standard_spawn): Fix rsh username support.
4362 2004-03-06  Rob Savoye  <rob@althea.welcomehome.org>
4364         * doc/C: New directory for DocBook XML files.
4365         * doc/C/dejagnu.omf: New config file for scrollkeeper.
4366         * doc/C/topic.dat: New config file for the GNOME help system.
4367         * doc/C/dejagnu.xml: DocBook XML formatted verion of what was
4368         overview.sgml.
4369         * doc/C/ref.xml: DocBook XML formatted verion of what was
4370         ref.sgml.
4371         * doc/C/user.xml: DocBook XML formatted verion of what was
4372         user.sgml.
4374 2004-02-17  Ben Elliston  <bje@wasabisystems.com>
4376         * runtest.exp: Do not trap SIGSEGV.
4378 2004-02-16  Ben Elliston  <bje@wasabisystems.com>
4380         * configure.ac: Update AC_INIT and AM_INIT_AUTOMAKE invocations.
4381         * configure: Regenerate.
4383 2004-02-09  Ben Elliston  <bje@wasabisystems.com>
4385         * doc/runtest.1: Improve some wording. Update last revision date.
4387 2004-02-09  Ben Elliston  <bje@wasabisystems.com>
4389         * NEWS: Document yesterday's work.
4391         * runtest: Improve comments.
4393 2004-02-09  Ben Elliston  <bje@wasabisystems.com>
4395         * TODO: Update.
4397         * testsuite/libdejagnu/unit.cc: Conform with GNU coding standard.
4399 2004-02-08  Ben Elliston  <bje@wasabisystems.com>
4401         * configure.ac: Quote strings throughout in good Autoconf style.
4402         Remove AC_PROG_YACC invocation. Search for docbook2dvi, et al and
4403         expect using AC_PATH_PROG. Remove DJ_AC_PATH_DOCBOOK in favour of
4404         existing macros. Remove stale BOARDS and CONFIG substs. Ensure Tcl
4405         is at version 8.3 or greater.
4406         * configure: Regenerate.
4407         * acinclude.m4: Remove.
4408         * aclocal.m4: Regenerate.
4409         * Makefile.in: Likewise.
4410         * doc/Makefile.am (%.pdf: %.sgml): Use $(DOCBOOK2PDF).
4411         (%.dvi: %.sgml): Use $(DOCBOOK2DVI).
4412         (%.html: %.sgml): Use $(DOCBOOK2HTML).
4413         * doc/Makefile.in: Regenerate.
4414         * example/Makefile.in: Likewise.
4415         * testsuite/Makefile.in: Likewise.
4416         * testsuite/libdejagnu/Makefile.in: Likewise.
4417         * TODO: Update.
4419 2004-02-08  Daniel Jacobowitz  <drow@mvista.com>
4421         * baseboards/cf.exp: Use -T instead of -Wl,-T for ldscript.
4422         * baseboards/fr30-elf.exp, baseboards/frv-elf.exp,
4423         baseboards/h8300.exp, baseboards/i960-cyclone.exp,
4424         baseboards/i960-sim.exp, baseboards/m32r-elf.exp,
4425         baseboards/mips-idt.exp, baseboards/mips-lnews-sim.exp,
4426         baseboards/mips-lsi-sim.exp, baseboards/mips64vr4100-sim.exp,
4427         baseboards/op50n.exp, baseboards/rom68k-idp.exp,
4428         baseboards/sh-hms.exp, baseboards/tx39-dve.exp,
4429         baseboards/vr4100-ddb.exp, baseboards/vr4100-sim.exp,
4430         baseboards/vr4111-sim.exp, baseboards/vr4300-ddb.exp,
4431         baseboards/vr4300-sim.exp, baseboards/vr4300.exp,
4432         baseboards/vr5000-ddb.exp: Likewise.
4434 2004-02-08  Ben Elliston  <bje@wasabisystems.com>
4436         * runtest: Terminate with an error if expect cannot be found.
4437         * TODO: Update.
4439 2004-02-08  Ben Elliston  <bje@wasabisystems.com>
4441         * configure.ac: Use AC_PATH_PROG to find expect(1).
4442         (DJ_AC_PATH_TCLSH): Remove unneeded invocation.
4443         * acinclude.m4 (DJ_AC_PATH_TCLSH): Remove.
4444         (DJ_AC_STL): Likewise.
4445         * configure: Regenerate.
4446         * aclocal.m4: Likewise.
4447         * configure: Likewise.
4448         * Makefile.in: Likewise.
4449         * doc/Makefile.in: Likewise.
4450         * example/Makefile.in: Likewise.
4451         * testsuite/Makefile.in: Likewise.
4452         * testsuite/libdejagnu/Makefile.in: Likewise.
4453         * TODO: Update.
4455 2004-02-08  Ben Elliston  <bje@wasabisystems.com>
4457         * runtest.1: Remove any mention of mondfe.
4459 2004-02-08  Ben Elliston  <bje@wasabisystems.com>
4461         * TODO: Add an item about timeouts.
4463 2004-02-08  Daniel Jacobowitz  <drow@mvista.com>
4465         * baseboards/basic-sim.exp: Set gdb,do_reload_on_run.
4467 2004-02-08  Ben Elliston  <bje@wasabisystems.com>
4469         * lib/standard.exp: Tidy.
4471 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4473         * Makefile.am (pkgdata_SCRIPTS): Remove lib/mondfe, lib/xsh.exp.
4474         (config_SCRIPTS): Remove udi.exp, vrtx.exp.
4475         (baseboard_SCRIPTS): Remove a29k-udi.exp.
4476         * Makefile.in: Regenerate.
4477         * baseboards/a29k-udi.exp: Remove.
4478         * baseboards/dos.exp: Update comments.
4479         * config/udi.exp: Remove.
4480         * config/vrtx.exp: Remove.
4481         * doc/overview.sgml: Update. Don't mention mondfe and xsh support.
4482         * doc/ref.sgml: Likewise.
4483         * doc/user.sgml: Likewise.
4484         * lib/mondfe.exp: Remove.
4485         * lib/xsh.exp: Likewise.
4486         * lib/remote.exp: Don't load mondfe.exp or xsh.exp.
4487         * packaging/pkg/prototype: Update.
4488         * NEWS: Update.
4490 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4492         * Makefile.am (rpmspec): Remove.
4493         (rpm): Additionally depend on dejagnu.spec.
4494         ($(PKGDIR)/dejagnu): New target that installs DejaGnu into this
4495         directory.  This saves duplicated code in the solpkg and hpdepot
4496         targets.
4497         (solpkg): Depend on $(PKGDIR)/dejagnu.
4498         (hpdepot): Likewise.
4499         * Makefile.in: Regenerate.
4501 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4503         * Makefile.am (RUNTEST, RUNTESTDEFAULTFLAGS): Remove.
4504         * Makefile.in: Regenerate.
4505         * testsuite/Makefile.am (CLEANFILES): Remove.
4506         (RUNTESTDEFAULTFLATS): Pass --srcdir and RUNTEST=$(RUNTEST).
4507         * testsuite/Makefile.in: Regenerate.
4509 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4511         * lib/util-defs.exp: Move from here ..
4512         * testsuite/lib/util-defs.exp: .. to here.
4513         * Makefile.am (EXTRA_DIST): Remove lib/util-defs.exp.
4514         * Makefile.in: Regenerate.
4515         * testsuite/Makefile.am (EXTRA_DIST): Add lib/util-defs.exp.
4516         * testsuite/Makefile.in: Regenerate.
4517         * doc/ref.sgml (File Map): Remove util-defs.exp.
4518         * packaging/pkg/prototype: Update file list.
4520 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4522         * NEWS: Document changes since 1.4.4.
4524 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4526         * example/Makefile.am (check-recursive): Remove target.
4527         * example/Makefile.in: Regenerate.
4529 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4531         * dejagnu.h: Conform with GNU coding standard.
4533 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4535         * Makefile.am (PKGING): Remove.
4536         (PACKAGING_METAFILES): Update accordingly.
4537         (CLEANFILES, check-DEJAGNU): Remove.
4538         (tarball): Remove; use `dist'.
4539         (deb): Update target recipe to use `make dist'.
4541 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4543         * Clean.tcl: Remove.
4545         * Makefile.am (SUBDIRS): Add testsuite, example directories.
4546         (EXTRA_DIST): Define.
4547         (pkgdata_SCRIPTS): Add lib/*.exp files.
4548         (DATE, TCLSH): Remove.
4549         (configdir, config_DATA, config_SCRIPTS): Define.
4550         (baseboarddir, baseboard_DATA, baseboard_SCRIPTS): Likewise.
4551         (pkgdata_DATA): Likewise.
4552         (djlibexecdir, djlibexec_SCRIPTS): Likewise.
4553         (PKGING, PACKAGING_METAFILES): New macros.
4554         (clean-local): Remove.
4555         (rpm): Depend on dist.
4556         (deb): Likewise.
4557         (dist-hook): Remove.
4558         (lib_dest, lib_files): Likewise.
4559         (baseboard_dest, baseboard_files): Likewise.
4560         (include_dest, config_dest, config_files): Likewise.
4561         (install-data-local): Likewise.
4562         (uninstall-local): Likewise.
4563         (site.exp): Likewise.
4564         * Makefile.in: Regenerate.
4566         * testsuite/Makefile.am (all, all-am, etcetera): Remove.
4567         (force): Likewise.
4568         (EXTRA_DIST): Define.
4569         (site.exp): Remove target.
4570         * testsuite/Makefile.in: Regenerate.
4571         * testsuite/libdejagnu/Makefile.am (EXTRA_DIST): Define.
4572         (noinst_PROGRAMS): Rename from this ..
4573         (check_PROGRAMS): .. to this.
4574         * testsuite/libdejagnu/Makefile.in: Regenerate.
4576         * doc/Makefile.am (man_MANS): Rename from this ..
4577         (dist_man_MANS): .. to this.
4578         (info_TEXINFOS): Define.
4579         (TARGETS): Remove overview.rtf.
4580         (EXTRA_DIST): Define.
4581         (%.rtf: %.sgml): Remove rule.
4582         (%.gif: %.fig): Likewise.
4583         (%.epsi: %.eps): Likewise.
4584         (%.eps: %.fig): Likewise.
4585         (clean, realclean, distclean): Remove.
4586         (install-docs): Don't install overview.rtf.
4587         * doc/Makefile.in: Regenerate.
4588         * doc/texinfo.tex: New file.
4590         * example/calc/Makefile.am (noinst_PROGRAMS): Rename from this ..
4591         (check_PROGRAMS): .. to this.
4592         (EXTRA_DIST): Add test cases and calc.1 man page.
4593         * example/calc/Makefile.in: Regenerate.
4594         * example/calc/aclocal.m4: Likewise.
4595         * example/calc/configure: Likewise.
4596         * example/calc/stamp-h.in: Remove.
4597         * example/hello/Makefile.am (bin_PROGRAMS): Rename from this ..
4598         (check_PROGRAMS): .. to this.
4599         (EXTRA_DIST): Define.
4600         * example/hello/Makefile.in: Regenerate.
4601         * example/hello/aclocal.m4: Likewise.
4602         * example/hello/configure: Likewise.
4603         * example/hello/testsuite/Makefile.am (EXTRA_DIST): Define.
4604         * example/hello/testsuite/Makefile.in: Regenerate.
4606 2004-02-07  Ben Elliston  <bje@wasabisystems.com>
4608         * configure.ac: Remove commented out code.
4609         * configure: Regenerate.
4611 2004-02-06  Ben Elliston  <bje@wasabisystems.com>
4613         * site.tmpl: Tidy.
4615 2004-02-06  Ben Elliston  <bje@wasabisystems.com>
4617         * INSTALL: Import latest version.
4618         * depcomp: Likewise.
4619         * install-sh: Likewise.
4620         * missing: Likewise.
4622 2004-02-06  Ben Elliston  <bje@wasabisystems.com>
4624         * configure.in: Rename from this ..
4625         * configure.ac: .. to this.  Require Autoconf 2.50.
4626         * Makefile.in: Regenerate.
4627         * doc/Makefile.in: Likewise.
4628         * example/Makefile.in: Likewise.
4629         * testsuite/Makefile.in: Likewise.
4630         * testsuite/libdejagnu/Makefile.in: Likewise.
4632 2004-02-06  Ben Elliston  <bje@wasabisystems.com>
4634         * lib/target.exp (prune_warnings): Add spaces where required in
4635         NetBSD warnings.  Supersedes a patch in pkgsrc's devel/dejagnu.
4637 2004-02-05  Ben Elliston  <bje@wasabisystems.com>
4639         * config.guess: Update to current revision.
4640         * config.sub: Likewise.
4642 2004-02-04  Ben Elliston  <bje@wasabisystems.com>
4644         * configure.in (AC_NO_EXECUTABLES): Remove.
4645         * configure: Rebuild with Autoconf 2.59.
4646         * acinclude.m4 (DJ_AC_STL): Quote macro name to appease aclocal.
4647         (DJ_AC_PATH_TCLSH): Likewise.
4648         (DJ_AC_PATH_DOCBOOK): Likewise.
4649         * aclocal.m4: Rebuild.
4650         * Makefile.in: Rebuild with Automake 1.8.2.
4651         * doc/Makefile.in: Likewise.
4652         * example/Makefile.in: Likewise.
4653         * testsuite/Makefile.in: Likewise.
4654         * testsuite/libdejagnu/Makefile.in: Likewise.
4656 2004-01-30  Ben Elliston  <bje@wasabisystems.com>
4658         Import orphaned patches from sources.redhat.com:
4660         2002-05-02  Fernando Nasser  <fnasser@redhat.com>
4661         * doc/dejagnu.texi: Document KFAIL and KPASS.
4663         2002-02-20  Richard Henderson  <rth@redhat.com>
4664         * lib/target.exp (prune_warnings): Revert early "In function"
4665         strip, as this breaks g++.dg tests.  Match dangerous regexp
4666         without the "In function" header.
4668         2002-02-09  Richard Henderson  <rth@redhat.com>
4669         * lib/target.exp (prune_warnings): Strip "In function" etc early.
4670         Adjust "dangerous" regexp for glibc's tmpnam warning.
4672         2001-09-10  Jim Blandy  <jimb@redhat.com>
4673         * baseboards/rom68k-idp.exp: Use -Tidpgdb.ld as the linker script,
4674         so we get the version of the `outbyte' function that does console
4675         output in a way that GDB's rom68k target recognizes.  Note that
4676         the board can now do output.
4678         2000-04-25  Felix Lee  <flee@cygnus.com>
4679         * baseboards/tx39-sim.exp: Use idt, not dve linker script.  Delete
4680         misleading comments and null statements.
4682 2004-01-30  Ben Elliston  <bje@wasabisystems.com>
4684         * DejaGnu 1.4.4 released.
4686 2004-01-27  Ben Elliston  <bje@wasabisystems.com>
4688         * Makefile.am (tarball): Depend on book1.html, not overview.html.
4689         Don't echo needless messages. Portably copy the source tree to
4690         dejagnu-${VERSION}.  Portably copy documentation files from the
4691         source tree to the distribution directory.  Don't copy RPM-related
4692         files -- leave that to the rpm target.
4693         (snapshot): Remove target.
4694         (overview.html): Rename target from this ..
4695         (book1.htm): .. to this.
4696         (rpm): Portably copy tar file to SOURCES directory.
4697         (deb): Depend on book1.html, not overview.html.
4698         (dist-hook): Depend on book1.html, not overview.html.
4699         * Makefile.in: Rebuild.
4700         * doc/Makefile.am (TARGETS): Depend on book1.html.
4701         (book1.html): Depend on html/book1.html.
4702         (overview.dvi): Remove target.
4703         * doc/Makefile.in: Rebuild.
4705 2004-01-27  Ben Elliston  <bje@wasabisystems.com>
4707         * Clean.tcl: Run tclsh via /usr/bin/env for portability.
4708         (cleanfiles): Concatenate regular filenames that match .*.
4710 2004-01-12  Ben Elliston  <bje@wasabisystems.com>
4712         * baseboards/frv-sim.exp: Remove reference to devo/sim.
4714 2004-01-27  Ben Elliston  <bje@wasabisystems.com>
4716         * doc/overview: Remove all files.
4718 2003-12-03  Ben Elliston  <bje@wasabisystems.com>
4720         * testsuite/runtest.all/utils.test: Fix a test for proc find which
4721         assumed that "subsubfile1" would appear at the end of the returned
4722         list.  Adjust to use a more robust regular expression.
4724 2003-11-26  Ben Elliston  <bje@wasabisystems.com>
4726         * doc/overview.sgml (version): Update.
4727         * doc/overview/installation.html: Likewise.
4729         * packaging/rpm/dejagnu.spec: Update version numbers throughout.
4730         * packaging/pkg/pkginfo: Likewise.
4731         * packaging/depot/dejagnu.psf: Likewise.
4733 2003-10-25  Ben Elliston  <bje@wasabisystems.com>
4735         * runtest.exp (frame_version): Bump version.
4736         * configure.in (AM_INIT_AUTOMAKE): Likewise.
4737         * configure: Regenerate.
4739 2003-10-16  Rob Savoye   <rob@welcomehome.org>
4741         * packaging/prototype: Remove sh-hms-sim.exp, add sh-sim.
4743 2003-10-13  Ben Elliston  <bje@wasabisystems.com>
4745         * baseboards/sh-hms-sim.exp: Remove. Replaced by sh-sim.exp.
4747 2003-10-11  Corinna Vinschen  <vinschen@redhat.com>
4749         * baseboards/sh-sim.exp: New file.
4751 2003-10-11  Ben Elliston  <bje@wasabisystems.com>
4753         * NEWS: Tidy.
4754         * AUTHORS: Don't list maintainers, reference MAINTAINERS instead.
4756 2003-10-08  Ben Elliston  <bje@wasabisystems.com>
4758         * i960glue.c: Remove.
4759         * packaging/pkg/prototype: Remove i960glue.c.
4761 2003-10-07  Ben Elliston  <bje@wasabisystems.com>
4763         * contrib/README: Remove.
4764         * contrib/testit: Remove bitrotten script.
4765         * contrib/test-g++: Likewise.
4766         * contrib/test-tool: Likewise.
4768 2003-08-23  Ben Elliston  <bje@wasabisystems.com>
4770         * TODO: Tidy.
4771         * contrib/README: Bring up to date.
4773 2003-08-23  Corinna Vinschen  <vinschen@redhat.com>
4775         * config/sid.exp: Add gdb settings to use no hardware watchpoints.
4777 2003-08-23  Ben Elliston  <bje@wasabisystems.com>
4779         * README: Update section on reporting bugs.
4781 2003-08-22  Ben Elliston  <bje@wasabisystems.com>
4783         * lib/kermit.exp: Document procs.
4784         * lib/ftp.exp: Likewise.
4786 2003-08-19  Ben Elliston  <bje@wasabisystems.com>
4788         * contrib/testit: Run wish via /usr/bin/env for portability.
4790 2003-08-18  Ben Elliston  <bje@wasabisystems.com>
4792         * Makefile.am: Tidy comments and unused command lines.
4793         * Makefile.in: Regenerate.
4794         * testsuite/libdejagnu/Makefile.in: Likewise.
4796         * contrib/bluegnu2.0.3: Remove unsupported subtree.
4798 2003-08-18  Ben Elliston  <bje@wasabisystems.com>
4800         * MAINTAINERS: New file.
4802 2003-08-17  Ben Elliston  <bje@wasabisystems.com>
4804         * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove empty variable.
4805         * doc/Makefile.in: Regenerate.
4807 2003-08-16  Ben Elliston  <bje@wasabisystems.com>
4809         * doc/overview.sgml (overview): Start overhauling chapter.
4811         * doc/README.Writers: New document on style conventions.
4812         * doc/ref.sgml: Replace "test suite" with "testsuite" throughout.
4813         * doc/user.sgml: Likewise.
4814         * doc/overview.sgml: Likewise.
4815         * doc/dejagnu.texi (Design Goals): Change "Deja Gnu" to "DejaGnu".
4817 2003-08-12  Ben Elliston  <bje@wasabisystems.com>
4819         * Makefile.am (tarball): Update path to dejagnu.spec.
4820         (rpmspec): Likewise.
4821         (deb): Likewise, update path to package metafiles.
4822         (solpkg): Likewise.
4823         (hpdepot): Likewise.
4824         * Makefile.in: Regenerate.
4825         * aclocal.m4: Likewise.
4826         * configure: Likewise.
4827         * doc/Makefile.in: Likewise.
4828         * example/Makefile.in: Likewise.
4829         * testsuite/Makefile.in: Likewise.
4830         * deb: Move from here ..
4831         * packaging/deb: .. to here.
4832         * redhat: Move from here ..
4833         * packaging/rpm: .. to here.
4834         * depot: Move from here ..
4835         * packaging/depot: .. to here.
4836         * pkg: Move from here ..
4837         * packaging/pkg: .. to here.
4839         * testsuite/libdejagnu/Makefile.am (CXXFLAGS): Rename from this ..
4840         (AM_CXXFLAGS): .. to this, in order to suppress Automake warning.
4841         * testsuite/libdejagnu/Makefile.in: Regenerate.
4843 2003-08-07  Ben Elliston  <bje@wasabisystems.com>
4845         * config/ddb.exp (${board}_init): Fix thinko: use Tcl incr command
4846         to increment count rather than count++ as in C.
4848 2003-08-06  Ben Elliston  <bje@wasabisystems.com>
4850         * lib/remote.exp: Replace "TCL" with "Tcl".
4852 2003-07-30  Ben Elliston  <bje@wasabisystems.com>
4854         * doc/runtest.1: Replace "TCL" with "Tcl".
4855         Make last revision date current.
4857 2003-07-29  Ben Elliston  <bje@wasabisystems.com>
4859         * doc/overview.sgml: Replace "NT" with "Windows", correct Cygwin
4860         URLs and other stylistic improvements.
4861         * doc/ref.sgml: Likewise.
4862         * doc/user.sgml: Likewise.
4864 2003-07-25  Mike Stump  <mrs@apple.com>
4866         * lib/target.exp (prune_warnings): Handle "nfs server .* not
4867         responding" and "nfs server .* is alive again".
4869 2003-07-20  Ben Elliston  <bje@wasabisystems.com>
4871         * config.guess: Update to most recent version.
4872         * config.sub: Ditto.
4873         * AUTHORS: Add self to list of maintainers.
4875 2003-07-25  Jim Dein  <jdein@deinji5.apple.com> (RIP)
4877         * lib/utils.exp (find): Fix double recursion bug.
4879 2002-02-25  Jackie Smith Cashion  <jsmith@redhat.com>
4881         * baseboards/am33_2.0-libremote.exp: New file.
4883 2000-11-21  Drew Moseley  <dmoseley@redhat.com>
4885         * baseboards/mn10300-cygmon.exp: Use the am33-2 flag for the
4886         ASB2303 board.
4888 2000-08-10  Drew Moseley  <dmoseley@cygnus.com>
4890         * baseboards/mn10300-cygmon.exp: Added support for Cygmon based
4891         ASB2303 board.
4893 2003-06-13  Phil Edwards <pme@devphil.com>
4895         * baseboards/mips64-sim.exp, baseboards/mips-sim.exp,
4896         baseboards/mips-sim-idt32.exp, baseboards/mips-sim-idt64.exp: Use
4897         only -T[linker] instead of -Wl,-T[linker].
4899 2003-06-13  Jason Thorpe  <thorpej@wasabisystems.com>
4901         * lib/target.exp (prune_warnings): Add two more linker
4902         warning patterns for warnings generated by modern verions
4903         of NetBSD.
4905 2003-05-12  H.J. Lu <hongjiu.lu@intel.com>
4907         * lib/libgloss.exp (build_wrapper): Add -Wl,-wrap,_exit.
4909 2003-05-09  H.J. Lu <hongjiu.lu@intel.com>
4911         * runtest: Fix a typo.
4913 2003-05-03  Nitin Dhavale <nitinpdhavale@indiatimes.com>
4915         * doc/user.sgml: Clarify how to set the verbose option.
4917 2003-03-28 Chris Demetriou <cgd@broadcom.com>
4919         * lib/framework.exp (check_conditional_xfail): Adjust so that
4920         an empty 'includes' list matches all sets of flags.
4921         * doc/dejagnu.texi: Document the above.
4922         * doc/ref.sgml: Likewise.
4924 2003-03-27  David Heine <dlheine@tensilica.com>
4926         * baseboards/xtensa-sim.exp: Fix a syntax error.
4928 2003-03-16  Rob Savoye  <rob@direwolf.welcomehome.org>
4930         * lib/unix.exp: Preserve the value of LD_LIBRARY_PATH, rather
4931         than stomp on it. This is based on a patch from Brendan Conoboy
4932         <blc@redhat.com>.
4933         * Most files: Update copyright dates.
4935 2003-03-13  Mike Stump  <mrs@apple.com>
4937         * lib/dg.exp(dg-test): Add compiler flags to testcase name, to
4938         help ensure uniqueness.
4940 2003-03-05  Alexandre Oliva  <aoliva@redhat.com>
4942         * lib/remote.exp (standard_download, standard_upload): Support
4943         nfsdir and nfsroot_server.
4945 See ChangeLog-1992 for earlier changes.