1 2022-11-30 Jacob Bachmeyer <jcb@gnu.org>
3 * testsuite/libdejagnu/unit.exp: Rename this...
4 * testsuite/libdejagnu/harness.exp: ...to this.
6 * doc/dejagnu.texi (C++ unit testing API): Document recent
7 improvements and the rest of the C++ API.
9 * dejagnu.h (TestState::TestState): Only perform initialization
10 when the first TestState object is constructed.
11 (DG): Add global TestState object.
13 * dejagnu.h (DG__endmsg): New function, called using atexit().
14 (endmsg_registered, TestState_count): Add fields to DG__status.
15 (DG__init): New function, to register DG__endmsg.
16 (pass, xpass, fail, xfail, untested, unresolved, unsupported)
17 (note): Call DG__init to ensure libdejagnu initialization.
18 (totals): Move "END" message to DG__endmsg.
19 (TestState::TestState): Consider DG__endmsg registered when a
20 TestState object is constructed.
21 (TestState::TestState, TestState::~TestState): Track number of
22 live TestState objects in global status structure.
23 (TestState::~TestState): Call totals() and emit "END" message only
24 when the last TestState object is destroyed.
26 * dejagnu.h (outstate): Remove.
27 (TestState::pass, TestState::xpass, TestState::fail)
28 (TestState::xfail, TestState::untested, TestState::unresolved)
29 (TestState::unsupported, TestState::note): Remove support for
30 overriding protocol tag lines.
31 (outstate_list): Rename this...
32 (DG__outstate_list): ...to this to mark it as internal.
33 (teststate): Rename this...
34 (DG_teststate): ...to this to avoid name collisions with user code.
35 (TestState::TestState): Sort lines by length.
37 * dejagnu.h (buffer): Remove this variable.
38 (pass, xpass, fail, xfail, untested, unresolved, unsupported)
39 (note): Replace use of buffer and vsnprintf with flockfile,
40 multiple writes, and funlockfile in all functions.
42 * dejagnu.h (DG__status): New struct for test counters.
43 (passed, failed, xpassed, xfailed, untest, unresolve, unsupport):
44 Move all counters into new struct, changing all functions.
46 * doc/dejagnu.texi (C unit testing API): Document use of "DG_"
47 prefix in dejagnu.h and "DG__" for internal symbols.
48 (C++ unit testing API): Likewise. Also declare namespace
49 "DejaGnu" reserved for future expansion.
51 2022-11-29 Jacob Bachmeyer <jcb@gnu.org>
53 * Makefile.in: Regenerate.
54 * Makefile.am (check_PROGRAMS): Add testsuite/libdejagnu/unit-ccxxmix.
55 (testsuite_libdejagnu_unit_ccxxmix_SOURCES): Add.
56 * testsuite/libdejagnu/unit.exp: Add tests for C/C++ mixed usage.
57 * testsuite/libdejagnu/unit-ccxxmix.cxx: New file.
59 * testsuite/libdejagnu/unit.exp: Add note that tests for the
60 framework side of the unit testing protocol are located in
61 testsuite/runtest.main/stats.exp and its nested testsuite.
63 * Makefile.in: Regenerate.
64 * Makefile.am (check_PROGRAMS): Remove unit.
65 (unit_SOURCES): Remove.
66 * testsuite/libdejagnu/tunit.exp: Remove file.
67 * testsuite/libdejagnu/unit.cc: Remove file.
68 The limited coverage of this test is now included in unit.exp
69 and unit-cxx, and supporting this test required some leaky
70 abstractions in dejagnu.h that can now be cleaned up.
72 * Makefile.in: Regenerate.
73 * Makefile.am (check_PROGRAMS): Add testsuite/libdejagnu/unit-cxx.
74 (testsuite_libdejagnu_unit_cxx_SOURCES): Add.
75 * testsuite/libdejagnu/unit.exp: Add tests for C++ unit test API.
76 * testsuite/libdejagnu/unit-cxx.cxx: New file.
78 * dejagnu.h (TestState::totals): Emit header line, like the C version.
80 * dejagnu.h (TestState::note): New method, like C note().
81 * doc/dejagnu.texi (C++ unit testing API): Add note() method.
83 * doc/dejagnu.texi (C++ unit testing API): Fix incorrect
84 documentation. The C and C++ interfaces share the same global
85 counters, as do all C++ TestState objects.
87 2022-11-28 Jacob Bachmeyer <jcb@gnu.org>
89 * dejagnu.h: Remove _DEJAGNU_WAIT_ conditional and revise comment
90 to explain improved solution to the problem for which it seems to
91 have been intended as a workaround.
92 (wait): Remove this function. It conflicted with POSIX wait(2);
93 this conflict was reported as PR59586.
95 * testsuite/runtest.main/stats.exp: Add test for UNSUPPORTED
96 result from a unit test program.
97 * testsuite/runtest.main/nested/testsuite/stat.test/unit-sub.awk:
98 Update to account for addition of END marker and UNSUPPORTED to
99 DejaGnu unit testing protocol.
101 * dejagnu.h: Add UNSUPPORTED test result.
102 (unsupport): New counter variable for UNSUPPORTED results.
103 (unsupported): New function in C API.
104 (TestState::unsupported): New function in C++ API.
105 (outstate_list): Add UNSUPPORTED entry.
106 (teststate::laststate): Likewise.
107 (totals): Mention number of unsupported tests.
108 (TestState::totals): Likewise for C++ API.
109 * lib/dejagnu.exp (host_execute): Add UNSUPPORTED test result.
110 * doc/dejagnu.texi (DejaGnu unit test protocol): Document same.
111 (C unit testing API): Document new function for same.
112 (C++ unit testing API): Document new function for same.
114 * testsuite/libdejagnu/unit-c.c: Add test for UNSUPPORTED.
115 * testsuite/libdejagnu/unit.exp: Likewise.
117 * testsuite/libdejagnu/unit.exp: Add test for NOTE message.
119 2022-11-26 Jacob Bachmeyer <jcb@gnu.org>
121 * Makefile.in: Regenerate.
122 * Makefile.am (AM_CXXFLAGS): Change this...
123 (AM_CPPFLAGS): ...to this. (Also remove -g flag.)
124 (check_PROGRAMS): Add testsuite/libdejagnu/unit-c.
125 (testsuite_libdejagnu_unit_c_SOURCES): Add.
126 (TESTSUITE_FILES): Update.
127 * testsuite/libdejagnu/unit-c.c: New file.
128 * testsuite/libdejagnu/unit.exp: New file.
130 * dejagnu.h (xpass): Fix use of wrong counter.
132 (totals): Report unexpected passes if any occurred.
134 * doc/dejagnu.texi (DejaGnu unit test protocol): Add end marker
135 line using "END" to allow detecting tests that exit prematurely.
136 The "Totals:" line was previously used for this purpose, but it
137 does not match the pattern documented as reserved for carrying
138 unit test results and information.
140 * lib/dejagnu.exp (host_execute): Remove test for "Totals" line.
141 (host_execute): Add corresponding support for the new line types.
143 * dejagnu.h (totals): Add end marker.
144 (TestState::totals): Likewise.
146 2022-10-04 Jacob Bachmeyer <jcb@gnu.org>
150 * lib/dg.exp (dg-test): Store results of analyzing messages in a
151 list, then report them to the framework after giving the pruning
152 callback an opportunity to skip the test case.
154 * testsuite/runtest.libs/dg.test: Add tests for skipping tests
155 based on special result codes from mock-dg-prune.
156 (mock-dg-test): Add directive for output text.
157 (mock-dg-prune): Recognize special markers for
158 UNRESOLVED/UNSUPPORTED/UNTESTED result codes.
160 2022-10-01 Jacob Bachmeyer <jcb@gnu.org>
164 * testsuite/runtest.libs/mockutil.tcl (test_proc_with_mocks):
165 Report test failure instead of raising errors.
167 * testsuite/runtest.libs/dg.test: Add more unit tests.
168 (eval_tests): Copy this procedure...
169 * testsuite/runtest.libs/target.test (eval_tests): ...from here.
171 2022-09-30 Jacob Bachmeyer <jcb@gnu.org>
175 * testsuite/runtest.libs/mockutil.tcl (test_proc_with_mocks): Add
176 usage comment and option to match number of calls for test.
177 (create_test_interpreter): Add support for mockvfs.
179 * testsuite/runtest.libs/dg.test: New file.
181 2022-09-29 Jacob Bachmeyer <jcb@gnu.org>
185 * testsuite/runtest.libs/mockvfs.tcl: New file.
187 2022-09-26 Jacob Bachmeyer <jcb@gnu.org>
189 * testsuite/runtest.libs/libs.exp (process_test): Add forward
190 slash to the list of characters recognized as text.
192 2022-01-21 Jacob Bachmeyer <jcb@gnu.org>
196 * runtest.exp (runtest): Reset the global warning and error
197 counters before running each test file. This prevents an error
198 "left over" from a previous test file from causing the first test
199 in the next file to be spuriously reported as UNRESOLVED.
201 * Makefile.am (TESTSUITE_FILES): Add new files.
203 * testsuite/runtest.main/pr53427.exp: New file for regression test.
204 * testsuite/runtest.main/nested/testsuite/pr53427.test/a.exp: Likewise.
205 * testsuite/runtest.main/nested/testsuite/pr53427.test/b.exp: Likewise.
207 2021-06-29 Jacob Bachmeyer <jcb@gnu.org>
211 * runtest.exp: Adjust detection logic for deprecated broken legacy
212 case of a testsuite not actually in a testsuite/ directory.
214 This was never supported but happened to work in older versions.
216 2021-05-22 Jacob Bachmeyer <jcb@gnu.org>
218 * Makefile.am (TESTSUITE_FILES): Correct oversight.
220 * configure, Makefile.in, aclocal.m4: Regenerate.
222 * runtest.exp, configure.ac, doc/version.texi: Update version.
224 * dejagnu: Fix error message.
226 * config.guess: Import patched version; patches sent upstream.
228 * commands/help.sh: Add test mode in which man(1) is never
229 actually invoked. The ability to reference a manpage by absolute
230 file name seems to be unique to Free systems.
231 * testsuite/launcher.all/help.exp: Amend test list to use new
232 testing mode in "dejagnu help" command. This mode should also
233 work on Solaris, so the logic for skipping the tests is removed.
235 2021-05-20 Jacob Bachmeyer <jcb@gnu.org>
237 * dejagnu: Search for a POSIX Awk and validate that at least a
238 simple Awk program actually works.
239 * testsuite/launcher.all/command.exp: Add tests for error produced
240 when no Awk is found and a help message is requested.
242 * lib/dejagnu.exp: Avoid reporting next test as UNRESOLVED when
243 reporting error due to missing size(1) while loading file.
245 * testsuite/lib/runtest.exp (runtest_copy_nested_testsuite_log):
246 New procedure. Dumps log from nested run into main test log.
248 * testsuite/runtest.libs/utils.test: Change test for [which make]
249 to [which sh] because make(1) is not always available on non-GNU
250 systems but sh(1) exists on any Unix. GNU make is often installed
251 as "gmake" on non-GNU systems and may be the only "make" utility.
253 * testsuite/runtest.main/pr42399.exp (test_pr42399): Revise to
254 ensure that a failure to produce any output at all in the inner
255 test will be detected. This was discovered on Solaris 10.
257 * testsuite/runtest.main/stats.exp: Copy stat.log from nested
258 testsuite run to the main test log upon test failure.
260 * testsuite/runtest.main/nested/testsuite/stat.test/unit-sub.exp:
261 Explicitly pass /dev/null to unit-sub.awk because /usr/bin/awk on
262 Solaris 10 does not seem to recognize assignment to ARGV.
263 * testsuite/runtest.main/nested/testsuite/bug.test/pr42399-sub.exp:
266 2021-05-18 Jacob Bachmeyer <jcb@gnu.org>
268 * dejagnu: Redirect input from /dev/null when testing if awk is
269 GNU Awk; this avoids a hang on Solaris 10 where awk treats
270 --version as an Awk program and attempts to read input.
271 (command): Rework the initial setting of this variable to avoid
272 limitations in Solaris 10 awk.
274 * testsuite/report-card.all/onetest.exp: Avoid Tcl error when item
275 and totals lines are missing entirely.
277 * testsuite/runtest.main/pr48155.exp: Fix assumption about exit
278 code from /bin/false, which is different on Solaris.
280 2021-05-05 Jacob Bachmeyer <jcb@gnu.org>
284 * Makefile.am (TESTSUITE_FILES): Update.
285 (CLEANFILES): Add special init file for PR48155 nested tests.
287 * testsuite/runtest.main/pr48155.exp: New file.
288 * testsuite/runtest.main/pr48155-csh.sh: New trivial file. This
289 script emulates the behavior of the C shell if an attempt is made
290 to use it to run the config.guess script.
292 2021-05-04 Jacob Bachmeyer <jcb@gnu.org>
296 * runtest.exp: Tighten regexp used to validate output from
297 config.guess. The previous regexp would accept an error produced
298 if config.guess was incorrectly run using the C shell.
300 2021-04-28 Jacob Bachmeyer <jcb@gnu.org>
302 * configure, Makefile.in: Regenerate.
304 * runtest.exp, configure.ac, doc/version.texi: Update version.
306 * Makefile.am (TAR_OPTIONS): Explicitly select v7 tarball format
307 to work around Automake limitation of assuming that v7 is default.
309 2021-04-20 Jacob Bachmeyer <jcb@gnu.org>
311 * configure.ac: Set Automake options to use the ancient and
312 universal V7 format when building distribution tarballs. The
313 limitations of this format are not expected to impact DejaGnu; the
314 "ustar" format will be used instead if this is proved wrong.
316 * Makefile.am (TAR_OPTIONS): Add exported environment variable to
317 set options when building distribution tarballs. Ensure that all
318 files in distribution tarballs will be recorded as owned by root.
320 2021-04-16 Jacob Bachmeyer <jcb@gnu.org>
324 * dejagnu (command): Use Awk instead of non-portable basename(1)
325 and a non-portable sed(1) pattern to initially set this variable.
327 * dejagnu: Use shell "case" pattern match instead of non-portable
328 "grep -q" to determine if "awk" is GNU Awk.
330 * dejagnu: Use Awk instead of non-portable "grep -q" to verify
331 that a file contains a help message. Also use Awk to extract help
332 messages from files, instead of a complex dynamic sed(1) program.
334 * configure.ac: Remove experimental support for propagating
335 CONFIG_SHELL to scripts in the source directory.
337 * runtest.exp: Use CONFIG_SHELL or SHELL environment variable when
338 running config.guess. Check the result carefully and stop with an
339 error immediately if running config.guess does not produce
340 something that plausibly resembles a triplet. Advise the user
341 that SHELL or CONFIG_SHELL may need to be set in the environment.
343 2021-04-15 Jacob Bachmeyer <jcb@gnu.org>
347 * dejagnu: Avoid using $? for an exit code; it is convenient until
348 the tests fail because the script is run on Solaris where false
349 returns 255 instead of 1 and the test harness expects exit code 1.
351 2021-04-14 Jacob Bachmeyer <jcb@gnu.org>
355 * dejagnu: Replace use of "expr :" with shell "case" pattern
356 match to avoid limitations of Solaris 10 expr(1).
358 2021-04-14 Jacob Bachmeyer <jcb@gnu.org>
360 * lib/specs.exp, testsuite/runtest.libs/specs.test: New files.
362 2021-04-08 Jacob Bachmeyer <jcb@gnu.org>
364 * configure: Regenerate.
366 * runtest.exp, configure.ac, doc/version.texi: Update version.
368 * configure.ac: Change "dnl" comments that should appear in
369 configure to regular comments.
370 Add experimental support for propagating CONFIG_SHELL to the
371 config.sub and config.guess scripts in the source directory.
373 2021-04-01 Jacob Bachmeyer <jcb@gnu.org>
377 * dejagnu, commands/help.sh, commands/report-card.awk: Revise help
378 message to better fit GNU conventions, with thanks to Tom Tromey
379 for the reporting this issue.
383 * runtest: Remove use of non-portable "if !" that causes problems
384 with /bin/sh on Solaris 10.
386 * dejagnu (Variants): Split the declaration of this read-only
387 variable into an assignment followed by marking it read-only,
388 instead of doing both in one statement. The Solaris 10 /bin/sh
389 does not accept the combined form.
391 2021-03-30 Jacob Bachmeyer <jcb@gnu.org>
393 * configure: Regenerate.
395 * runtest.exp, configure.ac, doc/version.texi: Update version.
397 2021-03-26 Jacob Bachmeyer <jcb@gnu.org>
401 * testsuite/launcher.all/help.exp: Skip the tests on Solaris,
402 since Solaris man(1) does not accept explicit filenames. The
403 manpages will be installed as usual, and the "dejagnu help"
404 command should work after installation.
406 Also set PAGER for testing, since other systems might also ignore
407 MANPAGER and that would cause the test to hang.
409 * testsuite/lib/launcher.exp (dejagnu_run): Send commands run and
410 copies of the output produced to the log.
412 * commands/help.sh: Extend PR47382 fix (below) to this file.
416 * testsuite/lib/runtest.exp: Remove support for automatically
417 locating an Expect executable in the old Cygnus tree layout.
419 2021-03-25 Jacob Bachmeyer <jcb@gnu.org>
423 * dejagnu, runtest: Remove use of "$()" command substitution and
424 "$(())" arithmetic substitution shell constructs. The /bin/sh on
425 Solaris 10 does not support them. They were replaced with the
426 traditional backticks for command substitution and backticks and
427 the expr command for arithmetic substitution.
429 Also add markers to explicitly disable shellcheck warnings that
430 would lead to reintroducing these problems.
432 Also avoid the non-portable "`..."..."...`" construct on a warning
433 in the GNU Autoconf manual, section "Shell Substitutions",
434 although this introduces additional variables.
436 2021-03-22 Jacob Bachmeyer <jcb@gnu.org>
438 * configure: Regenerate.
440 * runtest.exp, configure.ac, doc/version.texi: Update version.
442 * config.guess, config.sub: Import from upstream.
444 * MAINTAINERS: Acknowledge that Ben Elliston has left the project.
446 2021-03-15 Jacob Bachmeyer <jcb@gnu.org>
448 * Makefile.am, Makefile.in: Update accordingly.
450 * contrib/compare_tests: Remove. This file lacked a GPL notice.
451 This file was imported from GCC many years ago. The GCC version
452 has benefited from continued development, while ours has not.
454 * testsuite/runtest.libs/load_lib.exp: Remove. This file lacked a
455 GPL notice and an attempt to contact the contributor produced no
456 response. The tests in this file will need to be rewritten in any
457 case; there is a bug in load_lib that they should expose and there
458 is now additional infrastructure for tests of this type that was
459 not available when this file was written.
461 2020-12-27 Jacob Bachmeyer <jcb@gnu.org>
463 * testsuite/runtest.libs/libs.exp (process_test): Report running
464 test scripts as each test script is run.
465 Also, at top-level, sort the list of tests to run.
467 * doc/dejagnu.texi (testsuite procedure): Remove noise word "api"
468 from new "testsuite can call api" feature test API entrypoint.
469 * lib/framework.exp (testsuite_can): Likewise.
470 * testsuite/runtest.libs/testsuite_can.test: Likewise.
473 2020-12-16 Jacob Bachmeyer <jcb@gnu.org>
475 * configure: Regenerate.
477 * configure.ac: Remove Tcl version check.
479 Apply patch from Nick Clifton:
481 * baseboards/msp430-sim.exp: Add missing copyright and GPL notice.
483 Apply patch from Dimitar Dimitrov:
485 * baseboards/pru-sim.exp: New file.
487 * Makefile.am (baseboard_DATA): Add pru-sim.exp to list.
488 * Makefile.in (baseboard_DATA): Likewise.
490 2020-12-15 Jacob Bachmeyer <jcb@gnu.org>
492 * configure: Regenerate.
493 * Makefile.in: Regenerate.
495 * Makefile.am (RUNTEST): Explain override of Automake default.
497 * configure.ac: Update for autoconf 2.69 using autoupdate.
498 * configure.ac: Remove search for expect now handled by Automake.
500 Apply patch from Dimitar Dimitrov:
502 * Makefile.am (dejagnu_TEXINFOS): Change this...
503 * Makefile.am (doc_dejagnu_TEXINFOS): ...to this.
505 This fixes an incorrectly recorded dependency.
507 2020-11-17 Jacob Bachmeyer <jcb@gnu.org>
511 * doc/dejagnu.texi (Adding a new tool): Fix incorrect description
512 that conflated the tool init file with the target interface file.
513 (Make Check): Add cross-reference to the GNU Automake manual for
516 2020-11-10 Jacob Bachmeyer <jcb@gnu.org>
520 * testsuite/lib/launcher.exp (link_dejagnu_launcher_test_item):
521 Use [file normalize] to ensure that link targets are unambiguous.
522 (link_dejagnu_launcher_test_item): Avoid spurious errors when test
523 environment has already been prepared in a previous run.
525 * testsuite/lib/launcher.exp (link_dejagnu_launcher_test_item):
526 New procedure to collect existing repeated testsuite code.
527 * testsuite/launcher.all/command.exp: Establish testing
528 environment using link_dejagnu_launcher_test_item procedure.
530 2020-11-09 Jacob Bachmeyer <jcb@gnu.org>
532 * aclocal.m4: Regenerate.
533 * configure: Regenerate.
534 * Makefile.in: Regenerate.
536 * configure.ac: Revert development version branch tagging hook.
537 * Makefile.am: Likewise.
539 These caused failures (reported in PR44462 as a secondary issue)
540 when a source tree is copied out of a Git directory.
542 2020-08-31 Jacob Bachmeyer <jcb@gnu.org>
544 * doc/runtest.1: Add brief GFDL notice. License notice in the
545 formatted manpage should now describe DejaGnu as a whole.
547 * NEWS: Prepare for release.
549 2020-08-18 Jacob Bachmeyer <jcb@gnu.org>
551 * testsuite/runtest.libs/testsuite_file.test: Add missing
552 copyright and GPL notice.
553 * testsuite/runtest.libs/testsuite_can.test: Likewise.
554 * testsuite/runtest.libs/testcase_group.test: Likewise.
556 2020-08-12 Jacob Bachmeyer <jcb@gnu.org>
558 * doc/dejagnu.texi (The dejagnu_h header file): Remove node.
559 (Running unit tests): Add node.
560 (DejaGnu unit test protocol): Add node.
561 (C unit testing API): Update to reflect current API. Move mention
562 of dejagnu.h header here in preparation for future expanded
564 (C++ unit testing API): Likewise. Mention caveat that the C unit
565 test API is also available in C++ programs.
567 2020-08-10 Jacob Bachmeyer <jcb@gnu.org>
569 * baseboards/qemu.exp: Tidy whitespace.
571 2020-08-10 Jacob Bachmeyer <jcb@gnu.org>
573 Merge patch from Kito Cheng to add support for RISC-V sim target.
575 * baseboards/riscv-sim.exp: New file.
576 * Makefile.am (baseboard_DATA): Add riscv-sim.exp.
577 * Makefile.in (baseboard_DATA): Likewise.
579 2020-08-02 Jacob Bachmeyer <jcb@gnu.org>
581 * Makefile.am (TESTSUITE_FILES): Add files that were introduced
582 during development but were mistakenly not added at that time.
583 (baseboard_DATA): Sort baseboard file list.
584 (baseboard_DATA): Add missing files.
585 (dejagnu_TEXINFOS): New; add GNU FDL file.
586 (CONTRIB): Add experimental Python unit test module.
588 * Makefile.in (TESTSUITE_FILES): Likewise.
589 (baseboard_DATA): Likewise.
591 * testsuite/dejagnu.py: Move from here...
592 * contrib/dejagnu.py: ...to here.
594 2020-08-02 Rob Savoye <rob@senecass.com>
596 * Makefile.in: Regenerate so make dist works.
598 2020-07-25 Jacob Bachmeyer <jcb62281+dev@gmail.com>
600 * doc/dejagnu.texi (Writing a test case): Mention the DejaGnu
601 procedure "perror" instead of the Tcl command "error".
602 (Writing a test case): Reorganize node and give basic hints about
603 Tcl quoting and backslash escape rules.
604 (Writing a test case): Describe synchronization issues and warn
605 that prefixes of valid input can be presented for matching.
606 (Writing a test case): Fix markup from conversion from DocBook.
608 2020-07-22 Jacob Bachmeyer <jcb62281+dev@gmail.com>
612 * NEWS: Document changes to host_execute.
614 * lib/dejagnu.exp (host_execute): Revise expect matching to
615 combine all unit test protocol lines into one pattern.
616 (host_execute): Rework other expect patterns.
617 (host_execute): Ensure that all output from child process is read
618 until the child closes its output to avoid sending early SIGPIPE.
619 (host_execute): Report an ERROR (and cause the next test to be
620 recorded as UNRESOLVED) if the Expect matching buffer overflows.
621 (host_execute): Remove dependency on global "text" variable.
623 * Makefile.am (TESTSUITE_FILES): Update.
625 * testsuite/runtest.main/stats.exp: Generalize infrastructure and
626 add tests for DejaGnu unit testing support.
627 * testsuite/runtest.main/nested/testsuite/stat.test/unit-sub.exp:
629 * testsuite/runtest.main/nested/testsuite/stat.test/unit-sub.awk:
632 2020-07-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
636 * Makefile.am (TESTSUITE_FILES): Update.
638 * lib/dejagnu.exp (host_execute): Allow the executable to be
639 specified with an absolute file name.
640 (host_execute): Fix argument handling to allow passing more than
641 one argument to the executable. Return early if given no
642 arguments at all instead of trying to execute "./".
644 * testsuite/runtest.main/pr42399.exp: New file.
645 * testsuite/runtest.main/nested/testsuite/bug.test/pr42399.awk:
647 * testsuite/runtest.main/nested/testsuite/bug.test/pr42399-sub.exp:
650 2020-07-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
652 * Makefile.am (CLEANFILES): Update.
653 (TESTSUITE_FILES): Update to reflect testsuite reorganization.
655 * testsuite/lib/runtest.exp (runtest_setup_nested_testsuite): New
657 (runtest_cleanup_nested_testsuite): New procedure.
659 * testsuite/runtest.main/error.exp: Use the tool name "error" to
660 select the proper subset of the nested testsuite. Use new
661 procedures for handling nested testsuite. Use common
662 nested-init.exp local init file for nested testsuite. Let local
663 init file nested-init.exp handle setting "outdir" variable.
664 * testsuite/runtest.main/options.exp: Likewise; "null" tool.
665 * testsuite/runtest.main/stats.exp: Likewise; "stat" tool.
667 * testsuite/runtest.main/nested/: Combine nested testsuites.
668 * testsuite/runtest.main/error/testsuite/error.test/error-al-dbz.exp:
670 * testsuite/runtest.main/nested/testsuite/error.test/error-al-dbz.exp:
672 * testsuite/runtest.main/error/testsuite/error.test/error-dbz.exp:
674 * testsuite/runtest.main/nested/testsuite/error.test/error-dbz.exp:
676 * testsuite/runtest.main/error/testsuite/error.test/error-undef.exp:
678 * testsuite/runtest.main/nested/testsuite/error.test/error-undef.exp:
680 * testsuite/runtest.main/error/testsuite/error.test/simple.exp:
682 * testsuite/runtest.main/nested/testsuite/error.test/simple.exp:
684 * testsuite/runtest.main/options/testsuite/null.test/null.exp:
686 * testsuite/runtest.main/nested/testsuite/null.test/null.exp:
688 * testsuite/runtest.main/stats/testsuite/stat.test/stats-sub.exp:
690 * testsuite/runtest.main/nested/testsuite/stat.test/stats-sub.exp:
693 2020-07-16 Rob Savoye <rob@senecass.com>
695 * baseboards/qemu.exp: Works now with qemu instead of sim.
697 2020-07-06 Rob Savoye <rob@senecass.com>
699 * baseboards/qemu.exp: Initial working support to use qemu for
701 * Makefile.am: Install qemu.exp.
702 * autogen.sh: Add script borrowed from my Gnash project to
703 regenerate configure/build files.
704 * aclocal.m4, configure.ac, Makefile.am: regenerated GDB too.
705 * doc/dejagnu.texi: Update copyright date.
707 2020-06-29 Jacob Bachmeyer <jcb62281+dev@gmail.com>
711 * NEWS: Add item for repeated error messages.
713 * lib/framework.exp (log_and_exit): Add separator lines around the
714 error dumps repeated at the end of a run.
716 2020-06-26 Jacob Bachmeyer <jcb62281+dev@gmail.com>
720 * NEWS: Remove items for --keep_going / --no_keep_going options.
722 * Makefile.am (CLEANFILES): Adjust for renames.
723 (TESTSUITE_FILES): Likewise.
725 * doc/dejagnu.texi (Invoking runtest): Remove --keep_going and
726 --no_keep_going options.
727 (A POSIX Conforming Test Framework): Document that Tcl errors in
728 test scripts produce UNRESOLVED results as placeholders.
730 * doc/runtest.1: Likewise.
732 * lib/framework.exp (log_and_exit): Print collected Tcl errors.
734 * runtest.exp (dejagnu::error): New internal namespace.
735 (runtest): Collect Tcl errors caught while executing test scripts.
736 (dejagnu::opt): Remove internal namespace.
737 Remove --keep_going / --no_keep_going options. No longer abort on
738 any Tcl errors; instead store them and repeat the messages at the
741 * testsuite/runtest.main/abort.exp: Rename from this ...
742 * testsuite/runtest.main/error.exp: ... to this and revise tests.
744 * testsuite/runtest.main/abort/testsuite/abort.test/abort-al-dbz.exp:
746 * testsuite/runtest.main/error/testsuite/error.test/error-al-dbz.exp:
748 * testsuite/runtest.main/abort/testsuite/abort.test/abort-dbz.exp:
750 * testsuite/runtest.main/error/testsuite/error.test/error-dbz.exp:
752 * testsuite/runtest.main/abort/testsuite/abort.test/abort-undef.exp:
754 * testsuite/runtest.main/error/testsuite/error.test/error-undef.exp:
757 2020-06-24 Jacob Bachmeyer <jcb62281+dev@gmail.com>
761 * NEWS: Revise relevant items.
763 * doc/dejagnu.texi (Invoking runtest): Add --no_keep_going option.
764 * doc/runtest.1: Document --no_keep_going option. Remove
765 long-obsolete --name option. The --name option had been removed
766 from runtest before the code was imported into what became the
769 * runtest.exp: Add option --no_keep_going to stop immediately if a
770 test script aborts due to a Tcl error. Remove vestiges of
771 long-obsolete --name option. Make --keep_going option default.
773 * testsuite/runtest.main/abort.exp: Adjust tests to use
774 --no_keep_going and --keep_going instead of assuming a default.
776 2020-06-22 Jacob Bachmeyer <jcb62281+dev@gmail.com>
778 Merge patches from Maciej W. Rozycki to fix timeout handling.
780 * lib/remote.exp (close_wait_program): Use `catch' in killing
783 * lib/remote.exp (close_wait_program): Only kill the pending
784 force-kills if the PID list has a single entry.
785 (local_exec): Set the channel about to be closed to the
786 nonblocking mode if we didn't see an EOF.
787 (standard_close): Likewise, unconditionally.
789 2020-06-22 Jacob Bachmeyer <jcb62281+dev@gmail.com>
791 * NEWS: Mention "linker=" option and added language support.
793 * doc/dejagnu.texi (target_compile procedure): Document new
794 "linker=" option to target_compile.
796 * lib/target.exp (default_target_compile): Actually use internal
797 option for separate linker provided for Go language support. This
798 seems to have been accidentally omitted from Tom Tromey's patches.
799 (default_target_compile): Add "linker=" option, similar to
800 "compiler=" option, but the former overrides the latter when
801 building an executable.
802 (default_target_compile): Ensure that "--emit obj" is spaced from
803 previous item when used to compile Rust. Use "--emit asm" instead
804 of "-S" when generating assembly from Rust sources.
806 * testsuite/runtest.libs/target.test: Add tests for Go and Rust.
807 Also add tests for the new "early_flags=" and "linker=" options.
809 2020-06-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
811 * doc/dejagnu.texi (Libgloss): Update menu.
812 (find_go procedure, find_go_linker procedure): New nodes.
813 (find_rustc procedure): New node.
815 2020-06-19 Tom Tromey <tromey@adacore.com>
817 * doc/dejagnu.texi (target_compile procedure): Document Go
819 * lib/target.exp (default_target_compile): Handle Go.
820 * lib/libgloss.exp (find_go, find_go_linker): New procs.
822 2020-06-19 Tom Tromey <tromey@adacore.com>
824 * doc/dejagnu.texi (target_compile procedure): Document rust
826 * lib/target.exp (default_target_compile): Handle rust.
827 * lib/libgloss.exp (find_rustc): New proc.
829 2020-06-19 Tom Tromey <tromey@adacore.com>
831 * lib/target.exp (default_target_compile): Add early_flags.
832 * doc/dejagnu.texi (target_compile procedure): Document
835 2020-06-19 Jacob Bachmeyer <jcb62281+dev@gmail.com>
837 Merge patches from Tom de Vries <tdevries <at> suse.de> and write
840 * testsuite/runtest.main/abort.exp: Add tests that verify handling
841 of arithmetic errors (divide-by-zero) in a procedure called within
844 * testsuite/runtest.main/abort/testsuite/abort.test/abort-dbz.exp: New file.
846 2020-06-18 Jacob Bachmeyer <jcb62281+dev@gmail.com>
850 Thanks to Tom de Vries for raising these concerns and offering the
851 initial testsuite patch that led to these changes.
853 * NEWS: Add item for consistent abort-on-error handling.
855 * lib/framework.exp (unknown): Always link global variables. Tidy.
856 Silently propagate errors raised in autoloaded procedures and move
857 the UNRESOLVED result and aborting the test run to...
858 * runtest.exp (runtest): Report an UNRESOLVED result if a test
859 script aborts due to a Tcl error. Link global errorCode and
860 report its value if an error occurs. For consistency, abort the
861 test run on any Tcl error in a test script instead of only when
862 calling an undefined procedure.
864 * testsuite/runtest.main/abort.exp: Add tests to verify handling
865 of arithmetic errors (divide-by-zero) in an auto-loaded procedure
866 called from a test script. Adjust other patterns.
868 * testsuite/runtest.main/abort/testsuite/abort.test/abort-al-dbz.exp:
871 2020-06-17 Jacob Bachmeyer <jcb62281+dev@gmail.com>
875 * NEWS: Add item for --keep_going option.
877 * Makefile.am (CLEANFILES): Add abort-init.exp to list.
878 (TESTSUITE_FILES): Add new testsuite files to list.
880 * doc/dejagnu.texi (Invoking runtest): Document new --keep_going
882 * doc/runtest.1: Likewise.
884 * lib/framework.exp (unknown): Report an UNRESOLVED result if an
885 unknown command is invoked. Avoid exiting and propagate the error
886 from Tcl's "unknown" procedure if --keep_going was
887 specified. Brace procedure argument list.
888 * runtest.exp (dejagnu::opt): New namespace.
889 Add option --keep_going to continue running tests after a test
890 script aborts due to calling an undefined command.
892 * testsuite/runtest.main/abort.exp: New file.
893 * testsuite/runtest.main/abort/testsuite/abort.test/abort-undef.exp:
895 * testsuite/runtest.main/abort/testsuite/abort.test/simple.exp:
898 2020-06-17 Tom de Vries <tdevries <at> suse.de>
900 * lib/framework.exp (unknown): Propagate return value of auto-loaded
903 2020-06-15 Jacob Bachmeyer <jcb62281+dev@gmail.com>
905 Merge patches from Linaro:
907 2018-09-28 Christophe Lyon <christophe.lyon@linaro.org>
908 * lib/ssh.exp (ssh_exec): Redirect stderr to stdout on the remote
909 machine, to avoid race conditions.
911 2016-04-25 Yvan Roux <yvan.roux@linaro.org>
912 * lib/rsh.exp (rsh_exec): Don't remove trailing newline.
913 * lib/ssh.exp (ssh_exec): Likewise.
915 2016-06-28 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
916 * config/unix.exp (unix_load): Prepend the value of an
917 "exec_shell" board_info key to the command if it is defined.
919 2020-06-06 Jacob Bachmeyer <jcb62281+dev@gmail.com>
921 * NEWS: Document "testcase" command.
923 * doc/dejagnu.texi (testcase procedure): Document multiplex entry
924 point and "testcase group" command.
926 * lib/framework.exp: Add internal namespace ::dejagnu::group.
927 (::dejagnu::group::check_name): New procedure.
928 (::dejagnu::group::current): New procedure.
929 (::dejagnu::group::push): New procedure.
930 (::dejagnu::group::pop): New procedure.
931 (::dejagnu::group::pop_to_file): New procedure.
932 (testcase): New procedure for multiplex commands.
933 (testcase_group): New procedure implementing "testcase group".
935 * testsuite/runtest.libs/testcase_group.test: New file.
937 2020-06-05 Jacob Bachmeyer <jcb62281+dev@gmail.com>
939 * NEWS: Document new "testsuite can call api" command.
941 * doc/dejagnu.texi (testsuite procedure): Document new subcommand
942 "testsuite can call api".
944 * lib/framework.exp (testsuite): Add branch for "testsuite can".
945 (testsuite_can): New procedure implementing "testsuite can".
947 Add internal array ::dejagnu::apilist to store information for
948 "testsuite can call api" for querying the availability of an API
949 call. This will allow test scripts to adapt and use new features
950 while still being able to run under older versions of DejaGnu.
952 * testsuite/runtest.libs/testsuite_can.test: New file.
954 2020-06-02 Jacob Bachmeyer <jcb62281+dev@gmail.com>
957 * NEWS: Fix typo. Fix Emacs mode tag.
958 Document use of Tcl namespace ::dejagnu for internals.
959 * runtest.exp (dejagnu::command_line): New namespace.
960 (dejagnu::command_line::save_cmd_var): New procedure.
961 (dejagnu::command_line::restore_cmd_vars): New procedure.
962 (dejagnu::command_line::dump_cmd_vars): New procedure.
963 * runtest.exp: Save internal variables set by command line
964 arguments during the first pass and restore their values after
965 loading testsuite init files.
967 2020-06-01 Jacob Bachmeyer <jcb62281+dev@gmail.com>
970 * runtest.exp: Describe search for testsuite at verbose level 3.
971 Print initial working directory at verbose level 1.
973 2020-05-28 Jacob Bachmeyer <jcb62281+dev@gmail.com>
976 * testsuite/lib/launcher.exp: Adjust LAUNCHER variable default
977 value to use an absolute file name.
978 * testsuite/lib/report-card.exp: Likewise.
979 * testsuite/runtest.main/options.exp: Set outdir in options-init
980 instead of changing working directory in child runtest.
982 * runtest.exp (logname): Move verbose display of logname to
983 immediately after finding the user's login name.
986 * runtest.exp (libdir): Fix default value of global variable.
988 * ChangeLog: Tidy irregular indentation.
990 2020-05-26 Jacob Bachmeyer <jcb62281+dev@gmail.com>
992 * doc/dejagnu.texi (target_compile procedure): Add documentation.
994 2020-05-26 Jacob Bachmeyer <jcb62281+dev@gmail.com>
996 * doc/dejagnu.texi (target_link procedure): New stub node.
997 (default_link procedure): Document internal procedure.
998 (default_target_assemble procedure): Likewise.
999 (default_target_compile procedure): Likewise.
1001 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1003 * baseboards/{aarch64-sim, arm-ice, arm-sim, basic-sid, iq2000-sim,
1004 mn10300-sim, moxie-sim}.exp: Cleanup up whitespace.
1006 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1008 * lib/target.exp (default_target_compile): Use "host_info"
1009 procedure to probe for a host configuration, instead of checking a
1010 local empty target_info array due to lacking "global target_info".
1012 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1014 * doc/dejagnu.texi (Adding a new board): Document that the
1015 "compiler" board_info field is optional and defaults to [find_gcc]
1017 (Board configuration file): Likewise.
1019 * lib/target.exp (default_target_compile): Establish a default C
1020 compiler by evaluating [find_gcc] if no other compiler is given.
1022 * baseboards/aarch64-sim.exp: Remove no-longer-needed
1023 "set_board_info compiler [find_gcc]" from this file.
1024 * baseboards/am33_2.0-libremote.exp: Likewise.
1025 * baseboards/androideabi.exp: Likewise.
1026 * baseboards/arm-ice.exp: Likewise.
1027 * baseboards/arm-sim.exp: Likewise.
1028 * baseboards/cris-sim.exp: Likewise.
1029 * baseboards/d30v-sim.exp: Likewise.
1030 * baseboards/fr30-sim.exp: Likewise.
1031 * baseboards/frv-sim.exp: Likewise.
1032 * baseboards/gdbserver-sample.exp: Likewise.
1033 * baseboards/iq2000-sim.exp: Likewise.
1034 * baseboards/linux-gdbserver.exp: Likewise.
1035 * baseboards/linux-libremote.exp: Likewise.
1036 * baseboards/mcore-moto-sim.exp: Likewise.
1037 * baseboards/mcore-sim.exp: Likewise.
1038 * baseboards/mips-sim-idt32.exp: Likewise.
1039 * baseboards/mips-sim-idt64.exp: Likewise.
1040 * baseboards/mips-sim-mti32.exp: Likewise.
1041 * baseboards/mips-sim-mti64.exp: Likewise.
1042 * baseboards/mips-sim-mti64_64.exp: Likewise.
1043 * baseboards/mips-sim-mti64_n32.exp: Likewise.
1044 * baseboards/mips-sim-sde32.exp: Likewise.
1045 * baseboards/mips-sim-sde64.exp: Likewise.
1046 * baseboards/mips-sim.exp: Likewise.
1047 * baseboards/mmixware-sim.exp: Likewise.
1048 * baseboards/mn10200-sim.exp: Likewise.
1049 * baseboards/mn10300-sim.exp: Likewise.
1050 * baseboards/moxie-sim.exp: Likewise.
1051 * baseboards/msp430-sim.exp: Likewise.
1052 * baseboards/powerpc-sim.exp: Likewise.
1053 * baseboards/powerpcle-sim.exp: Likewise.
1054 * baseboards/rx-sim.exp: Likewise.
1055 * baseboards/sh-sim.exp: Likewise.
1056 * baseboards/sparc-sim.exp: Likewise.
1057 * baseboards/sparc64-sim.exp: Likewise.
1058 * baseboards/sparclite-sim-le.exp: Likewise.
1059 * baseboards/sparclite-sim.exp: Likewise.
1060 * baseboards/unix.exp: Likewise.
1061 * baseboards/v850-sim.exp: Likewise.
1062 * baseboards/visium-sim.exp: Likewise.
1063 * baseboards/xtensa-sim.exp: Likewise.
1065 2020-05-24 Rob Savoye <rob@senecass.com>
1067 * baseboards/pi.exp: New config file for cross testing to a
1070 2020-05-24 Tom Tromey <tom@tromey.com>
1072 * .gitignore: Add files.
1074 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1076 * testsuite/runtest.libs/target.test: Use mockutil.tcl.
1077 Collect loading DejaGnu libraries into a single loop.
1078 Revise the mock board_info array.
1079 Add section headings for different test groups in this file.
1080 Add tests for default_target_compile in lib/target.exp.
1081 * testsuite/runtest.libs/mockutil.tcl: New file.
1083 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1085 * doc/dejagnu.texi (remote_exec procedure): Explicitly list
1086 optional arguments instead of simply copying the Tcl argument list
1087 or the remote_exec procedure.
1089 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1091 * testsuite/runtest.libs/default_procs.tcl: Set sum_file to empty
1092 string instead of opening a temporary file named .tmp.
1093 * testsuite/runtest.libs/libs.exp: No longer need to remove .tmp.
1095 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1097 * testsuite/runtest.libs/target.test: Rename fake "target_info"
1098 array to a fake "board_info" array, to align with changes made to
1099 the DejaGnu core on 29 January 1997 that moved the target
1100 configuration data into the global board_info array.
1102 * testsuite/runtest.libs/remote.test: Likewise.
1104 2020-05-20 Jacob Bachmeyer <jcb62281+dev@gmail.com>
1106 * testsuite/runtest.libs/libs.exp: Use runtest_file_p to honor
1107 requests to run only some library tests.
1109 2020-05-18 Rob Savoye <rob@senecass.com>
1111 * configure.ac: Extract the current branch.
1112 * Makefile.am: Change the frame_version in runtest.exp post
1113 install to add the branch and git revision to make it easier to
1114 support multiple versions during development.
1116 2020-05-15 Rob Savoye <rob@senecass.com>
1118 * All files: Minor change, update copyright dates.
1120 2019-03-08 Andrew Burgess <andrew.burgess@embecosm.com>
1122 * runtest.exp (search_and_load_file): Join the directory and
1123 filename once using 'file join'.
1125 2019-01-24 Jacob Bachmeyer <jcb62281@gmail.com>
1127 * doc/dejagnu.texi: Refill paragraphs and normalize inter-sentence
1128 spacing so the Emacs move-by-sentence commands work correctly.
1130 2019-01-23 Ben Elliston <bje@gnu.org>
1132 * doc/dejagnu.texi: Replace "config file" with "configuration
1135 2019-01-23 Jacob Bachmeyer <jcb62281@gmail.com>
1137 * doc/dejagnu.texi (Command line option variables): Improve table
1138 formatting to fix overlapping columns and revise text slightly.
1140 2019-01-23 Jacob Bachmeyer <jcb62281@gmail.com>
1142 * doc/dejagnu.texi (Global config file): Change example to use the
1143 Tcl "switch" command instead of the deprecated "case" command.
1145 2019-01-12 Jacob Bachmeyer <jcb62281@gmail.com>
1147 * doc/dejagnu.texi (runtest_file_p procedure): Fix description of
1148 the structure of the "runtests" argument.
1150 2019-01-12 Ben Elliston <bje@gnu.org>
1152 * doc/dejagnu.texi: Various documentation fixes.
1154 2019-01-10 Jacob Bachmeyer <jcb62281@gmail.com>
1156 * testsuite/runtest.libs/clone_output.test: Use new test harness
1157 for verifying output of clone_output.
1159 * testsuite/runtest.libs/default_procs.tcl (send_error): Roll into
1160 template using store_test_output.
1161 (send_log): Likewise.
1162 (send_user): Likewise.
1163 (clear_test_output): New proc.
1164 (store_test_output): New proc.
1166 * lib/framework.exp (clone_output): Actually send errors to the
1167 error stream; bug found while improving testsuite.
1169 2019-01-10 Jacob Bachmeyer <jcb62281@gmail.com>
1171 * testsuite/runtest.libs/libs.exp (process_test): Handle blank
1172 lines from child process correctly.
1174 2019-01-02 Jacob Bachmeyer <jcb62281@gmail.com>
1176 * NEWS: Document report card.
1178 * Makefile.am (clean-local): Add target.
1179 (clean-local-check): Add target; mark as PHONY.
1180 (commands_DATA): Add "report-card" scripts.
1181 (dist_man_MANS): Add dejagnu-report-card.1 and split.
1182 (DEJATOOL): Add "report-card" tool.
1183 (TESTSUITE_FILES): Add testsuite for "report-card" tool.
1185 * commands/report-card.awk: New command script.
1187 * doc/dejagnu.texi (Invoking dejagnu report card): New node.
1188 * doc/dejagnu-report-card.1: New man page.
1190 * testsuite/lib/bohman_ssd.exp: New file.
1191 * testsuite/lib/report-card.exp: New file.
1192 * testsuite/report-card.all/onetest.exp: New file.
1193 * testsuite/report-card.all/passes.exp: New file.
1195 2019-01-02 Ben Elliston <bje@gnu.org>
1197 * Makefile.am (DISTCLEANFILES): Don't use this.
1198 (CLEANFILES): Use this instead.
1199 * Makefile.in: Regenerate.
1201 2019-01-01 Ben Elliston <bje@gnu.org>
1203 * configure.ac: Abort if AWK is not installed.
1204 * configure: Regenerate.
1206 2019-01-01 Ben Elliston <bje@gnu.org>
1208 * config.guess: Update to latest version.
1209 * config.sub: Likewise.
1211 2019-01-01 Ben Elliston <bje@gnu.org>
1213 * configure.ac: Add AC_PROG_AWK check.
1214 * configure: Regenerate.
1216 2018-12-29 Jacob Bachmeyer <jcb62281@gmail.com>
1218 * dejagnu: Avoid use of semicolon as sed(1) command separator.
1219 POSIX does not clearly require sed(1) to support that feature.
1221 2018-12-28 Jacob Bachmeyer <jcb62281@gmail.com>
1223 * testsuite/lib/util-defs.exp: Whitespace clean up.
1225 2018-12-21 Jacob Bachmeyer <jcb62281@gmail.com>
1228 * dejagnu: Improve command parsing to fix bug. Previously, the
1229 documented equivalence between "multi word command" and
1230 "multi-word-command" did not hold if no arguments were given.
1231 * testsuite/launcher.all/command.exp: Add tests.
1233 2018-12-20 Ben Elliston <bje@gnu.org>
1235 * NEWS: Add item for new dejagnu command.
1237 * Makefile.am (EXTRA_DIST): Remove $(XML).
1238 * Makefile.in: Regenerate.
1240 2018-12-20 Jacob Bachmeyer <jcb62281@gmail.com>
1242 * Makefile.am (EXTRA_DIST): Add "dejagnu" launcher script and
1243 contents of $(commands_DATA).
1244 (bin_SCRIPTS): Add "dejagnu" launcher script.
1245 (commandsdir): Installation directory for "dejagnu" subcommands is
1246 $(pkgdatadir)/commands.
1247 (commands_DATA): New, contains "commands/help.sh" as initial item.
1248 (TESTSUITE_FILES): Add testsuite for same.
1249 (DEJATOOL): Add "launcher" to list of tools to test.
1250 (dist_man_MANS): Add man pages for "dejagnu" and "dejagnu help".
1252 * doc/dejagnu.texi (Running other DejaGnu commands): New chapter.
1253 (Invoking dejagnu): New node for dejagnu(1) launcher script.
1254 (Invoking dejagnu help): New node.
1256 * doc/dejagnu.1: New man page.
1257 * doc/dejagnu-help.1: New man page.
1259 * dejagnu: New script.
1261 * commands/help.sh: New dejagnu subcommand for reading manpages.
1263 * testsuite/launcher.all/command.exp: New file.
1264 * testsuite/launcher.all/command/commands/bar-baz.awk: New file.
1265 * testsuite/launcher.all/command/commands/bar.awk: New file.
1266 * testsuite/launcher.all/command/commands/bar.sh: New file.
1267 * testsuite/launcher.all/command/commands/baz-quux.gawk: New file.
1268 * testsuite/launcher.all/command/commands/foo.sh: New file.
1269 * testsuite/launcher.all/command/commands/foo.tcl: New file.
1270 * testsuite/launcher.all/help.exp: New file.
1271 * testsuite/launcher.all/interp.exp: New file.
1272 * testsuite/launcher.all/verbose.exp: New file.
1273 * testsuite/lib/launcher.exp: New file.
1275 2018-12-20 Jacob Bachmeyer <jcb62281@gmail.com>
1277 * doc/dejagnu.texi (bt procedure): Fix Info links.
1279 2018-12-17 Ben Elliston <bje@gnu.org>
1281 * doc/dejagnu.texi (Board config file): Fix up @ref.
1282 (Command line option variables): Likewise.
1283 (Debugging Procedures): Add an entry for 'bt' command.
1285 2018-12-16 Jacob Bachmeyer <jcb62281@gmail.com>
1287 * runtest.exp: Move processing of -V|--version option to first
1288 pass through command line arguments instead of delaying it.
1290 2018-12-16 Jacob Bachmeyer <jcb62281@gmail.com>
1292 * Makefile.am (RUNTESTDEFAULTFLAGS): Remove; no longer needed.
1293 * Makefile.in: Regenerate.
1295 2018-12-15 Ben Elliston <bje@gnu.org>
1297 * doc/dejagnu.texi (telnet Procedure): Remove old node.
1298 (rlogin Procedure): Likewise.
1299 (rsh Procedure): Likewise.
1300 (tip Procedure): Likewise.
1301 (kermit Procedure): Likewise.
1302 (list_targets Procedure): Likewise.
1303 (prune_system_crud): Likewise.
1305 2018-12-15 Jacob Bachmeyer <jcb62281@gmail.com>
1307 * testsuite/runtest.libs/default_procs.tcl (send_error): New stub.
1308 (send_user): Likewise.
1309 * testsuite/runtest.libs/clone_output.test: Remove unneeded global
1310 variable link at top-level.
1311 * testsuite/runtest.libs/utils.test: Adjust absolute path to
1313 * testsuite/runtest.libs/clone_output.test: Use preset srcdir,
1314 subdir, and objdir variables instead of extracting them from argv.
1315 Remove setval.tmp, which is now obsolete.
1316 * testsuite/runtest.libs/config.test: Likewise.
1317 * testsuite/runtest.libs/remote.test: Likewise.
1318 * testsuite/runtest.libs/target.test: Likewise.
1319 * testsuite/runtest.libs/testsuite_file.test: Likewise.
1320 * testsuite/runtest.libs/utils.test: Likewise.
1322 * testsuite/lib/libsup.exp (make_defaults_file): Replace this ..
1323 (send_defaults): .. with this.
1324 (start_expect): Remove redundant code.
1326 * testsuite/runtest.libs/libs.exp: Eliminate setval.tmp file.
1327 Remove unneeded test for EXPECT global variable.
1328 Use one Expect subprocess to run all test cases.
1329 (process_test): Redesign to use Expect subprocess and to use
1330 throwaway slave interpreters for running test cases.
1332 2018-12-15 Jacob Bachmeyer <jcb62281@gmail.com>
1334 * testsuite/lib/runtest.exp (runtest_start): Remove.
1335 Move the sanity check in runtest_start to top-level and similarly
1336 check to ensure that $EXPECT can be found. Make failure of either
1337 sanity check an immediate fatal error.
1338 Improve error messages for sanity checks to indicate which
1339 critical tool was not found. Remove useless 'global RUNTEST'
1340 command at top-level.
1341 (runtest_version): Brace 'if' expression.
1343 2018-12-15 Jacob Bachmeyer <jcb62281@gmail.com>
1345 * testsuite/lib/runtest.exp: Use 'testsuite file' to locate the
1346 default runtest executable instead of implicitly searching PATH.
1347 Remove unused RUNTESTFLAGS Tcl variable.
1349 2018-12-15 Jacob Bachmeyer <jcb62281@gmail.com>
1351 * testsuite/lib/runtest.exp (runtest_start): Remove unused global
1354 2018-12-14 Jacob Bachmeyer <jcb62281@gmail.com>
1356 * lib/framework.exp (log_summary): Remove "testcnt" mechanism.
1357 * testsuite/lib/libsup.exp: Remove obsolete "testcnt" variable.
1359 2018-12-12 Ben Elliston <bje@gnu.org>
1361 * config/gdb-comm.exp, config/gdb_stub.exp, config/vxworks.exp,
1362 lib/dg.exp, lib/ftp.exp, lib/kermit.exp, lib/rlogin.exp,
1363 lib/telnet.exp, runtest.exp, testsuite/lib/libsup.exp: Simplify
1364 some regular expressions in constant strings by placing them
1365 inside braces instead of quotes. This allows one level of
1366 backslash quoting to be removed.
1368 2018-12-12 Ben Elliston <bje@gnu.org>
1370 * doc/dejagnu.texi: Acknowledge contributions to the manual from
1373 2018-12-11 Jacob Bachmeyer <jcb62281@gmail.com>
1375 * testsuite/runtest.all/libs.exp: Use "testsuite file" command.
1376 * testsuite/runtest.all/load_lib.exp: Likewise.
1377 * testsuite/runtest.all/stats.exp: Likewise.
1379 * testsuite/runtest.all/stats.exp: Write local init file as
1380 "stats-init.exp" for status summary tests. Use --local_init
1381 option to runtest to load that file instead of site.exp and move
1382 the inner test module to a nested testsuite.
1383 * testsuite/runtest.all/stats-sub.exp: Move file from here ..
1384 * testsuite/runtest.all/stats/testsuite/stat.test/stats-sub.exp:
1387 * testsuite/runtest.all/options.exp: Clean up whitespace in file.
1388 Wrap lines in test list and move short items to beginning of list.
1389 Write local init file as "options-init.exp" for options tests.
1390 Use --local_init option with nested runtest to load that file
1391 instead of site.exp; also create an empty nested testsuite. Local
1392 init file arranges for inner runtest processes to run in a
1393 subdirectory in the object tree to eliminate filename clashes.
1394 Set tmpdir if not already set and remove entire temporary
1395 directory after running options tests.
1396 * testsuite/runtest.all/options/testsuite/null.test/null.exp: New.
1398 * testsuite/runtest.all/clone_output.test: Move from here ..
1399 * testsuite/runtest.libs/clone_output.test: .. to here.
1400 * testsuite/runtest.all/config.test: Move from here ..
1401 * testsuite/runtest.libs/config.test: .. to here.
1402 * testsuite/runtest.all/default_procs.tcl: Move from here ..
1403 * testsuite/runtest.libs/default_procs.tcl: .. to here.
1404 * testsuite/runtest.all/libs.exp: Move from here ..
1405 * testsuite/runtest.libs/libs.exp: .. to here.
1406 * testsuite/runtest.all/load_lib.exp: Move from here ..
1407 * testsuite/runtest.libs/load_lib.exp: .. to here.
1408 * testsuite/runtest.all/remote.test: Move from here ..
1409 * testsuite/runtest.libs/remote.test: .. to here.
1410 * testsuite/runtest.all/target.test: Move from here ..
1411 * testsuite/runtest.libs/target.test: .. to here.
1412 * testsuite/runtest.all/testsuite_file.test: Move from here ..
1413 * testsuite/runtest.libs/testsuite_file.test: .. to here.
1414 * testsuite/runtest.all/topdir/subdir1/subfile1: Move from here ..
1415 * testsuite/runtest.libs/topdir/subdir1/subfile1: .. to here.
1416 * testsuite/runtest.all/topdir/subdir1/subfile2: Move from here ..
1417 * testsuite/runtest.libs/topdir/subdir1/subfile2: .. to here.
1418 * testsuite/runtest.all/topdir/subdir1/subsubdir1/subsubfile1:
1420 * testsuite/runtest.libs/topdir/subdir1/subsubdir1/subsubfile1:
1422 * testsuite/runtest.all/topdir/subdir2/subfile2: Move from here ..
1423 * testsuite/runtest.libs/topdir/subdir2/subfile2: .. to here.
1424 * testsuite/runtest.all/utils.test: Move from here ..
1425 * testsuite/runtest.libs/utils.test: .. to here.
1426 * testsuite/runtest.libs/utils.test: Update references to
1429 * testsuite/runtest.all/options.exp: Move from here ..
1430 * testsuite/runtest.main/options.exp: .. to here.
1431 * testsuite/runtest.all/options/testsuite/null.test/null.exp: Move
1433 * testsuite/runtest.main/options/testsuite/null.test/null.exp:
1435 * testsuite/runtest.all/stats.exp: Move from here ..
1436 * testsuite/runtest.main/stats.exp: .. to here.
1437 * testsuite/runtest.all/stats/testsuite/stat.test/stats-sub.exp:
1439 * testsuite/runtest.main/stats/testsuite/stat.test/stats-sub.exp:
1442 * Makefile.am (DISTCLEANFILES): Update for testsuite improvements.
1443 (TESTSUITE_FILES): Update to reflect testsuite reorganization.
1444 * Makefile.in: Regenerate.
1446 2018-12-11 Jacob Bachmeyer <jcb62281@gmail.com>
1448 * doc/dejagnu.texi: Clean up whitespace. Some indented examples
1449 were changed to use the Texinfo '@ ' command (yes, a space
1450 character) to preserve correct indentation. The '@ ' command is
1451 treated as a single space by Tex and makeinfo, but prevents Emacs
1452 from complaining about indentation using spaces instead of tabs.
1454 2018-12-11 Jacob Bachmeyer <jcb62281@gmail.com>
1456 * doc/dejagnu.texi (getdirs procedure): Document hard-coded
1457 directory exclusions by name in this procedure.
1459 2018-12-10 Ben Elliston <bje@gnu.org>
1461 * doc/dejagnu.texi (getdirs procedure): This procedure accepts Tcl
1462 glob patterns, not "shell wildcard characters" per se.
1464 * doc/dejagnu.texi (istarget procedure): Remove stray @{.
1466 2018-12-10 Jacob Bachmeyer <jcb62281@gmail.com>
1468 * doc/dejagnu.texi (Writing a test case): Add warning about
1469 priority of Expect patterns, complete with example.
1470 * testsuite/runtest.all/libs.exp (process_test): Fix bug that
1471 caused test results other than "PASS" to be skipped if a "PASS" is
1472 further along in the input buffer. Describe problem in manual.
1473 (process_test): Ensure that the log file shows each test case run.
1474 (process_test): Directly run the test cases instead of using
1475 temporary files and "cat". All output is always available in the
1476 log file, which is no longer overwritten by other tests.
1477 (process_test): Expect END markers from test case scripts.
1478 * testsuite/runtest.all/clone_output.test: Emit END markers.
1479 * testsuite/runtest.all/config.test: Likewise.
1480 * testsuite/runtest.all/remote.test: Likewise.
1481 * testsuite/runtest.all/target.test: Likewise.
1482 * testsuite/runtest.all/testsuite_file.test: Likewise.
1483 * testsuite/runtest.all/utils.test: Likewise.
1485 2018-12-10 Ben Elliston <bje@gnu.org>
1487 * lib/utils.exp (grep): Use a proper Tcl list for options.
1489 2018-12-10 Ben Elliston <bje@gnu.org>
1491 * testsuite/runtest.all/utils.test: ${srcdir} -> $srcdir.
1493 * lib/utils.exp (getdirs): Use glob -nocomplain rather than glob
1494 and catching the "no files matched glob pattern" error
1495 message. Catching the error message was the wrong thing to do
1496 because the foreach loop then iterates over each word in the error
1497 message as if they were matches.
1499 2018-12-10 Ben Elliston <bje@gnu.org>
1501 * testsuite/runtest.all/utils.test (getdirs): Add a test for the
1502 non-existent directory case.
1504 2018-12-10 Ben Elliston <bje@gnu.org>
1506 * runtest.exp: Remove unnecessary quotes and braces around
1507 variable expansions.
1509 * lib/debugger.exp (dumpvars): Remove unnecessary braces.
1511 2018-12-09 Ben Elliston <bje@gnu.org>
1513 * runtest.exp (setup_target_hook): Use 'ne' and not '!='.
1514 (iterate_target_variants_two): Likewise.
1515 * lib/remote.exp (standard_download): Use 'eq' not '=='.
1516 (remote_upload): Likewise.
1517 * lib/framework.exp (open_logs): Likewise.
1518 (is_remote): Likewise.
1520 2018-12-09 Ben Elliston <bje@gnu.org>
1522 * baseboards/basic-sid.exp, baseboards/basic-sim.exp,
1523 baseboards/i386-sid.exp, baseboards/mt-sid.exp,
1524 baseboards/sh-sid.exp, config/adb.exp, config/gdb-comm.exp,
1525 config/gdb_stub.exp, config/sim.exp, config/unix.exp,
1526 config/vxworks.exp, lib/dejagnu.exp, lib/dg.exp,
1527 lib/framework.exp, lib/kermit.exp, lib/libgloss.exp,
1528 lib/remote.exp, lib/rsh.exp, lib/target.exp, lib/tip.exp,
1529 lib/utils.exp, testsuite/lib/libsup.exp,
1530 testsuite/runtest.all/options.exp,: Remove unnecessary braces
1531 around variable expansions.
1533 2018-12-09 Ben Elliston <bje@gnu.org>
1535 * lib/debugger.exp, lib/dg.exp, lib/framework.exp, lib/ftp.exp,
1536 lib/kermit.exp, lib/libgloss.exp, lib/remote.exp, lib/rlogin.exp,
1537 lib/target.exp, lib/tip.exp, lib/utils.exp, runtest.exp: Remove
1538 unnecessary quotes and braces around variable expansions.
1540 2018-12-09 Ben Elliston <bje@gnu.org>
1542 * config/gdb-comm.exp: Remove unnecessary quotes.
1543 * config/gdb_stub.exp: Likewise.
1544 * config/vxworks.exp: Likewise.
1545 * config/unix.exp: Likewise.
1546 * config/sim.exp: Likewise.
1548 2018-12-09 Ben Elliston <bje@gnu.org>
1550 * testsuite/lib/libsup.exp: Remove unnecessary quotes around
1551 variable expansions.
1552 * testsuite/lib/util-defs.exp: Likewise.
1554 2018-12-09 Ben Elliston <bje@gnu.org>
1556 * baseboards/androideabi.exp: Remove unnecessary quotes and braces
1557 around variable expansions.
1558 * baseboards/basic-sid.exp: Likewise.
1559 * baseboards/cris-sim.exp: Likewise.
1560 * baseboards/generic-sim.exp: Likewise.
1561 * baseboards/mcore-moto-sim.exp: Likewise.
1562 * baseboards/multi-sim.exp: Likewise.
1564 2018-12-08 Ben Elliston <bje@gnu.org>
1568 2018-12-08 Ben Elliston <bje@gnu.org>
1570 * lib/dejagnu.exp (host_execute): Remove unnecessary quotes around
1571 variable expansions.
1572 * testsuite/runtest.all/clone_output.test: Likewise.
1573 * testsuite/runtest.all/target.test: Likewise.
1574 * testsuite/runtest.all/stats.exp: Likewise.
1575 * testsuite/runtest.all/remote.test: Likewise.
1576 * testsuite/runtest.all/config.test: Likewise.
1577 * testsuite/runtest.all/default_procs.tcl: Likewise.
1578 * testsuite/runtest.all/libs.exp: Likewise.
1579 * testsuite/runtest.all/options.exp: Likewise.
1581 2018-12-08 Jacob Bachmeyer <jcb62281@gmail.com>
1583 * NEWS: Document 'testsuite' command.
1584 * doc/dejagnu.texi (testsuite procedure): Document multiplex entry
1585 point and "testsuite file" command.
1586 * lib/framework.exp (testsuite): New proc for multiplex commands.
1587 (testsuite_file): New proc implementing "testsuite file".
1588 * testsuite/runtest.all/testsuite_file.test: New file.
1589 * runtest.exp: Expect to find testsuite in ${srcdir}/testsuite,
1590 but also search $srcdir itself.
1591 (load_lib): Add explicit search for testsuite-local libraries.
1592 (load_tool_init): Use $testsuitedir in search.
1593 (load_config): Use $testsuitedir instead of $srcdir.
1594 (load_tool_target_config): Likewise.
1596 Add variable "testsuitedir" for testsuite root directory.
1598 Add internal global variables "testbuilddir" and "testdir" for use
1599 by "testsuite file".
1601 Ensure that $testsuitedir, $testbuilddir, and $objdir also avoid
1602 duplicated path delimiters.
1604 Add warning if no tests are found and fallback method of searching
1607 2018-12-08 Ben Elliston <bje@gnu.org>
1609 * testsuite/lib/libsup.exp (start_expect): Brace commands in if
1611 * testsuite/lib/util-defs.exp (util_test): Likewise.
1612 * testsuite/runtest.all/stats.exp: Likewise.
1613 * testsuite/runtest.all/libs.exp: Likewise.
1615 2018-12-08 Jacob Bachmeyer <jcb62281@gmail.com>
1617 * testsuite/runtest.all/default_procs.tcl:
1618 (lib_errpat_test, lib_errregexp_test, lib_err_test): New.
1619 (lib_regexp_test): Fix copy-paste-edit error.
1620 (lib_pat_test, lib_regexp_test, lib_ret_test, lib_bool_test):
1621 Fix handling of errors raised by tested procedure. Also ensure
1622 proper quoting of argument lists passed to eval and simplify
1623 the logic for producing return values.
1625 2018-12-08 Ben Elliston <bje@gnu.org>
1627 * config/vxworks.exp (${board}_init): Use 'ne' instead of !=.
1629 2018-12-08 Ben Elliston <bje@gnu.org>
1631 * lib/tip.exp (tip_open): Put braces around if expression.
1633 2018-12-08 Ben Elliston <bje@gnu.org>
1635 * runtest.exp, lib/utils.exp, lib/targetdb.exp, lib/target.exp,
1636 lib/remote.exp, lib/framework.exp, lib/dg.exp, config/vxworks.exp,
1637 config/sim.exp, config/gdb_stub.exp, config/aarch64-fv8.exp,
1638 baseboards/vr4300-sim.exp, baseboards/vr4111-sim.exp,
1639 baseboards/vr4100-sim.exp, baseboards/sh-sid.exp,
1640 baseboards/mt-sid.exp, baseboards/mips-sim.exp,
1641 baseboards/mips-sim-idt64.exp, baseboards/mips-sim-idt32.exp,
1642 baseboards/i386-sid.exp, baseboards/arm-sim.exp,
1643 baseboards/arm-ice.exp, baseboards/androideabi.exp,
1644 testsuite/runtest.all/utils.test,
1645 testsuite/runtest.all/target.test: Replace string literal
1646 comparisons using == and != with 'eq' and 'ne'.
1648 2018-12-08 Ben Elliston <bje@gnu.org>
1650 * runtest.exp, lib/utils.exp, lib/target.exp, lib/ssh.exp,
1651 lib/rsh.exp, lib/rlogin.exp, lib/remote.exp, lib/libgloss.exp,
1652 lib/framework.exp, lib/dg.exp, lib/dejagnu.exp,
1653 config/vxworks.exp, config/unix.exp, config/sim.exp,
1654 config/gdb_stub.exp, config/gdb-comm.exp, config/adb.exp,
1655 baseboards/multi-sim.exp, baseboards/cris-sim.exp,
1656 baseboards/basic-sim.exp, baseboards/basic-sid.exp,
1657 baseboards/androideabi.exp, testsuite/runtest.all/load_lib.exp,
1658 testsuite/libdejagnu/tunit.exp: Replace empty string comparisons
1659 using == and != with 'eq' and 'ne'.
1661 2018-12-07 Jacob Bachmeyer <jcb62281@gmail.com>
1663 * testsuite/runtest.all/default_procs.tcl (lib_bool_test): New.
1664 (lib_regexp_test): New.
1665 (lib_pat_test): Brace "if" conditions.
1666 (lib_pat_test): Remove spurious quotes in debugging output.
1667 (run_tests): Add support for comments in lists of procedure tests.
1669 * testsuite/runtest.all/config.test: Adjust to use run_tests
1670 procedure. Fixes issue cited in FIXME comment.
1672 * testsuite/runtest.all/utils.test (getdirs tests): Fix these.
1673 The old tests had the sense of the return value from lib_pat_test
1674 inverted and were failing but reported PASS.
1675 (find tests, relative_filename tests, runtest_file_p tests):
1676 Adjust to use run_tests procedure.
1678 2018-12-07 Ben Elliston <bje@gnu.org>
1680 * doc/dejagnu.texi: Add more missing material.
1682 2018-12-07 Jacob Bachmeyer <jcb62281@gmail.com>
1684 * testsuite/runtest.all/default_procs.tcl (lib_ret_test): Tidy.
1685 (run_tests): Replace implicit "eval" with explicit "eval". Tidy.
1686 (verbose): Remove unnecessary quotes.
1688 2018-12-06 Ben Elliston <bje@gnu.org>
1690 * doc/dejagnu.texi: Add more missing material.
1692 2018-12-06 Jacob Bachmeyer <jcb62281@gmail.com>
1694 * testsuite/runtest.all/default_procs.tcl: Whitespace clean up.
1695 (lib_pat_test): Handle an argument list instead of only a single
1696 argument for the procedure under test.
1697 (lib_ret_test): Likewise.
1698 * testsuite/runtest.all/utils.test: Whitespace clean up.
1699 Adjust to pass argument lists for improved lib_pat_test.
1700 * testsuite/runtest.all/clone_output.test: Likewise.
1702 2018-12-06 Jacob Bachmeyer <jcb62281@gmail.com>
1704 * lib/remote.exp (standard_load): Fix typo on empty string.
1705 * runtest.exp: Adjust expression to follow GNU conventions.
1706 * lib/utils.exp (diff): Fix mistake in replacing [string compare]
1707 with "eq" instead of "ne".
1708 * testsuite/runtest.all/config.test: Likewise.
1710 2018-12-06 Ben Elliston <bje@gnu.org>
1712 * runtest.exp: Replace [string match] commands involving literal
1713 strings and variables known to not be Tcl glob patterns with eq
1715 * config/unix.exp: Likewise.
1716 * lib/debugger.exp: Likewise.
1717 * lib/dg.exp: Likewise.
1718 * lib/framework.exp: Likewise.
1719 * lib/remote.exp: Likewise.
1720 * lib/utils.exp: Likewise.
1721 * baseboards/androideabi.exp: Likewise.
1722 * baseboards/multi-sim.exp: Likewise.
1723 * testsuite/lib/util-defs.exp: Likewise.
1724 * testsuite/runtest.all/config.test: Likewise.
1726 2018-12-06 Jacob Bachmeyer <jcb62281@gmail.com>
1728 * testsuite/runtest.all/utils.test: Add Tcl mode marker for Emacs.
1729 * testsuite/runtest.all/target.test: Likewise.
1730 * testsuite/runtest.all/remote.test: Likewise.
1731 * testsuite/runtest.all/config.test: Likewise.
1732 * testsuite/runtest.all/clone_output.test: Likewise.
1734 2018-12-06 Ben Elliston <bje@gnu.org>
1736 * runtest.exp: Replace '==' with 'eq' for string compares.
1737 Likewise, replace '!=' with 'ne'. Replace a few instances of
1738 [string length $str] == 0 with $str eq "".
1739 * config/gdb-comm.exp: Likewise.
1740 * lib/dg.exp: Likewise.
1741 * lib/framework.exp: Likewise.
1742 * lib/libgloss.exp: Likewise.
1743 * lib/remote.exp: Likewise.
1744 * lib/target.exp: Likewise.
1745 * lib/utils.exp: Likewise.
1747 2018-12-06 Jacob Bachmeyer <jcb62281@gmail.com>
1749 * runtest.exp: Replace archaic use of [string match] with "eq".
1751 2018-12-06 Ben Elliston <bje@gnu.org>
1753 * doc/dejagnu.texi (compile Procedure): Remove old node.
1754 (archive Procedure): Likewise.
1755 (ranlib Procedure): Likewise.
1757 2018-12-06 Ben Elliston <bje@gnu.org>
1759 * doc/dejagnu.texi (rsh procedure): Fix node connectivity.
1761 2018-12-06 Ben Elliston <bje@gnu.org>
1763 * lib/telnet.exp (telnet_open): Remove connectmode global.
1764 * doc/dejagnu.texi (Procedures For Remote Communication): Remove
1765 mention of connectmode.
1767 2018-12-05 Ben Elliston <bje@gnu.org>
1769 * doc/dejagnu.texi (execute_anywhere Procedure): Remove obsolete
1772 2018-12-05 Ben Elliston <bje@gnu.org>
1774 * doc/dejagnu.texi: Add more missing material.
1776 2018-12-05 Ben Elliston <bje@gnu.org>
1778 * testsuite/runtest.all/utils.test: Test runtest_file_p.
1780 2018-12-05 Jacob Bachmeyer <jcb62281@gmail.com>
1782 * runtest.exp (load_config): Remove unused globals.
1783 (load_generic_config): Likewise.
1784 (load_board_description): Likewise.
1785 (load_base_board_description): Likewise.
1787 2018-12-05 Ben Elliston <bje@gnu.org>
1789 * lib/utils.exp (grep): Handle -n.
1790 * doc/dejagnu.texi (grep procedure): Document it.
1791 * testsuite/runtest.all/utils.test: Add a test case.
1792 * NEWS: Add an item.
1794 2018-12-05 Ben Elliston <bje@gnu.org>
1796 * testsuite/runtest.all/utils.test: Test diff.
1798 2018-12-04 Ben Elliston <bje@gnu.org>
1800 * testsuite/runtest.all/utils.test: Test grep.
1802 2018-12-04 Ben Elliston <bje@gnu.org>
1804 * testsuite/runtest.all/utils.test (which): Fail on the else path,
1805 don't pass in either case.
1807 2018-12-04 Ben Elliston <bje@gnu.org>
1809 * doc/dejagnu.texi (Libgloss): Improve documentation.
1810 (Debugging Procedures): Likewise.
1812 2018-12-04 Ben Elliston <bje@gnu.org>
1814 * lib/debugger.exp (dumprocs): Fix proc comment.
1816 2018-12-04 Ben Elliston <bje@gnu.org>
1818 * doc/dejagnu.texi (Utility Procedures): Improve documentation for
1819 the procedures in this section.
1821 2018-12-04 Jacob Bachmeyer <jcb62281@gmail.com>
1823 * NEWS: Document new relative_filename procedure and --local_init/
1824 --global_init command line options.
1826 2018-12-04 Jacob Bachmeyer <jcb62281@gmail.com>
1828 * lib/utils.exp (relative_filename): New proc.
1829 * runtest.exp: Use it.
1830 * doc/dejagnu.texi (relative_filename procedure): Document it.
1831 * testsuite/runtest.all/utils.test: Add tests for relative_filename.
1833 2018-12-03 Ben Elliston <bje@gnu.org>
1835 * dejagnu.h (TestState): Remove const char * variants of pass(),
1836 xpass(), fail(), xfail(), untested(), unresolved() for C++. A
1837 const char * will be implicitly converted to std::string.
1839 2018-12-03 Ben Elliston <bje@gnu.org>
1841 * doc/dejagnu.texi: Move 'Built-in Procedures' node up a level,
1842 removing the 'Reference' node and chapter. Make all subsubsections
1843 in this chapter unnumbered subheadings.
1845 2018-12-03 Jacob Bachmeyer <jcb62281@gmail.com>
1847 * doc/dejagnu.texi: Fix Info node links. The arguments to @node
1848 are: here, next, previous, up; not here, previous, next, up.
1850 2018-12-03 Ben Elliston <bje@gnu.org>
1852 * Makefile.am (EXTRA_DIST): Use $(TEXINFO_TEX), not a hardcoded
1853 doc/texinfo.tex. With thanks to Jacob Bachmeyer.
1854 * Makefile.in: Regenerate.
1856 2018-12-03 Ben Elliston <bje@gnu.org>
1858 * Makefile.am (TEXINFO_TEX): Set to doc/texinfo.tex.
1859 (EXTRA_DIST): Add doc/texinfo.tex. Setting TEXINFO_TEX otherwise
1860 prevents the distribution of the overridden texinfo.tex.
1861 * Makefile.in: Regenerate.
1862 * texinfo.tex: Move from here ..
1863 * doc/texinfo.tex: .. to here.
1865 2018-12-03 Ben Elliston <bje@gnu.org>
1867 * lib/framework.exp (isremote): Add verbose message.
1869 2018-12-02 Ben Elliston <bje@gnu.org>
1871 * lib/framework.exp (isremote): Pass $board to is_remote.
1873 2018-12-02 Ben Elliston <bje@gnu.org>
1875 * doc/fdl.texi: New.
1876 * doc/dejagnu.texi (Variable Index): New.
1877 Add more concept index entries.
1878 (GNU Free Documentation License): New appendix.
1880 2018-12-02 Ben Elliston <bje@gnu.org>
1882 * doc/dejagnu.texi (Procedure Index): New. Add Texinfo function
1883 index (@findex) entries for every built-in procedure.
1885 2018-12-02 Ben Elliston <bje@gnu.org>
1887 * doc/dejagnu.texi: Start an index.
1889 2018-12-02 Ben Elliston <bje@gnu.org>
1891 * doc/version.texi: New.
1893 2018-12-02 Ben Elliston <bje@gnu.org>
1895 * doc/dejagnu.texi: Add title page and frontmatter. Include
1897 * Makefile.in: Regenerate.
1898 * mdate-sh: Installed by automake --add-missing.
1900 2018-12-02 Ben Elliston <bje@gnu.org>
1902 * doc/dejagnu.texi (diff procedure): Tidy up this node.
1904 2018-12-02 Jacob Bachmeyer <jcb62281@gmail.com>
1906 * runtest.exp (hex): Remove useless test before setting.
1907 (decimal): Likewise.
1909 2018-12-02 Jacob Bachmeyer <jcb62281@gmail.com>
1911 * doc/dejagnu.texi (Invoking runtest): Document new --local_init
1912 and --global_init command line options.
1913 * doc/runtest.1: Likewise.
1915 * runtest.exp: Remove useless tests before setting default values
1916 for variables: all_flag, binpath, debug, options, outdir, reboot,
1917 tracelevel, verbose, log_dialog. They are set before loading any
1918 files or parsing the command line.
1920 * runtest.exp: Add options --local_init and --global_init for
1921 selecting alternate testsuite configuration files.
1923 * runtest.exp: Split variable "configfile" into "local_init_file"
1924 and "global_init_file" in preparation for adding command-line
1925 options to specify these independently.
1927 * runtest.exp (load_generic_config): Remove configfile global.
1928 (load_board_description): Likewise.
1929 (load_base_board_description): Likewise.
1931 2018-11-30 Ben Elliston <bje@gnu.org>
1933 * lib/utils.exp (grep): Remove reference to "NULL" in comment.
1934 * testsuite/lib/util-defs.exp (util_start): Likewise.
1936 2018-11-30 Ben Elliston <bje@gnu.org>
1938 * doc/dejagnu.texi: (verbose procedure): Improve documentation.
1939 (load_lib procedure): Likewise.
1941 2018-11-30 Ben Elliston <bje@gnu.org>
1943 * doc/dejagnu.texi: More clean-ups of built-in proc documentation.
1945 2018-11-30 Ben Elliston <bje@gnu.org>
1947 * runtest.exp: Use isremote.
1948 * lib/target.exp: Likewise.
1949 * lib/remote.exp: Likewise.
1950 * lib/libgloss.exp: Likewise.
1951 * config/unix.exp: Likewise.
1952 * config/sim.exp: Likewise.
1953 * config/gdb_stub.exp: Likewise.
1954 * config/gdb-comm.exp: Likewise.
1955 * baseboards/basic-sim.exp: Likewise.
1956 * baseboards/androideabi.exp: Likewise.
1958 2018-11-30 Ben Elliston <bje@gnu.org>
1960 * lib/framework.exp (isremote): New.
1961 * doc/dejagnu.texi (isremote procedure): Document it.
1962 * NEWS: Mention isremote.
1964 2018-11-30 Ben Elliston <bje@gnu.org>
1966 * texinfo.tex: Update to latest upstream version.
1967 * INSTALL: Likewise.
1969 2018-11-29 Ben Elliston <bje@gnu.org>
1971 * lib/framework.exp (istarget, ishost, istarget): Set the argument
1972 default value to the empty string.
1973 * doc/dejagnu.texi (find procedure): Remove reference to "NULL".
1974 (getenv procedure): Re-word this node.
1975 (isbuild procedure): Update.
1976 (ishost procedure): Likewise.
1977 (istarget procedure): Likewise.
1978 * testsuite/runtest.all/config.test: Add test cases.
1980 2018-11-28 Ben Elliston <bje@gnu.org>
1982 * config.guess: Update to latest version.
1983 * config.sub: Likewise.
1985 2018-11-28 Ben Elliston <bje@gnu.org>
1988 * configure.ac: Update version number.
1989 * configure: Regenerate.
1990 * doc/dejagnu.texi: Update version number.
1991 * runtest.exp: Update version number.
1993 2018-11-28 Ben Elliston <bje@gnu.org>
1995 * Makefile.am (TESTSUITE_FILES): Update filenames.
1996 * Makefile.in: Regenerate.
1998 2018-11-28 Ben Elliston <bje@gnu.org>
2002 * doc/dejagnu.texi: Tidy up (fill) some paragraphs.
2004 2018-11-25 Jacob Bachmeyer <jcb62281@gmail.com>
2006 * lib/framework.exp: Clean up whitespace.
2008 2018-11-25 Ben Elliston <bje@gnu.org>
2010 * config/gdb-comm.exp: Clean up whitespace.
2011 * config/gdb_stub.exp: Likewise.
2012 * config/sid.exp: Likewise.
2013 * config/sim.exp: Likewise.
2014 * config/unix.exp: Likewise.
2016 2018-11-23 Ben Elliston <bje@gnu.org>
2018 * doc/dejagnu.texi (getdirs procedure): Improve documentation
2019 including documenting the -all option.
2020 (find procedure): Fix a typo.
2021 * lib/utils.exp (getdirs): Improve comments.
2023 2018-11-22 Jacob Bachmeyer <jcb62281@gmail.com>
2025 * runtest.exp: Ensure that multipass pass variables are always
2026 restored. Previously, they were only restored if the "Go digging
2027 for tests" branch was taken near the end of runtest.exp.
2029 2018-11-22 Ben Elliston <bje@gnu.org>
2031 * doc/dejagnu.texi (Customizing DejaGnu): Document error handling
2032 of the $DEJAGNU environment variable (see change below).
2034 2018-11-22 Jacob Bachmeyer <jcb62281@gmail.com>
2036 * runtest.exp: Raise error if $DEJAGNU is defined but not found.
2038 2018-11-15 Jacob Bachmeyer <jcb62281@gmail.com>
2040 * runtest.exp (load_tool_init): Search for tool init file instead
2041 of assuming exactly one location.
2043 2018-11-15 Ben Elliston <bje@gnu.org>
2045 * runtest.exp (load_lib): Whitespace fix.
2047 2018-11-11 Jacob Bachmeyer <jcb62281@gmail.com>
2049 * lib/ssh.exp: Clean up whitespace.
2050 * lib/remote.exp: Clean up whitespace.
2051 (remote_expect): Change literal tab to "\t" in regexp.
2053 2018-11-05 Ben Elliston <bje@gnu.org>
2055 * config.guess: Update to latest version.
2056 * config.sub: Likewise.
2058 2018-11-02 Ben Elliston <bje@gnu.org>
2060 * Makefile.in: Regenerate.
2062 2018-10-31 Jacob Bachmeyer <jcb62281@gmail.com>
2064 * Makefile.am (DEJATOOL): List tools in testsuite.
2065 (RUNTESTDEFAULTFLAGS): Adjust to support per-tool testing.
2066 * testsuite/config/default.exp: Rename from this ...
2067 * testsuite/lib/runtest.exp: ... to this.
2068 (runtest_exit): Remove spurious "close". This was causing per-tool
2069 testing to fail, since the testsuite for "runtest" never actually
2070 uses "spawn", so "close" ends up closing exp0, which is the
2071 terminal. The ${tool}_exit proc is not called if the --tool
2072 option is not given, so this had no effect earlier.
2073 * testsuite/lib/libdejagnu.exp: New empty file.
2075 2018-10-31 Jacob Bachmeyer <jcb62281@gmail.com>
2077 * runtest.exp (load_tool_init): Add message indicating the
2078 expected location of the tool init file.
2080 2018-10-31 Jacob Bachmeyer <jcb62281@gmail.com>
2082 * contrib/sum2junit.sh (failures): Fix typo.
2084 2018-10-31 Jacob Bachmeyer <jcb62281@gmail.com>
2086 * configure.ac (DEJAGNU): Add comments.
2088 2018-10-31 Jacob Bachmeyer <jcb62281@gmail.com>
2090 * Makefile.am (DEJATOOL): List tools in testsuite.
2091 (RUNTESTDEFAULTFLAGS): Adjust to support per-tool testing.
2092 * testsuite/config/default.exp: Rename from this ...
2093 * testsuite/lib/runtest.exp: ... to this.
2094 (runtest_exit): Remove spurious "close". This was causing
2095 per-tool testing to fail, since the testsuite for "runtest" never
2096 actually uses "spawn", so "close" ends up closing exp0, which is
2097 the terminal. The ${tool}_exit proc is not called if the --tool
2098 option is not given, so this had no effect earlier.
2099 * testsuite/lib/libdejagnu.exp: New empty file.
2101 2018-10-30 Ben Elliston <bje@gnu.org>
2103 * Makefile.am (DISTCLEANFILES): Add testrun.xml.
2104 * Makefile.in: Regenerate with Automake 1.15.1.
2105 * aclocal.m4: Likewise.
2107 2018-10-30 Ben Elliston <bje@gnu.org>
2109 * configure.ac (AC_CONFIG_SUBDIRS): Remove.
2110 * configure: Regenerate.
2112 2018-10-29 Ben Elliston <bje@gnu.org>
2114 * README (Documentation): Update.
2116 2018-10-28 Jacob Bachmeyer <jcb62281@gmail.com>
2118 * lib/framework.exp (record_test): Really fix message formatting.
2120 2018-10-29 Ben Elliston <bje@gnu.org>
2122 Reported by Jacob Bachmeyer.
2123 * testsuite/runtest.all/utils.test: Fix missing end quote.
2125 2018-10-28 Jacob Bachmeyer <jcb62281@gmail.com>
2127 * lib/framework.exp (record_test): Fix message formatting.
2129 2018-07-20 Ben Elliston <bje@gnu.org>
2131 * contrib/mysql/make-datafile.sh: Eliminate Shellcheck warnings.
2132 * contrib/mysql/sum2xml.sh: Likewise.
2134 2018-07-20 Ben Elliston <bje@gnu.org>
2136 * contrib/compare_tests: Eliminate Shellcheck warnings.
2137 * contrib/mysql/sum2xml.sh: Likewise.
2139 2018-07-20 Ben Elliston <bje@gnu.org>
2141 * compile, depcomp, install-sh: Latest upstream versions.
2143 2018-07-20 Ben Elliston <bje@gnu.org>
2145 * contrib/sum2junit.sh: Eliminate some Shellcheck warnings.
2147 2018-07-19 Ben Elliston <bje@gnu.org>
2149 * runtest: Use POSIX 'command', not 'type', to look for the Expect
2150 binary. Silences Shellcheck warning SC2039 ("In POSIX sh, 'type'
2153 2018-07-19 Ben Elliston <bje@gnu.org>
2155 * config.guess: Update to latest version.
2156 * config.sub: Likewise.
2158 2018-07-06 Richard Biener <rguenther@suse.de>
2160 * lib/remote.exp (close_wait_program): Use separate kill command
2163 2017-10-16 Ben Elliston <bje@gnu.org>
2165 * NEWS: Start a new section for the next release.
2166 * configure.ac (AC_INIT): Update version number.
2167 * configure: Regenerate.
2168 * runtest.exp (frame_version): Update version number.
2169 * doc/dejagnu.texi: Likewise.
2170 * doc/runtest.1: Update datestamp.
2172 2017-10-16 Ben Elliston <bje@gnu.org>
2174 * config.guess: Update to version 2017-09-26.
2175 * config.sub: Likewise.
2177 2017-09-13 Ben Elliston <bje@gnu.org>
2179 * lib/framework.exp (open_logs): Set XML version to 1.1.
2180 (xml_tag): Skip valid whitespace chars (0x9, 0xA, 0xD). Include
2181 missing 'x' in escape sequence.
2183 2017-08-29 Ben Elliston <bje@gnu.org>
2185 Revert these changes:
2187 2016-04-25 Ben Elliston <bje@gnu.org>
2189 * testsuite/runtest.all/utils.test: Remove unsetenv test.
2191 2016-04-24 Ben Elliston <bje@gnu.org>
2193 * lib/utils.exp (unsetenv): Remove proc.
2194 * doc/dejagnu.texi: Update documentation.
2197 2017-08-19 Ben Elliston <bje@gnu.org>
2199 * lib/framework.exp (xml_tag): Escape all of the non-printable
2200 control characters (ASCII codes 1 to 31 inclusive).
2202 2017-08-18 Tom Tromey <tom@tromey.com>
2204 * runtest.exp: Fix --directory matching.
2206 2017-08-15 Ben Elliston <bje@gnu.org>
2208 * lib/framework.exp (xml_tag): New proc.
2209 (log_summary): Use it.
2210 (record_test): Likewise.
2212 2017-08-15 Ben Elliston <bje@gnu.org>
2214 * lib/framework.exp (open_logs): Set .xml filename correctly.
2215 * runtest.exp: Remove xml_file_name var.
2216 (usage): Update --xml option to not take an argument.
2217 (load_tool_init): Likewise.
2218 * doc/dejagnu.texi (Invoking runtest): Update documentation.
2219 * doc/runtest.1: Likewise.
2221 2017-08-01 Ben Elliston <bje@gnu.org>
2223 * runtest.exp (usage): Improve --strace message.
2225 2017-08-01 Ben Elliston <bje@gnu.org>
2227 * runtest.exp (usage): --reboot doesn't take a 'name' parameter.
2229 2017-06-04 Ben Elliston <bje@gnu.org>
2231 * lib/target.exp (push_target): Remove unnecessary global command.
2232 * testsuite/runtest.all/target.test: Overhaul tests.
2234 2017-06-04 Ben Elliston <bje@gnu.org>
2236 * testsuite/runtest.all/remote.test: Remove cruft from yesteryear.
2238 2017-06-04 Tom de Vries <tom@codesourcery.com>
2240 * testsuite/runtest.all/target.test: Remove list_targets test.
2242 2017-06-04 Tom de Vries <tom@codesourcery.com>
2244 * testsuite/runtest.all/libs.exp (process_test): Dump entire
2245 output when there's no reportable output.
2246 * testsuite/runtest.all/remote.test (load_lib): New proc.
2247 * testsuite/runtest.all/target.test (load_lib): Same.
2249 2017-03-11 Thomas Preud'homme <thomas.preudhomme@arm.com>
2251 * lib/remote.exp (remote_download): Add logging message when
2252 source and destination file differ in name.
2254 2016-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2256 * runtest.exp: Set CCACHE_DISABLE, clear CCACHE_NODISABLE.
2258 2016-06-28 Ben Elliston <bje@gnu.org>
2260 * aclocal.m4, Makefile.in: Regenerate with automake 1.15.
2261 * configure: Regenerate.
2263 2016-06-22 Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2265 * configure.ac, dejagnu.h, runtest, runtest.exp,
2266 baseboards/am33_2.0-libremote.exp, baseboards/androideabi.exp,
2267 baseboards/arm-ice.exp, baseboards/arm-sid.exp,
2268 baseboards/arm-sim.exp, baseboards/basic-sid.exp,
2269 baseboards/basic-sim.exp, baseboards/cris-sim.exp,
2270 baseboards/d30v-sim.exp, baseboards/fr30-sim.exp,
2271 baseboards/frv-sim.exp, baseboards/gdbserver-sample.exp,
2272 baseboards/i386-sid.exp, baseboards/iq2000-sim.exp,
2273 baseboards/jmr3904-sim.exp, baseboards/linux-gdbserver.exp,
2274 baseboards/linux-libremote.exp, baseboards/m68k-sid.exp,
2275 baseboards/mcore-moto-sim.exp, baseboards/mcore-sim.exp,
2276 baseboards/mips-lnews-sim.exp, baseboards/mips-lsi-sim.exp,
2277 baseboards/mips-sim-idt32.exp, baseboards/mips-sim-idt64.exp,
2278 baseboards/mips-sim-mti32.exp, baseboards/mips-sim-mti64.exp,
2279 baseboards/mips-sim-mti64_64.exp,
2280 baseboards/mips-sim-mti64_n32.exp, baseboards/mips-sim-sde32.exp,
2281 baseboards/mips-sim-sde64.exp, baseboards/mips-sim.exp,
2282 baseboards/mmixware-sim.exp, baseboards/mn10200-sim.exp,
2283 baseboards/mn10300-sim.exp, baseboards/moxie-sim.exp,
2284 baseboards/mt-sid.exp, baseboards/multi-sim.exp,
2285 baseboards/powerpc-sim.exp, baseboards/powerpcle-sim.exp,
2286 baseboards/rx-sim.exp, baseboards/sh-sid.exp,
2287 baseboards/sh-sim.exp, baseboards/sparc-sim.exp,
2288 baseboards/sparc64-sim.exp, baseboards/sparclite-sim-le.exp,
2289 baseboards/sparclite-sim.exp, baseboards/tx39-sim.exp,
2290 baseboards/unix.exp, baseboards/v850-sim.exp,
2291 baseboards/visium-sim.exp, baseboards/vr4100-sim.exp,
2292 baseboards/vr4111-sim.exp, baseboards/vr4300-sim.exp,
2293 baseboards/xtensa-sim.exp, lib/debugger.exp, lib/dejagnu.exp,
2294 lib/dg.exp, lib/ftp.exp, lib/kermit.exp, lib/remote.exp,
2295 lib/rlogin.exp, lib/rsh.exp, lib/standard.exp, lib/target.exp,
2296 lib/targetdb.exp, lib/telnet.exp, lib/tip.exp, lib/utils.exp,
2297 testsuite/config/default.exp, testsuite/lib/libsup.exp,
2298 testsuite/lib/util-defs.exp, testsuite/libdejagnu/tunit.exp,
2299 testsuite/libdejagnu/unit.cc, testsuite/runtest.all/libs.exp,
2300 testsuite/runtest.all/stats-sub.exp,
2301 testsuite/runtest.all/stats.exp, config/adb.exp,
2302 config/default.exp, config/gdb-comm.exp, config/gdb_stub.exp,
2303 config/sid.exp, config/sim.exp, config/unix.exp,
2304 config/vxworks.exp: Update copyright date for 2016.
2306 2016-06-22 Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2308 * baseboards/aarch64-sim.exp, baseboards/am33_2.0-libremote.exp,
2309 baseboards/arm-ice.exp, baseboards/arm-sid.exp,
2310 baseboards/arm-sim.exp, baseboards/basic-sid.exp,
2311 baseboards/basic-sim.exp, baseboards/cris-sim.exp,
2312 baseboards/d30v-sim.exp, baseboards/fr30-sim.exp,
2313 baseboards/frv-sim.exp, baseboards/gdbserver-sample.exp,
2314 baseboards/generic-sim.exp, baseboards/i386-sid.exp,
2315 baseboards/iq2000-sim.exp, baseboards/jmr3904-sim.exp,
2316 baseboards/linux-gdbserver.exp, baseboards/linux-libremote.exp,
2317 baseboards/m68k-sid.exp, baseboards/mcore-moto-sim.exp,
2318 baseboards/mcore-sim.exp, baseboards/mips-lnews-sim.exp,
2319 baseboards/mips-lsi-sim.exp, baseboards/mips-sim-idt32.exp,
2320 baseboards/mips-sim-idt64.exp, baseboards/mips-sim.exp,
2321 baseboards/mmixware-sim.exp, baseboards/mn10200-sim.exp,
2322 baseboards/mn10300-sim.exp, baseboards/mt-sid.exp,
2323 baseboards/powerpc-sim.exp, baseboards/powerpcle-sim.exp,
2324 baseboards/rx-sim.exp, baseboards/sh-sid.exp,
2325 baseboards/sh-sim.exp, baseboards/sparc-sim.exp,
2326 baseboards/sparc64-sim.exp, baseboards/sparclite-sim-le.exp,
2327 baseboards/sparclite-sim.exp, baseboards/tx39-sim.exp,
2328 baseboards/unix.exp, baseboards/v850-sim.exp,
2329 baseboards/vr4100-sim.exp, baseboards/vr4111-sim.exp,
2330 baseboards/vr4300-sim.exp, baseboards/xtensa-sim.exp,
2331 lib/debugger.exp, lib/dejagnu.exp, lib/dg.exp, lib/framework.exp,
2332 lib/ftp.exp, lib/kermit.exp, lib/libgloss.exp, lib/remote.exp,
2333 lib/rlogin.exp, lib/rsh.exp, lib/standard.exp, lib/target.exp,
2334 lib/targetdb.exp, lib/telnet.exp, lib/tip.exp, lib/utils.exp,
2335 testsuite/config/default.exp, testsuite/lib/libsup.exp,
2336 testsuite/lib/util-defs.exp, testsuite/libdejagnu/tunit.exp,
2337 testsuite/libdejagnu/unit.cc, testsuite/runtest.all/libs.exp,
2338 testsuite/runtest.all/options.exp,
2339 testsuite/runtest.all/stats-sub.exp,
2340 testsuite/runtest.all/stats.exp, config/default.exp,
2341 config/gdb-comm.exp, config/gdb_stub.exp, config/sid.exp,
2342 config/sim.exp, config/unix.exp, config/vxworks.exp, configure.ac,
2343 dejagnu.h, runtest, runtest.exp: Use condensed years in copyright
2346 2016-06-22 Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2348 * doc/runtest.1: Use condensed years in copyright statement.
2350 2016-06-21 Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2352 * runtest: Quote paths. Use test -z, -n for clarity.
2354 2016-06-21 Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2356 * config/adb.exp (adb_exec) Improve verbose message.
2358 2016-06-03 Jim Wilson <jim.wilson@linaro.org>
2360 * baseboards/aarch64-sim.exp: New file.
2361 * Makefile.am (baseboard_DATA): Add aarch64-sim.exp.
2362 * Makefile.in: Regenerate.
2363 * lib/libgloss.exp (libgloss_link_flags): Map aarch64* to aarch64.
2365 2016-04-26 Ben Elliston <bje@gnu.org>
2367 * doc/dejagnu.texi: Fill more paragraphs.
2369 2016-04-25 Ben Elliston <bje@gnu.org>
2371 * testsuite/runtest.all/utils.test: Remove unsetenv test.
2373 2016-04-24 Ben Elliston <bje@gnu.org>
2375 * lib/utils.exp (unsetenv): Remove proc.
2376 * doc/dejagnu.texi: Update documentation.
2379 2016-04-19 Nick Clifton <nickc@redhat.com>
2381 * baseboards/msp430-sim.exp: New file.
2382 * Makefile.am (baseboard_DATA): Add msp430-sim.exp.
2383 * Makefile.in: Regenerate.
2385 2016-04-18 Ben Elliston <bje@gnu.org>
2387 * runtest: Remove quoting in final exec command.
2389 2016-04-17 Ben Elliston <bje@gnu.org>
2391 * lib/remote.exp: Load ssh.exp lib.
2393 2016-04-17 Ben Elliston <bje@gnu.org>
2395 * lib/rsh.exp (rsh_open): Fix description comment.
2397 2016-04-17 Ben Elliston <bje@gnu.org>
2399 Reported by shellcheck.
2400 * runtest: Use $((..)) not `expr ..` and defensively double quote
2403 2016-04-17 Ben Elliston <bje@gnu.org>
2405 * Makefile.am (pkgdata_DATA): Add lib/ssh.exp, lib/dmucs.exp.
2406 * Makefile.in: Regenerate.
2408 2016-04-17 Ben Elliston <bje@gnu.org>
2410 Reported by shellcheck.
2411 * runtest: Use $((..)) not `expr ..`.
2413 2016-04-17 Ben Elliston <bje@gnu.org>
2415 * configure.ac (AC_INIT): Update version number.
2416 * configure: Regenerate.
2417 * runtest.exp (frame_version): Update version number.
2418 * doc/dejagnu.texi: Likewise.
2420 2016-04-17 Ben Elliston <bje@gnu.org>
2422 * NEWS: Start a new section for the next release.
2424 2016-04-15 Ben Elliston <bje@gnu.org>
2426 * Makefile.am (CONTRIB): Add new contrib scripts.
2427 * Makefile.in: Regenrate.
2429 2016-04-15 Ben Elliston <bje@gnu.org>
2431 * lib/ssh.exp (ssh_exec): Handle regexp return status.
2433 2016-04-13 Ben Elliston <bje@gnu.org>
2435 * lib/rsh.exp (rsh_exec): Improve verbose message.
2436 * lib/ssh.exp (ssh_exec): Likewise.
2437 * config/adb.exp: Likewise.
2439 2016-04-13 Ben Elliston <bje@gnu.org>
2441 * runtest.exp: Improve --version (-v) output.
2442 * testsuite/runtest.all/options.exp: Update test case.
2444 2016-04-13 Christophe Lyon <christophe.lyon@linaro.org>
2446 * lib/rsh.exp (rsh_exec): Handle regexp return status.
2448 2016-04-08 Ben Elliston <bje@gnu.org>
2450 Reported by Faraz Shahbazker.
2451 * doc/dejagnu.texi (Global config file): Fix broken @node.
2452 (Local config file): Likewise.
2454 2016-04-07 Ben Elliston <bje@gnu.org>
2456 * lib/remote.exp (remote_exec): Join cd $remotedir and $program on
2457 the command line with ';' and not &&.
2459 2016-04-07 Ben Elliston <bje@gnu.org>
2461 Reported by Faraz Shahbazker.
2462 * doc/dejagnu.texi (rsh_exec procedure): Fix broken @node.
2464 2016-04-06 Yvan Roux <yvan.roux@linaro.org>
2466 * lib/remote.exp (remnote_download): Create a remote directory if
2468 (remote_exec): Execute program inside remotedir when it exists.
2469 (standard_load): Set remotedir board field if not present.
2470 * config/unix.exp (unix_load): Handle remotedir in board field.
2471 (remotedir): Set board info field.
2472 * doc/dejagnu.texi (Board File Values): Document remotedir.
2474 2016-04-06 Ben Elliston <bje@gnu.org>
2476 * doc/dejagnu.texi (Global config file): Put before node 'Local
2479 2016-04-05 Ben Elliston <bje@gnu.org>
2481 * runtest.exp: Remove defunct and undocumented --tool_root option.
2483 2016-04-04 Ben Elliston <bje@gnu.org>
2485 * doc/dejagnu.texi: More overhauling.
2487 2016-04-04 Ben Elliston <bje@gnu.org>
2489 * lib/targetdb.exp (set_board_info): Improve comment.
2490 (add_board_info): Likewise.
2492 2016-04-04 Ben Elliston <bje@gnu.org>
2494 * NEWS: Add some more detail.
2496 2016-04-04 Ben Elliston <bje@gnu.org>
2498 * site.tmpl: Delete.
2499 * Makefile.am (EXTRA_DIST): Remove site.tmpl.
2500 * Makefile.in: Regenerate.
2502 2016-04-03 Ben Elliston <bje@gnu.org>
2504 * doc/dejagnu.texi: More overhauling.
2506 2016-04-03 Ben Elliston <bje@gnu.org>
2508 * runtest.exp: Document the magical handling of -D[01].
2510 2016-04-03 Ben Elliston <bje@gnu.org>
2512 * doc/runtest.1: Do not document obsolete --status option. It is
2513 still accepted for compatibility, but does nothing.
2515 2016-04-03 Ben Elliston <bje@gnu.org>
2517 * doc/runtest.1 (OPTIONS): Place short forms (-v, -V, -x) first.
2519 2016-04-03 Ben Elliston <bje@gnu.org>
2521 * doc/runtest.1 (OPTIONS): Sort options.
2523 2016-04-03 Ben Elliston <bje@gnu.org>
2525 * doc/dejagnu.texi: More overhauling.
2527 2016-04-02 Ben Elliston <bje@gnu.org>
2529 * doc/dejagnu.texi: Fill paragraphs.
2531 2016-04-02 Ben Elliston <bje@gnu.org>
2533 * doc/dejagnu.texi: Fix capitalisation of procedure names
2534 throughout. Use Tcl syntax in procedure prototypes, not C syntax.
2536 2016-04-02 Rob Savoye <rob.savoye@linaro.org>
2538 * contrib/mysql/create-db.sql: New file.
2539 * contrib/mysql/importxml.sh: Likewise.
2540 * contrib/mysql/make-datafile.sh: Likewise.
2541 * contrib/mysql/plot.sh: Likewise.
2542 * contrib/mysql/README: Likewise.
2543 * contrib/mysql/sum2xml.sh: Likewise.
2545 2016-04-02 Ben Elliston <bje@gnu.org>
2547 * config.guess: Update to version 2016-04-02.
2548 * config.sub: Update to version 2016-03-30.
2550 2016-04-02 Rob Savoye <rob.savoye@linaro.org>
2552 * contrib/sum2junit.sh: New.
2554 2016-04-01 Ben Elliston <bje@gnu.org>
2556 * doc/dejagnu.texi (connprocs): Document new SSH procs.
2558 2016-03-31 Rob Savoye <rob.savoye@linaro.org>
2563 2016-03-30 Ben Elliston <bje@gnu.org>
2565 * baseboards/mcore-moto-sim.exp, lib/dejagnu.exp, lib/dg.exp,
2566 lib/dmucs.exp, lib/framework.exp, lib/remote.exp, lib/target.exp,
2567 runtest.exp: Fix spelling errors in comments.
2569 2016-03-30 Ben Elliston <bje@gnu.org>
2571 * lib/remote.exp (remote_expect): Use perror not send_user.
2573 2016-03-29 Ben Elliston <bje@gnu.org>
2575 * lib/remote.exp (remote_expect): Fix spelling error.
2577 2016-03-29 Rob Savoye <rob.savoye@linaro.org>
2579 * runtest.exp: Only print "searching for <test name>" message at
2580 verbose level >= 2 -- too much noise.
2582 2016-03-29 Ben Elliston <bje@gnu.org>
2584 * texinfo.tex: Update to latest master version.
2585 * INSTALL: Likewise.
2587 2016-03-29 Ben Elliston <bje@gnu.org>
2589 * runtest.exp: More fixes identified by the Frink static analyser.
2590 * lib/dg.exp: Likewise.
2591 * config/adb.exp: Likewise.
2592 * config/vxworks.exp: Likewise.
2593 * baseboards/androideabi.exp: Likewise.
2594 * baseboards/basic-sid.exp: Likewise.
2595 * baseboards/multi-sim.exp: Likewise.
2597 2016-03-28 Dominik Vogt <vogt@linux.vnet.ibm.com>
2599 * dg.exp (dg-do): Do not change the previously selected action if
2600 a de-selected dg-do is encountered.
2602 2016-03-28 Ben Elliston <bje@gnu.org>
2604 * lib/framework.exp (check_xml): Remove unused proc.
2606 2016-03-28 Rob Savoye <rob.savoye@linaro.org>
2608 * lib/dmucs.exp: New.
2610 2016-03-28 Rob Savoye <rob.savoye@linaro.org>
2612 * lib/libgloss.exp (find_g++): Look for xgcc++ to use the freshly
2613 built compiler, then look in the path.
2615 2016-03-28 Ben Elliston <bje@gnu.org>
2617 * lib/utils.exp (which): Don't exclude symbolic links--Debian's
2618 /bin/which doesn't. Modern systems rely too heavily on symbolic
2619 links (eg. alternatives).
2621 2016-03-28 Ben Elliston <bje@gnu.org>
2623 * baseboards/multi-sim.exp: Indent properly.
2625 2016-03-28 Ben Elliston <bje@gnu.org>
2627 * lib/rlogin.exp (rlogin_open): Return -1 if unable to spawn
2628 rlogin. Identified by Frink.
2630 2016-03-28 Ben Elliston <bje@gnu.org>
2632 * runtest.exp: Use 'array exists' for testing array existence
2633 rather than 'info exists'.
2635 2016-03-28 Ben Elliston <bje@gnu.org>
2637 * runtest.exp: Fixes identified by the Frink static analyser:
2638 (1) use -- in switch commands for safety,
2639 (2) remove unreachable return commands after error commands,
2640 (3) replace abbreviated "info proc" with "info procs",
2641 (4) use -- in unset commands for safety where the variable name
2642 is itself a variable.
2643 * lib/dg.exp: Likewise.
2644 * lib/debugger.exp: Likewise.
2645 * lib/framework.exp: Likewise.
2646 * lib/remote.exp: Likewise.
2647 * lib/target.exp: Likewise.
2648 * lib/targetdb.exp: Likewise.
2649 * lib/telnet.exp: Likewise.
2650 * lib/utils.exp: Likewise.
2652 2016-03-28 Ben Elliston <bje@gnu.org>
2654 * Makefile.am: Remove references to Docbook and friends.
2655 * configure.ac: Likewise.
2656 * Makefile.in: Regenerate.
2657 * configure: Regenerate.
2658 * doc/dejagnu.xml: Remove.
2659 * doc/legal.xml: Likewise.
2660 * doc/ref.xml: Likewise.
2661 * doc/user.xml: Likewise.
2663 2016-03-28 Ben Elliston <bje@gnu.org>
2665 * lib/framework.exp (exp_continue): Remove old compatibility
2666 wrapper. Expect deprecated 'continue -expect' in August 1997.
2668 2016-03-28 Ben Elliston <bje@gnu.org>
2672 2016-03-28 Ben Elliston <bje@gnu.org>
2674 * lib/utils.exp (which): Reimplement to more closely mimic the
2675 behaviour of the UNIX which utility.
2676 * testsuite/runtest.all/utils.test: Test proc which.
2678 2016-03-27 Ben Elliston <bje@gnu.org>
2680 * lib/remote.exp (standard_wait): Append any trailing characters
2681 to $output that may be still in $expect_out(buffer) when eof is
2682 matched. Remove arbitrary limitation in the ".+" matching case,
2683 similar to the change to local_exec on 2016-02-17.
2685 2016-03-23 Ben Elliston <bje@gnu.org>
2687 * Makefile.am (baseboard_DATA): Remove cygwin.exp, mcore-elf.exp,
2688 mcore-pe.exp, vx4300.exp, vx68k.exp, vx960.exp, vxsparc.exp.
2689 * Makefile.in: Regenerate.
2690 * baseboards/cygwin.exp, baseboards/mcore-elf.exp,
2691 baseboards/mcore-pe.exp, baseboards/vx4300.exp,
2692 baseboards/vx68k.exp, baseboards/vx960.exp,
2693 baseboards/vxsparc.exp: Remove.
2695 2016-03-23 Ben Elliston <bje@gnu.org>
2697 * baseboards/README: Remove mention of devo.
2698 * baseboards/iq2000-sim.exp: Likewise.
2699 * baseboards/moxie-sim.exp: Likewise.
2701 2016-03-23 Ben Elliston <bje@gnu.org>
2703 * Makefile.am (baseboard_DATA): Add arm-ice.exp, arm-sim.exp.
2704 * Makefile.in: Regenerate.
2705 * baseboards/arm-ice.exp: Reinstate.
2706 * baseboards/arm-sim.exp: Likewise.
2708 2016-03-23 Ben Elliston <bje@gnu.org>
2710 * Makefile.am (config_DATA): Update.
2711 (baseboard_DATA): Likewise.
2712 * Makefile.in: Regenerate.
2715 Remove the following old config files:
2717 * arc.exp, arm-ice.exp, base-config.exp, base68k.exp, bug.exp,
2718 cfdbug.exp, cygmon.exp, d10v.exp, ddb-ether.exp, ddb.exp, dos.exp,
2719 dve.exp, h8300.exp, i386-bozo.exp, i960.exp, m32r-stub.exp,
2720 m32r.exp, m68hc11.exp, m68k-emc.exp, mips-idt.exp,
2721 mn10200-eval.exp, mn10300-eval.exp, netware.exp, powerpc-bug.exp,
2722 proelf.exp, rom68k.exp, sh.exp, slite.exp, sparclet.exp,
2723 tic80.exp, vr4100.exp, vr4300.exp, vr5000.exp: Remove.
2725 Remove the following old baseboard files:
2727 * arc-sim.exp, arm-ice.exp, arm-sim.exp, cf.exp, cygmon.exp,
2728 d10v-sim.exp, d10v.exp, danlite-elf.exp, dos.exp, fr30-cygmon.exp,
2729 fr30-elf.exp, frv-elf.exp, frv-tiger.exp, frv-tomcat.exp,
2730 h8300-sim.exp, h8300.exp, i386-bozo.exp, i960-cyclone.exp,
2731 i960-sim.exp, m32r-elf.exp, m32r-linux-sim.exp, m32r-sid.exp,
2732 m32r-sim.exp, m68hc11-sim.exp, m68k-emc.exp, mips-idt.exp,
2733 mips64-sim.exp, mips64vr4100-sim.exp, mn10200-cygmon.exp,
2734 mn10300-cygmon.exp, msparc-cygmon.exp, op50n.exp, powerpc-bug.exp,
2735 powerpc-bug1.exp, rom68k-idp.exp, sh-hms.exp, sparclet-aout.exp,
2736 sparclite-coff.exp, sparclite-cygmon.exp, strongarm-cygmon.exp,
2737 tic80-sim.exp, tx39-dve.exp, usparc-cygmon.exp, vr4100-ddb.exp,
2738 vr4300-ddb.exp, vr4300.exp, vr5000-ddb.exp, x86-cygmon.exp,
2739 xscale-cygmon.exp: Remove.
2741 2016-03-22 Ben Elliston <bje@gnu.org>
2743 * lib/target.exp (only--Ls): Change '???' comment to a note. This
2744 isn't a serious shortcoming, but the comment should be retained.
2746 2016-03-22 Rob Savoye <rob.savoye@linaro.org>
2748 * baseboards/generic-sim.exp: If DEJAGNU_SIM_SPECFILE exists in
2749 the environment, use that as the spec file for bare metal testing.
2751 2016-03-22 Ben Elliston <bje@gnu.org>
2753 * Makefile.am (config_DATA): Add config/aarch64-fv8.exp.
2754 * Makefile.in: Regenerate.
2756 2016-03-22 Rob Savoye <rob.savoye@linaro.org>
2758 * config/aarch64-fv8.exp: Add support for testing armv8 using the
2759 ARM Foundation Model.
2761 2016-03-21 Ben Elliston <bje@gnu.org>
2763 * runtest.exp: Whitespace, comment and typo fixes.
2764 * lib/dejagnu.exp: Likewise.
2765 * lib/remote.exp: Likewise.
2766 * lib/utils.exp: Likewise.
2768 2016-03-21 Ben Elliston <bje@gnu.org>
2770 * baseboards/mcore-moto-sim.exp: Remove old FIXME comment.
2771 * baseboards/mmixware-sim.exp: Likewise.
2772 * config/sim.exp: Likewise.
2773 * runtest.exp: Likewise.
2775 2016-03-21 Ben Elliston <bje@gnu.org>
2777 * lib/dg.exp (dg-get-options): Clean up regular expression and
2778 remove FIXME comment about it.
2780 2016-03-20 Ben Elliston <bje@gnu.org>
2782 * baseboards/i960-sim.exp: Remove stale ??? comment.
2783 * config/vxworks.exp: Likewise.
2785 2016-03-20 Ben Elliston <bje@gnu.org>
2787 * runtest.exp: Load .dejagnurc last not first.
2788 (load_file): Update comment about Tcl 7.5a2.
2789 * doc/user.xml (Customizing DejaGnu): Document new search order
2791 * doc/dejagnu.texi: Regenerate.
2794 2016-03-20 Ben Elliston <bje@gnu.org>
2796 * lib/dg.exp (dg-runtest): Improve arg naming to remove a FIXME.
2798 2016-03-20 Ben Elliston <bje@gnu.org>
2800 * lib/dg.exp: Remove commented-out calls to send_user.
2802 2016-03-20 Ben Elliston <bje@gnu.org>
2804 * runtest.exp (load_file): Remove old comment.
2806 2016-03-20 Ben Elliston <bje@gnu.org>
2808 * lib/dg.exp (dg-test): There is no need to call unresolved to
2809 clear errcnt. Instead, pass 0 as argument 2 to perror.
2810 * runtest.exp (runtest): Likewise.
2812 2016-03-16 Ben Elliston <bje@gnu.org>
2814 Revert this change (the GCC testsuite uses diff):
2816 2016-03-15 Ben Elliston <bje@gnu.org>
2818 * lib/utils.exp (diff): Remove proc.
2819 * doc/ref.xml: Update documentation.
2820 * doc/dejagnu.texi: Regenerate.
2823 2016-03-15 Ben Elliston <bje@gnu.org>
2825 * testsuite/runtest.all/options.exp: Properly clean up log files
2826 left by the runtest under test.
2828 2016-03-15 Ben Elliston <bje@gnu.org>
2830 * testsuite/runtest.all/load_lib.exp: Typo fixes.
2832 2016-03-15 Ben Elliston <bje@gnu.org>
2834 * testsuite/runtest.all/options.exp: Add more tests.
2836 2016-03-15 Ben Elliston <bje@gnu.org>
2838 * testsuite/libdejagnu/tunit.exp: Clean up.
2840 2016-03-15 Ben Elliston <bje@gnu.org>
2842 * lib/utils.exp (diff): Remove proc.
2843 * doc/ref.xml: Update documentation.
2844 * doc/dejagnu.texi: Regenerate.
2847 2016-03-15 Ben Elliston <bje@gnu.org>
2850 2016-02-14 Steve Ellcey <sellcey@mips.com>
2852 * baseboards/multi-sim.exp (dynamic_linker_flag): Check
2854 * baseboards/multi-sim.exp (rpath_flags): Ditto.
2856 2016-03-13 Ben Elliston <bje@gnu.org>
2858 * lib/utils.exp: Whitespace fixes.
2860 2016-03-13 Ben Elliston <bje@gnu.org>
2862 * lib/dg.exp (dg-process-target): Remove old commented code.
2863 * lib/dg.exp (dg-test): Likewise.
2865 2016-03-13 Ben Elliston <bje@gnu.org>
2867 * lib/dg.exp: Improve top-of-file documentation.
2869 2016-03-05 Yvan Roux <yvan.roux@linaro.org>
2871 * lib/remote.exp (remote_exec): Restore original timeout value.
2873 2016-03-04 Yvan Roux <yvan.roux@linaro.org>
2875 * lib/remote.exp (standard_upload): Remove dead code.
2877 2016-02-24 Ben Elliston <bje@gnu.org>
2879 * lib/utils.exp (prune): Restore this proc.
2880 * doc/ref.xml: Update documentation.
2881 * doc/dejagnu.texi: Regenerate.
2884 2016-02-23 Iain Buclaw <ibuclaw@gdcproject.org>
2886 * lib/libgloss.exp (find_gdc): New proc.
2887 * lib/target.exp (default_target_compile): Add D support.
2890 2016-02-20 Ben Elliston <bje@gnu.org>
2892 * lib/utils.exp (diff): Replace calls to verbose followed by
2893 send_log with a single call to verbose -log. Remove additional
2894 newlines from the log messages.
2896 2016-02-20 Ben Elliston <bje@gnu.org>
2898 * lib/utils.exp (getdirs): Ignore .git and .svn directories.
2900 2016-02-20 Ben Elliston <bje@gnu.org>
2902 * lib/utils.exp: Improve comments.
2905 2016-02-20 Ben Elliston <bje@gnu.org>
2907 * lib/utils.exp (prune): Remove proc.
2908 * doc/ref.xml: Update documentation.
2909 * doc/dejagnu.texi: Regenerate.
2911 2016-02-20 Ben Elliston <bje@gnu.org>
2913 * lib/utils.exp (slay): Remove proc.
2914 * doc/ref.xml: Update documentation.
2915 * doc/dejagnu.texi: Regenerate.
2917 2016-02-20 Ben Elliston <bje@gnu.org>
2919 * lib/utils.exp (absolute): Remove proc.
2920 * doc/ref.xml: Update documentation.
2921 * doc/dejagnu.texi: Regenerate.
2923 2016-02-20 Ben Elliston <bje@gnu.org>
2925 * lib/utils.exp (psource): Remove proc.
2926 * doc/ref.xml: Update documentation.
2927 * doc/dejagnu.texi: Regenerate.
2929 2016-02-20 Ben Elliston <bje@gnu.org>
2931 * lib/targetdb.exp (board_info): Simplify return logic.
2933 2016-02-19 Ben Elliston <bje@gnu.org>
2935 * configure.ac: Require Tcl version 8.5 at a minimum.
2936 * configure: Regenerate.
2938 2016-02-18 Ben Elliston <bje@gnu.org>
2940 * configure.ac: Require Tcl version 8.6 at a minimum.
2941 * configure: Regenerate.
2943 2016-02-17 Ben Elliston <bje@gnu.org>
2945 * runtest.exp: Tweak "Test run by .." output.
2947 2016-02-17 Ben Elliston <bje@gnu.org>
2949 * lib/target.exp (default_target_compile): Do not pass -log to
2950 verbose when outputting the captured compiler/assembler/linker
2951 diagnostic output as it will already be in the .log file courtesy
2954 2016-02-17 Ben Elliston <bje@gnu.org>
2956 * runtest.exp: Enable --status by default.
2957 (runtest): Set exit status to 2 if there is any error sourcing
2959 * lib/framework.exp (unknown): Likewise, set exit status to 2.
2960 * doc/runtest.1: Clarify exit status codes.
2963 2016-02-17 Ben Elliston <bje@gnu.org>
2965 * lib/remote.exp (local_exec): Call exp_continue until eof is
2968 2016-02-16 Ben Elliston <bje@gnu.org>
2970 * runtest.exp: Use the traditional exit codes when runtest is
2971 interrupted. This makes it possible to tell if runtest ran to
2972 completion or not. Suggested by Michael Chastain.
2974 2016-02-15 Ben Elliston <bje@gnu.org>
2976 * TODO: Add ideas produced from Cauldron 2013.
2978 2016-02-15 Ben Elliston <bje@gnu.org>
2982 2016-02-15 Ben Elliston <bje@gnu.org>
2984 * lib/dg.exp (dg-test): Remove comment about proc unresolved not
2985 setting exit_status to 1 -- it does.
2987 2016-02-15 Ben Elliston <bje@gnu.org>
2989 * lib/framework.exp (cleanup): Remove do-nothing proc.
2990 (log_and_exit): Remove call to cleanup.
2991 * doc/ref.xml: Remove documentation for cleanup.
2992 * doc/dejagnu.texi: Regenerate.
2994 2016-02-15 Ben Elliston <bje@gnu.org>
2996 Reported by David Malcolm.
2997 * lib/dejagnu.exp (text): Allow angle brackets in test messages.
2999 2016-02-15 Ben Elliston <bje@gnu.org>
3001 * config.guess: Update to version 2016-02-11.
3002 * config.sub: Update to version 2016-01-01.
3004 2016-02-14 Maxim Kuvyrkov <maxim.kuvyrkov@linaro.org>
3006 * lib/remote.exp (remote_exec): Set global timeout for benefit of
3009 2016-02-14 Ben Elliston <bje@gnu.org>
3011 * lib/remote.exp (local_exec): Improve comments.
3013 2016-02-14 Ben Elliston <bje@gnu.org>
3015 * doc/runtest.1: Tweak.
3017 2016-02-14 Steve Ellcey <sellcey@mips.com>
3019 * baseboards/multi-sim.exp (dynamic_linker_flag): Check
3021 * baseboards/multi-sim.exp (rpath_flags): Ditto.
3023 2016-01-23 Simon Marchi <simon.marchi@ericsson.com>
3025 * lib/remote.exp (standard_file): Reverse return logic for remote
3028 2016-01-23 Simon Marchi <simon.marchi@ericsson.com>
3030 * lib/remote.exp (standard_file); Add else clause.
3032 2016-01-16 Ben Elliston <bje@gnu.org>
3034 * runtest.exp (runtest): Improve comment about --status.
3036 2016-01-12 Simon Marchi <simon.marchi@ericsson.com>
3038 * lib/remote.exp (standard_file): The [ operator does not actually
3039 output anything. It returns 0 or 1 as its exit code, so "exit `[
3040 -f $file ]`" always expands to "exit " (equivalent to exit 0).
3041 Instead, use test(1) to check for file existence.
3043 2015-12-20 Ben Elliston <bje@gnu.org>
3045 * doc/dejagnu.xml: Begin overhauling.
3046 * doc/ref.xml: Likewise.
3047 * doc/user.xml: Likewise.
3048 * doc/dejagnu.texi: Regenerate.
3050 2015-12-20 Ben Elliston <bje@gnu.org>
3052 * doc/runtest.1: Miscellaneous minor improvements.
3054 2015-12-09 Yoshinori Sato <ysato@users.sourceforge.jp>
3056 * Makefile.am (baseboard_DATA): Add missing rx-sim.exp.
3057 * Makefile.in: Regenerate.
3059 2015-11-16 Brooks Moses <bmoses@google.com>
3061 * config/unix.exp: Add ability to set test timeout from site.exp.
3062 * doc/user.xml: Document new test_timeout variable in site.exp.
3063 * doc/dejagnu.texi: Regenerate.
3065 2015-11-16 Ben Elliston <bje@gnu.org>
3067 * testsuite/runtest.all/options.exp: Re-enable --strace 1 test.
3069 2015-11-16 Ben Elliston <bje@gnu.org>
3071 * testsuite/runtest.all/options.exp: Remove some commented code.
3073 2015-11-16 Ben Elliston <bje@gnu.org>
3075 * runtest.exp: Refer to "DejaGnu version", not "Framework
3076 version" in --version output.
3077 * testsuite/runtest.all/options.exp: Update test case.
3079 2015-11-14 Ben Elliston <bje@gnu.org>
3081 * runtest.exp (usage): Improve help text.
3083 2015-11-12 Ben Elliston <bje@gnu.org>
3085 * runtest.exp (usage): Sort options in usage.
3087 2015-11-12 Ben Elliston <bje@gnu.org>
3089 * lib/framework.exp (note): Remove old commented-out code.
3091 2015-11-11 Ben Elliston <bje@gnu.org>
3093 * doc/user.xml (Summary File): 'untested', not 'runtested'.
3094 * doc/dejagnu.texi: Regenerate.
3096 2015-11-11 Michael Forney <forney@google.com>
3098 * lib/target.exp (default_target_compile): Honor LDFLAGS_FOR_TARGET.
3100 2015-11-11 Ben Elliston <bje@gnu.org>
3102 * doc/dejagnu.texi: Regenerate.
3104 2015-11-10 Ben Elliston <bje@gnu.org>
3106 * doc/user.xml: Fix runtest output formatting in <programlisting>.
3108 2015-11-10 Ben Elliston <bje@gnu.org>
3110 * doc/dejagnu.xml: Update month and year.
3111 * doc/user.xml: Lots of editorial fixes from Daniel Thibault
3112 <Daniel.Thibault@drdc-rddc.gc.ca>.
3114 2015-09-10 Robert Suchanek <Robert.Suchanek@imgtec.com>
3116 * baseboards/multi-sim.exp (rpath_flags): Add libgomp.so check.
3118 2015-07-30 Pedro Alves <palves@redhat.com>
3120 * lib/remote.exp (close_wait_program): New procedure.
3121 (local_exec, standard_close): Use it.
3123 2015-05-23 Ben Elliston <bje@gnu.org>
3125 * doc/dejagnu.xml: Fix broken URLs.
3126 * doc/dejagnu.texi: Regenerate.
3128 2015-05-23 Ben Elliston <bje@gnu.org>
3130 * doc/user.xml: Fix 'crosscompilation'.
3132 2015-05-23 Ben Elliston <bje@gnu.org>
3134 * doc/runtest.1 (log_dialog): Improve documentation.
3136 2015-05-16 Filipe Brandenburger <filbranden@google.com>
3138 * configure.ac: Enable subdir-objects, require automake 1.14.
3139 * Makefile.in: Regenerate.
3141 2015-05-15 Filipe Brandenburger <filbranden@google.com>
3143 * doc/dejagnu.xml: Fix typos such as stray }'s and @samp{...},
3144 possibly introduced in a conversion of .texi to SGML Docbook.
3145 * doc/user.xml: Likewise.
3146 * doc/ref.xml: Likewise.
3147 * doc/dejagnu.texi: Regenerate.
3149 2015-05-15 Filipe Brandenburger <filbranden@google.com>
3151 * runtest.exp (runtest): Introduce new --log_dialog option.
3152 * doc/runtest.1: Document it.
3153 * doc/user.xml: Likewise.
3154 * doc/dejagnu.texi: Regenerate.
3156 2015-05-14 Steve Ellcey <sellcey@imgtec.com>
3158 * baseboards/multi-sim.exp (get_library_dirlist): New.
3159 (dynamic_linker_flag): Use get_library_dirlist to find dynamic
3161 (rpath_flags): Use get_library_dirlist to set rpath.
3163 2015-05-12 Steve Ellcey <sellcey@imgtec.com>
3165 * baseboards/generic-sim.exp: Check $DEJAGNU_SIM_OPTION.
3167 2015-03-30 Ben Elliston <bje@gnu.org>
3169 Revert the following change which causes breakage reported here:
3170 https://lists.gnu.org/archive/html/dejagnu/2015-03/msg00003.html
3172 2011-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
3174 * runtest.exp (runtest): Call reset_vars at initialisation so that
3175 perror does not affect test results in other test scripts.
3177 2015-02-26 H.J. Lu <hjl.tools@gmail.com>
3179 * lib/target.exp (default_target_compile): Prepend multilib_flags,
3180 instead of appending it.
3182 2015-02-18 Ben Elliston <bje@gnu.org>
3184 * lib/framework.exp (log_and_exit): Set tool to "testrun" if
3187 2015-02-05 Ben Elliston <bje@gnu.org>
3189 * doc/runtest.1: Fix a spelling error.
3191 2015-02-04 Ben Elliston <bje@gnu.org>
3193 * config.guess: Update to version 2015-01-01.
3194 * config.sub: Likewise.
3196 2015-01-22 Eric Botcazou <ebotcazou@adacore.com>
3198 * Makefile.am (baseboard_DATA): Add baseboards/visium-sim.exp.
3199 * Makefile.in: Regenerate.
3200 * baseboards/visium-sim.exp: New file.
3202 2014-11-25 Ben Elliston <bje@gnu.org>
3204 * lib/dejagnu.exp (host_execute): Remove stray leading hyphen.
3205 Reported by David Malcolm.
3207 2014-10-28 Ben Elliston <bje@gnu.org>
3209 * Makefile.in: Regenerate.
3211 2014-10-28 Ben Elliston <bje@gnu.org>
3213 * example: Remove stale examples.
3215 2014-10-24 Steve Ellcey <sellcey@mips.com>
3217 * dejagnu.h (pass): Make function static as well as inline.
3222 (unresolved): Ditto.
3226 2014-10-14 Ben Elliston <bje@gnu.org>
3228 * runtest.exp: Only match $directory, not *${directory}* when the
3229 user passes the --directory option. Reported by Sergey Alyoshin.
3231 2014-10-14 Ben Elliston <bje@gnu.org>
3233 * lib/dejagnu.exp (host_execute): Remove buffer_full check. This
3234 is not the right command keyword -- it is full_buffer. Reported by
3237 2014-07-15 Maciej W. Rozycki <macro@mips.com>
3238 Maciej W. Rozycki <macro@codesourcery.com>
3240 * lib/targetdb.exp (add_board_info): New procedure.
3241 * doc/ref.xml (Add_board_info Procedure): New section.
3242 (Set_board_info Procedure): Add description.
3243 (Unset_board_info Procedure): Likewise.
3244 * doc/user.xml (Board Config File Values): Add `add_board_info'
3245 reference. Reorder `gdb_init_command' table rows and remove a
3246 duplicate entry, reusing it for `gdb_init_commands'.
3248 2014-06-25 Rob Savoye <rob.savoye@linaro.org>
3250 * runtest.exp: (lookfor-file): Fix bug were none of the relative
3251 paths were actually being used for file lookup.
3253 2014-06-06 Ben Elliston <bje@gnu.org>
3255 * depcomp, install-sh, missing: Update to latest versions.
3256 * mkinstalldirs: Remove.
3257 * Makefile.in: Regenerate.
3259 2014-06-04 Ben Elliston <bje@gnu.org>
3261 * Makefile.in: Regenerate with Automake 1.14.1.
3262 * compile: Add missing file.
3264 2014-06-04 Ben Elliston <bje@gnu.org>
3266 * config.guess: Update to version 2014-03-23.
3267 * config.sub: Likewise.
3269 2014-06-04 Ben Elliston <bje@gnu.org>
3271 * aclocal.m4: Regenerate with Automake 1.14.1.
3272 * configure: Regenerate with Autoconf 2.69.
3274 2014-03-15 Steve Ellcey <sellcey@mips.com>
3276 * baseboards/multi-sim.exp (rpath_flags): Add libatomic.so check.
3278 2014-02-23 Steve Ellcey <sellcey@mips.com>
3279 Richard Sandiford <rdsandiford@googlemail.com>
3281 * config/sim.exp (sim_exec): New.
3284 2013-12-08 Richard Sandiford <rdsandiford@googlemail.com>
3286 * lib/dg.exp (dg-test): Don't put the expected and actual output
3287 of a pattern test in the test name; send it to the log instead.
3289 2013-11-01 Steve Ellcey <sellcey@mips.com>
3291 * Makefile.am (baseboard_SCRIPTS): Add multi-sim.exp baseboard.
3292 * Makefile.in: Regenerate.
3293 * baseboards/multi-sim.exp: New.
3295 2013-10-31 Anton Kolesov <anton.kolesov@synopsys.com>
3297 * lib/remote.exp (standard_reboot): Return 1 instead of an empty string.
3298 (remote_reboot): Add comment explaining return value of this procedure.
3299 * doc/ref.xml (remote_reboot, standard_reboot): Document procedures.
3300 * doc/dejagnu.texi: Regenerate.
3302 2013-10-15 Alexander Ivchenko <alexander.ivchenko@intel.com>
3304 * baseboards/androideabi.exp (process_multilib_options): Add option.
3305 * config/adb.exp: Remove hardcoded -static option.
3306 (adb_load): Add the possibility to change the temp directory. Also
3307 handle permission potential problems.
3308 (adb_exec): Do cd to android_tmp_dir first.
3310 2013-10-05 Jose E. Marchesi <jose.marchesi@oracle.com>
3312 * baseboards/unix.exp: Add gdb settings to not use hardware
3313 watchpoints in sparc64 running GNU/Linux.
3315 2013-06-17 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
3317 * runtest.exp (libdirs): New global variable.
3318 (load_lib): Append libdirs to search_and_load_files directories.
3319 * doc/ref.xml (load_lib): Document global variable libdirs.
3320 * doc/dejagnu.texi: Regenerate.
3321 * testsuite/runtest.all/load_lib.exp: New testcase.
3322 * Makefile.am (TESTSUITE_FILES): Add new testcase.
3323 * Makefile.in: Regenerate.
3325 2013-06-15 Ben Elliston <bje@gnu.org>
3327 * configure.ac: If DEJAGNU is unset, set it to /dev/null.
3328 * Makefile.am: Export DEJAGNU.
3329 * configure: Likewise.
3330 * Makefile.in: Regenerate.
3332 2013-06-15 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
3334 * doc/user.xml: Fix typos.
3335 * doc/ref.xml: Likewise.
3336 * doc/dejagnu.texi: Regenerate.
3338 2013-06-15 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
3340 * doc/user.xml: Fix number of columns in table.
3341 * doc/dejagnu.texi: Regenerate.
3343 2013-06-15 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
3345 * doc/user.xml: Fix rendering errors around programlisting.
3346 * doc/ref.xml: Likewise.
3347 * doc/dejagnu.texi: Regenerate.
3349 2013-06-15 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
3351 * doc/user.xml: Fix spacing before productname.
3352 * doc/dejagnu.texi: Regenerate.
3354 2013-06-12 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
3356 * testsuite/runtest.all/default_procs.tcl (send_log): Use the
3357 magic "args" parameter name, as expect send_log proc accepts -- as
3360 2013-06-08 Makoto Fujiwara <makoto@ki.nu>
3362 * Makefile.am (pkgdata_DATA): Rename from pkgdata_SCRIPTS.
3363 (config_DATA): Likewise for config_SCRIPTS.
3364 (baseboard_DATA): Likewise for baseboard_SCRIPTS.
3365 (EXTRA_DIST): Remove pkgdata_SCRIPTS, config_SCRIPTS and
3367 * Makefile.in: Regenerate.
3369 2013-06-08 Ben Elliston <bje@gnu.org>
3371 * configure: Regenerate with autoconf 2.69.
3372 * aclocal.m4: Regenerate.
3374 2013-03-31 Ben Elliston <bje@gnu.org>
3376 * Makefile.am (html-local): Rename target from html.
3377 * Makefile.in: Regenerate with automake 1.12.6.
3378 * aclocal.m4: Likewise.
3379 * configure: Regenerate.
3381 2013-03-28 Gilles Espinasse <g.esp@free.fr>
3383 * TODO: Remove todo item about warncnt and errcnt.
3385 2013-03-28 Gilles Espinasse <g.esp@free.fr>
3387 * testsuite/lib/libsup.exp (make_defaults_file): Only set $tool once.
3389 2013-03-26 Ben Elliston <bje@gnu.org>
3391 * config.guess: Update to version 2013-02-12.
3392 * config.sub: Likewise.
3394 2013-02-16 Rob Savoye <rob@build.welcomehome.org>
3396 * config/adb.exp: Add adb_file so we can remotely delete test
3397 cases to save on limited disk space. Don't remove the file after
3398 executing it, leave that for the test driver instead.
3400 2013-02-15 Rob Savoye <rob@welcomehome.org>
3402 * config/adb.exp: Remove the test case after executing
3403 it. Otherwise we can fill up all the diskspace on a small target
3406 2013-02-11 Rob Savoye <rob@welcomehome.org>
3408 * baseboards/androideabi.exp: Board support for Android using ADB.
3409 * config/adb.exp: Config support for Android using ADB.
3410 * Makefile.am (dist): Add new config and board files.
3411 * aclocal.m4, Makefile.in, configure, example/calc/configure,
3412 example/mathhelper/configure: Regenerated with newer autotools.
3414 2012-12-05 Ben Elliston <bje@gnu.org>
3416 * example/hello: Remove.
3417 * configure.ac: Likewise.
3418 * configure: Regenerate.
3420 2012-10-04 Steve Ellcey <sellcey@mips.com>
3422 * Makefile.am (baseboard_SCRIPTS): Add new baseboards.
3423 * Makefile.in: Regenerate.
3424 * baseboards/mips-sim-mti32.exp: New.
3425 * baseboards/mips-sim-mti64.exp: New.
3426 * baseboards/mips-sim-mti64_n32.exp: New.
3427 * baseboards/mips-sim-mti64_64.exp: New.
3428 * baseboards/mips-sim-sde32.exp: New.
3429 * baseboards/mips-sim-sde64.exp: New.
3431 2012-10-04 Ben Elliston <bje@gnu.org>
3433 * aclocal.m4: Regenerate with automake 1.11.3.
3434 * Makefile.in: Likewise.
3435 * configure: Regenerate with autoconf 2.68.
3437 2012-08-22 Steve Ellcey <sellcey@mips.com>
3439 * baseboards/generic-sim.exp: New baseboard definition.
3441 2012-06-15 Andreas Schwab <schwab@linux-m68k.org>
3443 * lib/framework.exp (clone_output): Protect from leading dash in
3445 * runtest.exp (verbose): Likewise.
3447 2012-06-11 Tom Tromey <tromey@redhat.com>
3449 * doc/runtest.1: Update.
3450 * runtest.exp (xml_file_name): New global.
3452 Handle optional argument to --xml.
3453 * lib/framework.exp (open_logs): Respect xml_file_name.
3455 2012-03-24 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
3457 * runtest.exp (load_tool_init): Fix typo in -de option handling.
3459 2012-03-24 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
3461 * doc/runtest.1: Correct name of debug file.
3463 2012-02-25 Ben Elliston <bje@gnu.org>
3465 * runtest: Search /usr/share/dejagnu and /usr/local/share/dejagnu
3466 for runtest.exp as a last resort (for usrmove environments, where
3467 /bin is a link to /usr/bin). From Honza Horak <hhorak@redhat.com>.
3469 2011-12-30 Ben Elliston <bje@gnu.org>
3471 * doc/user.xml: Various spelling and consistency fixes.
3472 * doc/ref.xml: Likewise.
3473 (exit_remote_shell): Remove, as this procedure is defunct.
3474 * doc/dejagnu.texi: Regenerate.
3476 2011-12-30 Ben Elliston <bje@gnu.org>
3478 * config.guess: Update to version 2011-12-29.
3479 * config.sub: Update to version 2011-11-11.
3481 2011-06-30 Tom Tromey <tromey@redhat.com>
3483 * doc/ref.xml: Document find_gfortran.
3484 * doc/dejagnu.texi: Regenerate.
3485 * lib/target.exp (default_target_compile): Handle f90.
3486 (default_target_compile): Likewise.
3487 * lib/libgloss.exp (find_gfortran): New proc.
3489 2011-06-30 Ben Elliston <bje@gnu.org>
3491 * Makefile.am (all-local): New rule.
3492 * Makefile.in: Regenerate.
3494 2011-04-12 Ben Elliston <bje@gnu.org>
3496 * config/vxworks.exp (vxworks_file): Use "file delete", not "exec
3497 rm", for better portability.
3498 * config/netware.exp (${board}_load): Likewise.
3499 * lib/dg.exp (dg-test): Likewise.
3500 * lib/framework.exp (open_logs): Likewise.
3501 * lib/remote.exp (standard_file): Likewise.
3502 * runtest.exp: Likewise.
3503 * testsuite/runtest.all/options.exp: Likewise.
3505 2011-03-15 Ben Elliston <bje@gnu.org>
3507 * runtest.exp: Whitespace cleanups.
3508 * lib/dejagnu.exp, lib/dg.exp, lib/framework.exp,
3509 lib/libgloss.exp, lib/remote.exp, lib/rsh.exp, lib/target.exp,
3510 lib/telnet.exp, lib/tip.exp, lib/utils.exp: Likewise.
3512 2011-03-15 Ben Elliston <bje@gnu.org>
3514 * runtest: Remove trailing semicolons.
3515 * lib/rsh.exp: Likewise.
3517 2011-03-15 H.J. Lu <hjl.tools@gmail.com>
3519 * lib/remote.exp (local_exec): Ignore SIGHUP.
3521 2011-03-14 Ben Elliston <bje@gnu.org>
3523 * runtest.exp (frame_version): Set to 1.5.1.
3524 * configure.ac (AC_INIT): Set version to 1.5.1.
3525 * configure: Regenerate.
3526 * doc/dejagnu.xml (appversion, version): Set to 1.5.1.
3527 * doc/dejagnu.texi: Regenerate.
3529 2011-03-14 Ben Elliston <bje@gnu.org>
3531 * dejagnu.h: Whitespace cleanups.
3533 2011-03-14 Ben Elliston <bje@gnu.org>
3535 * baseboards/cris-sim.exp: Remove trailing semicolon(s).
3536 * baseboards/mt-sid.exp: Likewise.
3537 * baseboards/tx39-sim.exp: Likewise.
3538 * lib/target.exp (default_target_compile): Likewise.
3540 2011-03-14 Ben Elliston <bje@gnu.org>
3542 Reported by Flash Sheridan <flash@pobox.com>:
3543 * doc/user.xml (Testing "Hello world" locally): Improve the
3544 example test script and make it robust to failures. Tidy some
3546 * doc/dejagnu.texi: Regenerate.
3548 2011-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
3550 * runtest.exp (runtest): Call reset_vars at initialisation so that
3551 perror does not affect test results in other test scripts.
3553 2011-03-09 Ben Elliston <bje@gnu.org>
3555 * NEWS: Start a new section for post-1.5 changes.
3557 2011-03-09 Ben Elliston <bje@gnu.org>
3559 * DejaGnu 1.5 released.
3561 2011-03-09 Ben Elliston <bje@gnu.org>
3563 * Makefile.am (DISTCLEANFILES): Define.
3564 * Makefile.in: Regenerate.
3565 * testsuite/runtest.all/libs.exp: Clean up temp files on exit.
3566 * testsuite/runtest.all/options.exp: Likewise for dbg.log.
3567 * testsuite/runtest.all/stats.exp: Likewise for tmpdir. Use "file
3568 mkdir" instead of exec'ing mkdir(1).
3570 2011-03-07 Ben Elliston <bje@gnu.org>
3572 * Makefile.am (doc/dejagnu.texi): Conditional on MAINTAINER_MODE.
3573 * Makefile.in: Regenerate.
3575 2011-03-06 Ben Elliston <bje@gnu.org>
3577 * configure.ac (AC_INIT): Set version to 1.5.
3578 * configure: Regenerate.
3579 * runtest.exp (frame_version): Set to 1.5.
3580 * doc/dejagnu.texi: Regenerate.
3582 2011-03-04 Ben Elliston <bje@gnu.org>
3584 * texinfo.tex: Import latest version from ftp://tug.org/tex.
3586 2011-03-04 Ben Elliston <bje@gnu.org>
3588 * Makefile.am (EXTRA_DIST): Correct name of historical ChangeLog.
3589 * Makefile.in: Regenerate.
3591 2011-03-03 Ben Elliston <bje@gnu.org>
3593 * Makefile.am: Bump to GPL version 3.
3594 * configure.ac: Likewise.
3595 * Makefile.in: Regenerate.
3596 * aclocal.m4: Likewise.
3597 * configure: Likewise.
3599 2011-03-03 Ben Elliston <bje@gnu.org>
3601 * config.guess: Update to most recent version.
3602 * config.sub: Likewise.
3604 2011-03-03 Ben Elliston <bje@gnu.org>
3606 * lib/framework.exp (unknown): Rename the native Tcl ::unknown
3607 proc to ::tcl_unknown. If ::tcl_unknown returns a failure result,
3608 then fall back to the conventional DejaGnu handling. Report from
3609 David Byron <dbyron@dbyron.com>.
3611 2011-03-03 Maciej W. Rozycki <macro@codesourcery.com>
3613 * lib/remote.exp (remote_expect): Pass all exception conditions up
3616 2011-03-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3618 * lib/dg.exp (dg-test): Support nested calls.
3620 2010-04-13 Ben Elliston <bje@gnu.org>
3622 * testglue.c: Remove duplicated prototypes for abort and exit.
3624 2010-03-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3626 * doc/user.xml (Tcl Variables For Command Line Options): Correct
3629 2010-01-21 Jie Zhang <jie.zhang@analog.com>
3631 * config/gdb-comm.exp (gdb_comm_load): Set breakpoints after load.
3633 2010-01-15 Anthony Green <green@moxielogic.com>
3635 * baseboards/moxie-sim.exp: New baseboard.
3637 2009-12-10 DJ Delorie <dj@redhat.com>
3639 * baseboards/rx-sim.exp: New baseboard.
3641 2009-10-15 Ben Elliston <bje@gnu.org>
3643 * MAINTAINERS: Remove refererence to Tom Tromey's Tcl style guide.
3644 This web page has disappeared.
3646 2009-07-06 Ben Elliston <bje@gnu.org>
3648 * doc/dejagnu.xml, doc/ref.xml, doc/user.xml: Mark up options with
3649 <option> not <emphasis>. Apply other grammatical fixes from
3651 * doc/dejagnu.texi: Regenerate.
3653 2009-07-06 Ben Elliston <bje@gnu.org>
3655 * configure.ac: Check for docbook2x-texi.
3656 * configure: Regenerate.
3658 2009-07-06 Ben Elliston <bje@gnu.org>
3660 From Reuben Thomas <rrt@sc3d.org>:
3661 * doc/runtest.1: Fix some formatting issues.
3663 2009-06-16 Ben Elliston <bje@gnu.org>
3665 * config.guess: Update to most recent version.
3666 * config.sub: Likewise.
3668 2009-06-16 Ben Elliston <bje@gnu.org>
3670 * Makefile.am (rpm, deb, solpkg, hpdepot): Remove targets.
3671 * Makefile.in: Regenerate.
3672 * packaging: Remove directory and its contents.
3674 2009-06-10 Maciej W. Rozycki <macro@codesourcery.com>
3676 * config/gdb-comm.exp (gdb_comm_add_breakpoint): Handle pending
3679 2008-12-03 Ben Elliston <bje@gnu.org>
3681 * COPYING: Update to GPL version 3.
3683 2008-04-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3685 * doc/ref.xml, doc/user.xml: Fix typos.
3686 * doc/dejagnu.texi: Regenerate.
3688 2008-04-06 Daniel Jacobowitz <drow@false.org>
3690 * Makefile.am (RUNTESTDEFAULTFLAGS): Add RUNTEST=$(RUNTEST).
3691 * Makefile.in: Regenerate.
3692 * dejagnu.exp (host_execute): Improve regexp matching.
3693 * testsuite/libdejagnu/unit.cc: C++ fixes.
3695 2008-04-06 Daniel Jacobowitz <drow@false.org>
3697 * lib/utils.exp (diff): Open both files as binary.
3699 2008-04-06 Daniel Jacobowitz <dan@codesourcery.com>
3701 * dejagnu.h (totals): Correct typos.
3703 2008-04-06 Daniel Jacobowitz <dan@codesourcery.com>
3705 * doc/user.xml (Adding a New Tool, Adding a New Target): Fix typos.
3706 * doc/dejagnu.texi: Regenerate.
3708 2008-02-25 Ben Elliston <bje@gnu.org>
3710 * doc/runtest.1: Update date of last revision.
3712 2008-02-11 Hans-Peter Nilsson <hp@axis.com>
3714 * baseboards/h8300.exp: Use -- before switch argument that may
3716 * baseboards/cris-sim.exp: Ditto.
3718 2008-02-11 Hans-Peter Nilsson <hp@axis.com>
3720 * Makefile.am (baseboard_SCRIPTS): Add scripts cris-sim.exp,
3721 iq2000-sim.exp and m32r-linux-sim.exp.
3722 * Makefile.in: Regenerate.
3724 2008-02-08 Ben Elliston <bje@gnu.org>
3726 * baseboards/cris-sim.exp: Fix MS-DOS line termination.
3728 2007-12-28 Joseph Myers <joseph@codesourcery.com>
3730 * lib/target.exp (default_link): Initialize nobjects before use.
3732 2007-12-06 Ben Elliston <bje@gnu.org>
3734 * lib/dg.exp (dg_bogus): Comment fix.
3736 2007-10-31 DJ Delorie <dj@redhat.com>
3738 * lib/framework.exp (open_logs): Line buffer the .sum file.
3740 2007-09-04 Matt Kraai <kraai@ftbfs.org>
3742 * doc/user.xml (Configuration): Fix typos.
3743 * doc/dejagnu.texi: Regenerate.
3745 2007-08-28 Daniel Jacobowitz <dan@codesourcery.com>
3747 * lib/remote.exp (standard_send): Correct quoting.
3749 2007-05-17 Ben Elliston <bje@gnu.org>
3751 * doc/user.xml: Correct the syntax for running apt-get on a Debian
3752 GNU/Linux system. From Peter Welte <weltepe@gmail.com>.
3754 2007-04-30 Bob Wilson <bob.wilson@acm.org>
3756 * baseboards/xtensa-sim.exp: Set target_install. Stop using
3757 basic-sim.exp. Run the simulator with --turbo option. Replace
3758 needs_status_wrapper with the simulator's --exit_with_target_code
3761 2006-10-15 Rob Savoye <rob@bertha.welcomehome.org>
3763 * dejagnu.h: Add support for for expected failures and
3764 unexpected successes.
3766 2005-05-06 Andrew Fyfe <a.fyfe@tiscali.co.uk>
3768 * doc/Makefile.am: Fix install path for man page.
3769 * Makefiles: Regenerated.
3771 2006-08-29 Ben Elliston <bje@gnu.org>
3773 * runtest.exp (usage): Use "triplet" instead of "config name".
3775 2006-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3777 * Makefile.am (DOCBOOK2RTF): Fix typo.
3778 * Makefile.in: Regenerated.
3779 * lib/libgloss.exp (process_multilib_options): Use -- to handle
3780 options starting with hyphens.
3782 2006-06-23 Eric Botcazou <ebotcazou@adacore.com>
3784 * libgloss.exp (find_gnatmake): Rewrite.
3786 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
3788 * rsh.exp (rsh_exec): Handle inp and outp arguments. Use
3789 local_exec to run rsh. Return failure if rsh times out.
3790 * remote.exp (local_exec): Handle "|& cat" we added when deciding
3791 whether to return output.
3793 2006-06-09 Ben Elliston <bje@gnu.org>
3795 * baseboards/cris-sim.exp: Use Tcl fall-through syntax for
3796 multiple cases, not a list (case uses lists, switch does not).
3797 Pass -glob to switch where applicable to emulate case behaviour.
3798 * baseboards/h8300.exp: Likewise.
3799 * lib/framework.exp (clone_output): Likewise.
3800 (clear_xfail): Likewise.
3801 (clear_kfail): Likewise.
3802 * lib/libgloss.exp (process_multilib_options): Likewise.
3803 * runtest.exp: Likewise.
3805 2006-06-06 Ben Elliston <bje@gnu.org>
3807 * Makefile.am (CONTRIB): New.
3808 (EXTRA_DIST): Add $(CONTRIB).
3809 (doc/dejagnu.texi): Set directory-category param to docbook2texi.
3810 * Makefile.in: Regenerate.
3811 * doc/dejagnu.texi: Likewise.
3813 2006-06-06 Ben Elliston <bje@gnu.org>
3815 * runtest.exp (load_lib): Typo fix.
3817 2006-06-06 Ben Elliston <bje@gnu.org>
3819 * dejagnu.h: Tidy comments.
3820 (_BUFFER_SIZE_): Remove to minimise namespace pollution.
3821 (wait): Define this function unconditionally. Conditionally
3822 compile the function body if _DEJAGNU_WAIT_ is defined.
3823 (buffer): Set the buffer size explicitly.
3824 (pass): Use sizeof (buffer). Call wait() unconditionally.
3825 (fail, untested, unresolved, note): Likewise.
3826 (enum teststate): Tidy whitespace.
3828 2006-06-06 Ben Elliston <bje@gnu.org>
3830 * doc/dejagnu.xml, doc/ref.xml, doc/user.xml: Edits.
3831 * doc/dejagnu.texi: Regenerate.
3833 2006-06-06 Ben Elliston <bje@gnu.org>
3835 Import from GCC tree:
3836 2006-06-02 Richard Earnshaw <rearnsha@arm.com>
3837 Mike Stump <mrs@apple.com>
3839 * compare_tests: Handle multilibs better.
3841 2006-06-06 Ben Elliston <bje@gnu.org>
3843 * doc/dejagnu.texi: Regnerate using Docbook2X 0.8.7.
3845 * configure.ac: Check for docbook2texi, not docbook2x-texi. The
3846 wrapper script changed its name again in the latest release.
3847 * configure: Regenerate.
3848 * Makefile.am (DOCBOOK2X_TEXI): Rename from this ..
3849 (DOCBOOK2TEXI): .. to this.
3850 (doc/dejagnu.texi): Do not use output-file parameter to deposit
3851 the .texi file into the source directory; use mv(1) instead. Set
3852 directory-description parameter.
3853 * Makefile.in: Likewise.
3855 2006-06-02 Ben Elliston <bje@gnu.org>
3857 * config/sim.exp (sim_upload): Match up argument names.
3859 2006-06-02 Ben Elliston <bje@gnu.org>
3861 * config.guess: Update to most recent version.
3862 * config.sub: Likewise.
3864 2006-06-02 Ben Elliston <bje@gnu.org>
3866 * config/dos.exp (dos_open): Only run global board_info once at
3867 the beginning of the proc; remove duplicates.
3868 (dos_load): Use file join to separate path components.
3869 (dos_copy_upload): Likewise.
3870 * lib/remote.exp (call_remote): Use error, not "blooie" to trigger
3873 2006-06-02 Ben Elliston <bje@gnu.org>
3875 * contrib/compare_tests: Import from the GCC contrib directory.
3877 2006-05-24 Ben Elliston <bje@gnu.org>
3879 * runtest.exp (verbose): Brace some expressions.
3880 (load_file, search_and_load_file): Likewise.
3881 (runtest): Likewise.
3883 2006-05-23 Ben Elliston <bje@gnu.org>
3885 * config/gdb-comm.exp (gdb_comm_load): Brace some expressions.
3886 * config/i960.exp (i960_spawn): Initialise status.
3887 * config/netware.exp (${board}_init): Brace some if expressions.
3888 * lib/dg.exp (dg-test): Brace some expressions.
3889 * lib/framework.exp (clone_output, log_and_exit, log_summary,
3890 record_test, pass, fail): Likewise.
3891 * lib/libgloss.exp (get_multilibs): Likewise.
3892 * lib/remote.exp (standard_transmit, unix_clean_filename,
3893 remote_load, check_for_board_status, remote_expect): Likewise.
3894 * lib/rsh.exp (rsh_exec): Likewise.
3896 2006-05-22 Ben Elliston <bje@gnu.org>
3898 * baseboards/cris-sim.exp: Use switch, not case.
3899 * baseboards/h8300.exp: Likewise.
3900 * config/base68k.exp (base68k_ld): Brace an if expression.
3902 2006-05-22 Ben Elliston <bje@gnu.org>
3904 * runtest.exp, baseboards/basic-sim.exp, baseboards/cf.exp,
3905 baseboards/cris-sim.exp, baseboards/i960-cyclone.exp,
3906 baseboards/mcore-moto-sim.exp, baseboards/mips64vr4100-sim.exp,
3907 baseboards/mmixware-sim.exp, baseboards/op50n.exp,
3908 baseboards/rom68k-idp.exp, baseboards/sparclite-sim-le.exp,
3909 baseboards/usparc-cygmon.exp, config/base-config.exp,
3910 config/base68k.exp, config/ddb-ether.exp, config/ddb.exp,
3911 config/dos.exp, config/gdb-comm.exp, config/gdb_stub.exp,
3912 config/i386-bozo.exp, config/i960.exp, config/m68k-emc.exp,
3913 config/netware.exp, config/sid.exp, config/sim.exp,
3914 config/tic80.exp, config/unix.exp, config/vxworks.exp,
3915 lib/debugger.exp, lib/dejagnu.exp, lib/dg.exp, lib/framework.exp,
3916 lib/ftp.exp, lib/kermit.exp, lib/libgloss.exp, lib/remote.exp,
3917 lib/rlogin.exp, lib/rsh.exp, lib/target.exp, lib/targetdb.exp,
3918 lib/telnet.exp, lib/tip.exp, lib/utils.exp: Put braces around if
3919 expressions throughout.
3921 2006-05-22 Ben Elliston <bje@gnu.org>
3923 * lib/framework.exp (open_logs): Use file join where applicable.
3924 * lib/libgloss.exp (libgloss_link_flags, newlib_link_flags,
3925 newlib_include_flags, g++_link_flags, libstdc++_link_flags,
3926 get_multilibs, winsup_include_flags, winsup_link_flags): Likewise.
3927 * lib/utils.exp (which): Likewise.
3928 * runtest.exp (search_and_load_file, lookfor_file,
3929 load_tool_init): Likewise.
3931 * lib/debugger.exp (watcharray): Add `array' parameter. Rename
3932 `type' parameter to `op' and update all uses in the proc.
3933 (watchvar): Add `ignore' parameter for scalar variables.
3934 Likewise, rename `type' to `op' and update throughout the proc.
3936 * runtest.exp: Use switch, not case.
3937 * lib/framework.exp (clone_output): Likewise.
3938 (clear_xfail): Likewise.
3939 (clear_kfail): Likewise.
3940 (set_warning_threshold): Make warning_threshold global.
3941 (get_warning_threshold): Likewise.
3942 * lib/libgloss.exp (process_multilib_options): Use switch, not
3944 * lib/remote.exp (local_exec): Only run global errorInfo once.
3945 (standard_upload): Fix error in variable use ($file -> $srcfile).
3946 * lib/utils.exp (grep): Use switch, not case.
3947 (slay): Fix mismatched bracket.
3949 * lib/debugger.exp (watcharray): Use switch, not case.
3950 (watchvar): Likewise.
3951 (bt): Add an explanatory comment.
3953 2006-04-03 Ben Elliston <bje@gnu.org>
3955 * lib/debugger.exp, lib/dejagnu.exp, lib/dg.exp,
3956 lib/framework.exp, lib/libgloss.exp, lib/remote.exp,
3957 lib/rlogin.exp, lib/target.exp, lib/telnet.exp: Formatting.
3959 2006-01-02 Ben Elliston <bje@gnu.org>
3961 * configure.ac (AC_INIT): Set version to 1.4.99.
3962 * configure: Regenerate.
3964 2006-01-01 Ben Elliston <bje@gnu.org>
3966 * testsuite/runtest.all/utils.test: Add runtest_file_p.
3968 2006-01-01 Ben Elliston <bje@gnu.org>
3970 * runtest.exp (frame_version): Set to 1.4.99.
3972 2006-01-01 Ben Elliston <bje@gnu.org>
3974 * dejagnu.h: Update copyright notice. Use C-style /* .. */
3975 comments for portability with ISO C compilers.
3976 * testsuite/libdejagnu/unit.cc: Likewise, update copyright notice.
3978 2006-01-01 Ben Elliston <bje@gnu.org>
3980 * runtest.exp: Update copyright notice.
3981 * example/calc/testsuite/calc.test/calc.exp: Likewise.
3982 * example/calc/testsuite/config/unix.exp: Likewise.
3983 * testsuite/libdejagnu/tunit.exp: Likewise.
3984 * testsuite/runtest.all/libs.exp: Likewise.
3985 * testsuite/runtest.all/options.exp: Likewise.
3986 * testsuite/runtest.all/stats-sub.exp: Likewise.
3987 * testsuite/runtest.all/stats.exp: Likewise.
3989 2006-01-01 Ben Elliston <bje@gnu.org>
3991 * config/default.exp, config/unix.exp, config/vxworks.exp,
3992 lib/debugger.exp, lib/dejagnu.exp, lib/framework.exp,
3993 lib/libgloss.exp, lib/remote.exp, testsuite/lib/util-defs.exp:
3995 * dejagnu.h, testsuite/config/default.exp,
3996 testsuite/lib/libsup.exp, testsuite/libdejagnu/tunit.exp,
3997 testsuite/libdejagnu/unit.cc, testsuite/runtest.all/libs.exp,
3998 testsuite/runtest.all/options.exp,
3999 testsuite/runtest.all/stats-sub.exp,
4000 testsuite/runtest.all/stats.exp: Update copyright notice and FSF
4001 office address. Remove bug reporting address, as it is now
4002 maintained centrally in the README file.
4004 2005-12-31 Ben Elliston <bje@gnu.org>
4006 * testsuite/runtest.all/utils.test: Don't bother mentioning
4007 absolute, psource, prune and slay as untested procedures.
4009 2005-12-31 Ben Elliston <bje@gnu.org>
4011 * doc/ref.xml (Utility Procedures): Note that the following
4012 procedures are deprecated: absolute, psource, prune, slay.
4014 * doc/dejagnu.texi: Regenerate.
4016 2005-12-24 Ben Elliston <bje@gnu.org>
4018 * Makefile.am (doc/dejagnu.texi): Don't use shell redirection, in
4019 case the command fails and zeroes the Texinfo source file. Move
4020 the output (if successful) by its default filename using mv(1).
4021 * Makefile.in: Regenerate.
4023 2005-12-24 Ben Elliston <bje@gnu.org>
4025 * configure.ac (DOCBOOK2X_TEXI): Add search for this program.
4026 * configure: Regenerate.
4027 * Makefile.am (DOCBOOK2PDF, DOCBOOK2RTF, DOCBOOK2PS): New.
4028 (DOCBOOK2HTML, DOCBOOK2X_TEXI): Likewise.
4029 (dejagnu.pdf): Use $(DOCBOOK2PDF).
4030 (dejagnu.ps): Likewise, use $(DOCBOOK2PS).
4031 (dejagnu.rtf): Likewise, use $(DOCBOOK2RTF).
4032 (html): Likewise, use $(DOCBOOK2HTML).
4033 (doc/dejagnu.texi): Produce using the docbook2x-texi wrapper,
4034 which is much simpler. Likewise, use $(DOCBOOK2X_TEXI).
4035 * Makefile.in: Regenerate.
4037 2005-12-24 Ben Elliston <bje@gnu.org>
4039 * Makefile.am (EXTRA_DIST): Remove $(PACKAGING_METAFILES).
4040 (XML): Remove $(srcdir) from each filename; VPATH suffices.
4041 (PACKAGING_METAFILES): Remove.
4042 * Makefile.in: Regenerate.
4044 2005-12-24 Ben Elliston <bje@gnu.org>
4048 2005-12-24 Ben Elliston <bje@gnu.org>
4052 2005-12-24 Ben Elliston <bje@gnu.org>
4054 * testsuite/libdejagnu/tunit.exp: Don't change to a non-existent
4057 2005-12-24 Ben Elliston <bje@gnu.org>
4059 * Makefile.am (RUNTEST): Simplify, as Automake already generates
4060 similar logic in Makefile.in.
4061 * Makefile.in: Regenerate.
4063 2005-12-24 Ben Elliston <bje@gnu.org>
4065 * Makefile.am (RUNTESTDEFAULTFLAGS): Omit --tool so that
4066 libdejagnu tests are run too.
4067 * Makefile.in: Regenerate.
4069 2005-12-24 Ben Elliston <bje@gnu.org>
4071 * configure: Regenerate.
4073 * lib/remote.exp: Tidy.
4074 * lib/targetdb.exp: Likewise.
4075 * lib/target.exp (prune_warnings): Improve comments.
4076 * lib/dejagnu.exp: Likewise.
4077 * lib/utils.exp: Likewise.
4081 2005-12-24 Ben Elliston <bje@gnu.org>
4083 * doc/dejagnu.xml: Don't use apostrophes in section titles.
4084 * doc/dejagnu.texi: Regenerate.
4086 2005-12-24 Ben Elliston <bje@gnu.org>
4088 * Makefile.am (XML): Include $(srcdir) in filenames.
4089 * Makefile.in: Regenerate.
4091 2005-12-24 Ben Elliston <bje@gnu.org>
4093 * doc/C/Makefile.am: Remove.
4094 * doc/C/Makefile.in: Likewise.
4096 * Makefile.am (SUBDIRS): Remove.
4097 (EXTRA_DIST): Append $(XML).
4098 (dist_man_MANS): Define.
4099 (info_TEXINFOS): Likewise.
4100 (XML): List XML source files.
4101 (dejagnu.pdf): New target.
4102 (dejagnu.ps): Likewise.
4103 (dejagnu.rtf): Likewise.
4105 (dejagnu.texi): Special rule to build Texinfo source.
4106 * Makefile.in: Regenerate.
4107 * configure.ac: Don't search for docbook2dvi.
4108 Search for docbook2rtf and docbook2pdf.
4109 Don't output doc/Makefile or doc/C/Makefile.
4110 * configure: Regenerate.
4111 * doc/texinfo.tex: Move from here ..
4112 * texinfo.tex: .. to here.
4113 * doc/Makefile.am: Remove.
4114 * doc/Makefile.in: Likewise.
4115 * doc/C/dejagnu.omf: Likewise.
4116 * doc/C/topic.dat: Likewise.
4117 * doc/C/dejagnu.xml: Move from here ..
4118 * doc/dejagnu.xml: .. to here.
4119 * doc/C/legal.xml: Move from here ..
4120 * doc/legal.xml: .. to here.
4121 * doc/C/ref.xml: Move from here ..
4122 * doc/ref.xml: .. to here.
4123 * doc/C/user.xml: Move from here ..
4124 * doc/user.xml: .. to here.
4125 * doc/dejagnu.texi: Rebuild from XML source.
4127 2005-12-23 Ben Elliston <bje@gnu.org>
4129 * doc/runtest.1: Update manual page.
4131 2005-12-23 Ben Elliston <bje@gnu.org>
4133 * doc/overview.sgml: Remove in favour of XML versions.
4134 * doc/ref.sgml: Ditto.
4135 * doc/user.sgml: Ditto.
4136 * doc/texinfo.tex: Import new version.
4138 2005-12-20 Ben Elliston <bje@gnu.org>
4140 * Makefile.am (SUBDIRS): Remove testsuite, example.
4141 (EXTRA_DIST): Add $(TESTSUITE_FILES).
4142 (TESTSUITE_FILES): New.
4143 (RUNTEST, RUNTESTDEFAULTFLAGS): New.
4145 (check_PROGRAMS): New.
4146 (unit_SOURCES): New.
4147 * Makefile.in: Regenerate.
4148 * configure.ac (AC_OUTPUT): Don't output example/Makefile,
4149 testsuite/Makefile or testsuite/libdejagnu/Makefile.
4150 * configure: Regenerate.
4151 * testsuite/Makefile.am: Remove.
4152 * testsuite/Makefile.in: Likewise.
4153 * testsuite/libdejagnu/Makefile.am: Likewise.
4154 * testsuite/libdejagnu/Makefile.in: Likewise.
4156 2005-12-20 Ben Elliston <bje@gnu.org>
4158 * Makefile.am (baseboard_SCRIPTS): Rename ms1->mt.
4159 * Makefile.in: Regenerate.
4161 2005-12-20 Ben Elliston <bje@gnu.org>
4163 * configure: Regenerate with autoconf 2.59.
4164 * aclocal.m4: Regenerate with aclocal 1.9.6.
4165 * Makefile.in: Regenerate with automake 1.9.6.
4166 * doc/Makefile.in: Likewise.
4167 * doc/C/Makefile.in: Likewise.
4168 * example/Makefile.in: Likewise.
4169 * testsuite/Makefile.in: Likewise.
4170 * testsuite/libdejagnu/Makefile.in: Likewise.
4172 2005-12-20 Nathan Sidwell <nathan@codesourcery.com>
4174 * baseboards/ms1-sid.exp: Rename from this ..
4175 * baseboards/mt1-sid.exp: .. to this. Update ms1->mt within.
4177 2005-12-20 Ben Elliston <bje@gnu.org>
4179 * config.guess: Update to most recent version.
4180 * config.sub: Likewise.
4182 2005-09-24 Ben Elliston <bje@gnu.org>
4184 * packaging/pkg/pkginfo (EMAIL): Update mail address.
4186 * lib/rsh.exp: Tidy comments.
4188 2005-07-07 Ben Elliston <bje@gnu.org>
4190 * lib/telnet.exp (telnet_transmit): Remove; use standard method.
4192 2005-07-07 Ben Elliston <bje@gnu.org>
4194 * Makefile.am (baseboard_SCRIPTS): Add ms1-sid.exp.
4195 * Makefile.in: Regenerate.
4197 2005-07-06 Ben Elliston <bje@gnu.org>
4199 * lib/tip.exp (tip_open): Improve comments.
4200 (tip_download): Likewise.
4202 2005-07-06 Ben Elliston <bje@gnu.org>
4204 * lib/telnet.exp (telnet_open): Improve option handling. Clarify
4205 documentation for each proc.
4207 2005-07-06 Ben Elliston <bje@gnu.org>
4209 * aclocal.m4: Regenerate with aclocal 1.9.
4210 * configure: Regenerate with autoconf 2.59.
4211 * doc/C/Makefile.am: Remove stray include.
4212 * Makefile.in, doc/Makefile.in, doc/C/Makefile.in,
4213 example/Makefile.in, testsuite/Makefile.in,
4214 testsuite/libdejagnu/Makefile.in: Regenerate with automake 1.9.
4216 2005-07-06 Ben Elliston <bje@gnu.org>
4218 Import some missing hunks from this patch on sourceware:
4220 2004-11-11 Nick Clifton <nickc@redhat.com>
4222 * lib/libgloss.exp (libio_include_flags, g++_include_flags,
4223 winsup_include_flags): Revert previous patch, restoring the use of
4224 -I, for all libraries except newlib. Newlib needs -isystem to
4225 avoid the problems with <limits.h> but the C++ and winsup
4226 libraries need -I because -isystem generates an implicit 'extern
4227 "C"' which may not be appropriate for certain targets.
4229 2005-07-06 Aldy Hernandez <aldyh@redhat.com>
4231 * baseboards/ms1-sid.exp: New.
4233 2005-07-01 Ben Elliston <bje@gnu.org>
4235 Unify some changes with the 1.4 branch:
4237 2004-10-28 Nick Clifton <nickc@redhat.com>
4238 * baseboards/iq2000-sim.exp: New file.
4240 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
4241 * baseboards/mn10300-sim.exp: Set needs_status_wrapper and
4244 2004-05-13 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
4245 * baseboards/m32r-linux-sim.exp: Add New file.
4247 2005-06-24 Ben Elliston <bje@gnu.org>
4249 * MAINTAINERS: Update my email address.
4251 2005-06-24 Ben Elliston <bje@gnu.org>
4253 * Update the FSF's physical address throughout.
4255 2005-06-22 Ben Elliston <bje@gnu.org>
4257 * config.guess: Update to most recent version.
4258 * config.sub: Likewise.
4260 2005-04-28 Mark Kettenis <kettenis@gnu.org>
4262 * lib/target.exp (prune_warnings): Add a few more linker
4263 warning patterns for OpenBSD.
4265 2005-03-20 Mark Kettenis <kettenis@gnu.org>
4267 * lib/target.exp (prune_warnings): Add linker warning patterns for
4270 2005-01-29 Hans-Peter Nilsson <hp@axis.com>
4272 * baseboards/cris-sim.exp: New file.
4274 2004-11-19 Nick Clifton <nickc@redhat.com>
4276 * lib/libgloss.exp (newlib_include_flags): Document why -isystem
4277 is used instead of -I.
4278 (libio_include_flags): Use -I instead of -isystem and
4280 (g++_include_flags): Use -I instead of -isystem.
4281 (libstdc++_include_flags): Likewise.
4283 2004-11-04 Ben Elliston <bje@gnu.org>
4285 * lib/dg.exp (dg-test): If a `dg-do run' test fails to compile,
4286 mark the test as unresolved, rather than warning.
4288 2004-10-27 Nick Clifton <nickc@redhat.com>
4290 * baseboards/iq2000-sim.exp: New file.
4292 2004-08-20 Daniel Jacobowitz <dan@debian.org>
4294 * testglue.c: Prototype abort(3) and exit(3).
4296 2004-08-14 Paul Brook <paul@codesourcery.com>
4298 * config/sim.exp (sim_download, sim_upload): New procs.
4300 2004-06-30 Ben Elliston <bje@gnu.org>
4302 * config.guess: Update to current revision.
4303 * config.sub: Likewise.
4305 2004-06-12 Ben Elliston <bje@gnu.org>
4307 * config.guess: Update to current revision.
4308 * config.sub: Likewise.
4310 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
4312 * testglue.c: Prototype abort and exit.
4314 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
4316 * baseboards/mn10300-sim.exp: Set needs_status_wrapper to empty
4319 Tue Feb 25 05:19:57 UTC 2003 Brendan Conoboy <blc@@redhat.com>
4321 * lib/remote.exp (call_remote): Remove multilibs from the board
4322 name when rebooting a board.
4324 2004-06-03 Alexandre Oliva <aoliva@redhat.com>
4326 * baseboards/mn10300-sim.exp: Set needs_status_wrapper and
4329 2004-06-07 Ben Elliston <bje@gnu.org>
4331 * lib/libgloss.exp (build_wrapper): Remove redundant set command.
4333 2004-03-29 Joel Brobecker <brobecker@gnat.com>
4335 * lib/libgloss.exp (find_gnatmake): New procedure.
4336 * lib/target.exp (default_target_compile): Add support for Ada.
4338 2004-04-16 Kazuhiro Inaoka <inaoka dot kazuhiro at renesas dot com>
4340 * baseboards/m32r-linux-sim.exp: Add New file.
4342 2004-04-02 Rob Savoye <rob@direwolf.welcomehome.org>
4344 * configure.ac, example/Makefile.am: Add example/mathhelper.
4345 * configure, alocal.m4, example/Makefile.in: Regenerated.
4347 2004-04-02 Joel Sherrill <joel@OARcorp.com>
4349 * example/mathhelper: New example for using the unit testing API.
4351 2004-03-05 Daniel Jacobowitz <drow@mvista.com>
4353 * lib/remote.exp (standard_spawn): Fix rsh username support.
4355 2004-03-06 Rob Savoye <rob@althea.welcomehome.org>
4357 * doc/C: New directory for DocBook XML files.
4358 * doc/C/dejagnu.omf: New config file for scrollkeeper.
4359 * doc/C/topic.dat: New config file for the GNOME help system.
4360 * doc/C/dejagnu.xml: DocBook XML formatted verion of what was
4362 * doc/C/ref.xml: DocBook XML formatted verion of what was
4364 * doc/C/user.xml: DocBook XML formatted verion of what was
4367 2004-02-17 Ben Elliston <bje@wasabisystems.com>
4369 * runtest.exp: Do not trap SIGSEGV.
4371 2004-02-16 Ben Elliston <bje@wasabisystems.com>
4373 * configure.ac: Update AC_INIT and AM_INIT_AUTOMAKE invocations.
4374 * configure: Regenerate.
4376 2004-02-09 Ben Elliston <bje@wasabisystems.com>
4378 * doc/runtest.1: Improve some wording. Update last revision date.
4380 2004-02-09 Ben Elliston <bje@wasabisystems.com>
4382 * NEWS: Document yesterday's work.
4384 * runtest: Improve comments.
4386 2004-02-09 Ben Elliston <bje@wasabisystems.com>
4390 * testsuite/libdejagnu/unit.cc: Conform with GNU coding standard.
4392 2004-02-08 Ben Elliston <bje@wasabisystems.com>
4394 * configure.ac: Quote strings throughout in good Autoconf style.
4395 Remove AC_PROG_YACC invocation. Search for docbook2dvi, et al and
4396 expect using AC_PATH_PROG. Remove DJ_AC_PATH_DOCBOOK in favour of
4397 existing macros. Remove stale BOARDS and CONFIG substs. Ensure Tcl
4398 is at version 8.3 or greater.
4399 * configure: Regenerate.
4400 * acinclude.m4: Remove.
4401 * aclocal.m4: Regenerate.
4402 * Makefile.in: Likewise.
4403 * doc/Makefile.am (%.pdf: %.sgml): Use $(DOCBOOK2PDF).
4404 (%.dvi: %.sgml): Use $(DOCBOOK2DVI).
4405 (%.html: %.sgml): Use $(DOCBOOK2HTML).
4406 * doc/Makefile.in: Regenerate.
4407 * example/Makefile.in: Likewise.
4408 * testsuite/Makefile.in: Likewise.
4409 * testsuite/libdejagnu/Makefile.in: Likewise.
4412 2004-02-08 Daniel Jacobowitz <drow@mvista.com>
4414 * baseboards/cf.exp: Use -T instead of -Wl,-T for ldscript.
4415 * baseboards/fr30-elf.exp, baseboards/frv-elf.exp,
4416 baseboards/h8300.exp, baseboards/i960-cyclone.exp,
4417 baseboards/i960-sim.exp, baseboards/m32r-elf.exp,
4418 baseboards/mips-idt.exp, baseboards/mips-lnews-sim.exp,
4419 baseboards/mips-lsi-sim.exp, baseboards/mips64vr4100-sim.exp,
4420 baseboards/op50n.exp, baseboards/rom68k-idp.exp,
4421 baseboards/sh-hms.exp, baseboards/tx39-dve.exp,
4422 baseboards/vr4100-ddb.exp, baseboards/vr4100-sim.exp,
4423 baseboards/vr4111-sim.exp, baseboards/vr4300-ddb.exp,
4424 baseboards/vr4300-sim.exp, baseboards/vr4300.exp,
4425 baseboards/vr5000-ddb.exp: Likewise.
4427 2004-02-08 Ben Elliston <bje@wasabisystems.com>
4429 * runtest: Terminate with an error if expect cannot be found.
4432 2004-02-08 Ben Elliston <bje@wasabisystems.com>
4434 * configure.ac: Use AC_PATH_PROG to find expect(1).
4435 (DJ_AC_PATH_TCLSH): Remove unneeded invocation.
4436 * acinclude.m4 (DJ_AC_PATH_TCLSH): Remove.
4437 (DJ_AC_STL): Likewise.
4438 * configure: Regenerate.
4439 * aclocal.m4: Likewise.
4440 * configure: Likewise.
4441 * Makefile.in: Likewise.
4442 * doc/Makefile.in: Likewise.
4443 * example/Makefile.in: Likewise.
4444 * testsuite/Makefile.in: Likewise.
4445 * testsuite/libdejagnu/Makefile.in: Likewise.
4448 2004-02-08 Ben Elliston <bje@wasabisystems.com>
4450 * runtest.1: Remove any mention of mondfe.
4452 2004-02-08 Ben Elliston <bje@wasabisystems.com>
4454 * TODO: Add an item about timeouts.
4456 2004-02-08 Daniel Jacobowitz <drow@mvista.com>
4458 * baseboards/basic-sim.exp: Set gdb,do_reload_on_run.
4460 2004-02-08 Ben Elliston <bje@wasabisystems.com>
4462 * lib/standard.exp: Tidy.
4464 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4466 * Makefile.am (pkgdata_SCRIPTS): Remove lib/mondfe, lib/xsh.exp.
4467 (config_SCRIPTS): Remove udi.exp, vrtx.exp.
4468 (baseboard_SCRIPTS): Remove a29k-udi.exp.
4469 * Makefile.in: Regenerate.
4470 * baseboards/a29k-udi.exp: Remove.
4471 * baseboards/dos.exp: Update comments.
4472 * config/udi.exp: Remove.
4473 * config/vrtx.exp: Remove.
4474 * doc/overview.sgml: Update. Don't mention mondfe and xsh support.
4475 * doc/ref.sgml: Likewise.
4476 * doc/user.sgml: Likewise.
4477 * lib/mondfe.exp: Remove.
4478 * lib/xsh.exp: Likewise.
4479 * lib/remote.exp: Don't load mondfe.exp or xsh.exp.
4480 * packaging/pkg/prototype: Update.
4483 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4485 * Makefile.am (rpmspec): Remove.
4486 (rpm): Additionally depend on dejagnu.spec.
4487 ($(PKGDIR)/dejagnu): New target that installs DejaGnu into this
4488 directory. This saves duplicated code in the solpkg and hpdepot
4490 (solpkg): Depend on $(PKGDIR)/dejagnu.
4491 (hpdepot): Likewise.
4492 * Makefile.in: Regenerate.
4494 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4496 * Makefile.am (RUNTEST, RUNTESTDEFAULTFLAGS): Remove.
4497 * Makefile.in: Regenerate.
4498 * testsuite/Makefile.am (CLEANFILES): Remove.
4499 (RUNTESTDEFAULTFLATS): Pass --srcdir and RUNTEST=$(RUNTEST).
4500 * testsuite/Makefile.in: Regenerate.
4502 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4504 * lib/util-defs.exp: Move from here ..
4505 * testsuite/lib/util-defs.exp: .. to here.
4506 * Makefile.am (EXTRA_DIST): Remove lib/util-defs.exp.
4507 * Makefile.in: Regenerate.
4508 * testsuite/Makefile.am (EXTRA_DIST): Add lib/util-defs.exp.
4509 * testsuite/Makefile.in: Regenerate.
4510 * doc/ref.sgml (File Map): Remove util-defs.exp.
4511 * packaging/pkg/prototype: Update file list.
4513 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4515 * NEWS: Document changes since 1.4.4.
4517 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4519 * example/Makefile.am (check-recursive): Remove target.
4520 * example/Makefile.in: Regenerate.
4522 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4524 * dejagnu.h: Conform with GNU coding standard.
4526 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4528 * Makefile.am (PKGING): Remove.
4529 (PACKAGING_METAFILES): Update accordingly.
4530 (CLEANFILES, check-DEJAGNU): Remove.
4531 (tarball): Remove; use `dist'.
4532 (deb): Update target recipe to use `make dist'.
4534 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4536 * Clean.tcl: Remove.
4538 * Makefile.am (SUBDIRS): Add testsuite, example directories.
4539 (EXTRA_DIST): Define.
4540 (pkgdata_SCRIPTS): Add lib/*.exp files.
4541 (DATE, TCLSH): Remove.
4542 (configdir, config_DATA, config_SCRIPTS): Define.
4543 (baseboarddir, baseboard_DATA, baseboard_SCRIPTS): Likewise.
4544 (pkgdata_DATA): Likewise.
4545 (djlibexecdir, djlibexec_SCRIPTS): Likewise.
4546 (PKGING, PACKAGING_METAFILES): New macros.
4547 (clean-local): Remove.
4548 (rpm): Depend on dist.
4550 (dist-hook): Remove.
4551 (lib_dest, lib_files): Likewise.
4552 (baseboard_dest, baseboard_files): Likewise.
4553 (include_dest, config_dest, config_files): Likewise.
4554 (install-data-local): Likewise.
4555 (uninstall-local): Likewise.
4556 (site.exp): Likewise.
4557 * Makefile.in: Regenerate.
4559 * testsuite/Makefile.am (all, all-am, etcetera): Remove.
4561 (EXTRA_DIST): Define.
4562 (site.exp): Remove target.
4563 * testsuite/Makefile.in: Regenerate.
4564 * testsuite/libdejagnu/Makefile.am (EXTRA_DIST): Define.
4565 (noinst_PROGRAMS): Rename from this ..
4566 (check_PROGRAMS): .. to this.
4567 * testsuite/libdejagnu/Makefile.in: Regenerate.
4569 * doc/Makefile.am (man_MANS): Rename from this ..
4570 (dist_man_MANS): .. to this.
4571 (info_TEXINFOS): Define.
4572 (TARGETS): Remove overview.rtf.
4573 (EXTRA_DIST): Define.
4574 (%.rtf: %.sgml): Remove rule.
4575 (%.gif: %.fig): Likewise.
4576 (%.epsi: %.eps): Likewise.
4577 (%.eps: %.fig): Likewise.
4578 (clean, realclean, distclean): Remove.
4579 (install-docs): Don't install overview.rtf.
4580 * doc/Makefile.in: Regenerate.
4581 * doc/texinfo.tex: New file.
4583 * example/calc/Makefile.am (noinst_PROGRAMS): Rename from this ..
4584 (check_PROGRAMS): .. to this.
4585 (EXTRA_DIST): Add test cases and calc.1 man page.
4586 * example/calc/Makefile.in: Regenerate.
4587 * example/calc/aclocal.m4: Likewise.
4588 * example/calc/configure: Likewise.
4589 * example/calc/stamp-h.in: Remove.
4590 * example/hello/Makefile.am (bin_PROGRAMS): Rename from this ..
4591 (check_PROGRAMS): .. to this.
4592 (EXTRA_DIST): Define.
4593 * example/hello/Makefile.in: Regenerate.
4594 * example/hello/aclocal.m4: Likewise.
4595 * example/hello/configure: Likewise.
4596 * example/hello/testsuite/Makefile.am (EXTRA_DIST): Define.
4597 * example/hello/testsuite/Makefile.in: Regenerate.
4599 2004-02-07 Ben Elliston <bje@wasabisystems.com>
4601 * configure.ac: Remove commented out code.
4602 * configure: Regenerate.
4604 2004-02-06 Ben Elliston <bje@wasabisystems.com>
4608 2004-02-06 Ben Elliston <bje@wasabisystems.com>
4610 * INSTALL: Import latest version.
4611 * depcomp: Likewise.
4612 * install-sh: Likewise.
4613 * missing: Likewise.
4615 2004-02-06 Ben Elliston <bje@wasabisystems.com>
4617 * configure.in: Rename from this ..
4618 * configure.ac: .. to this. Require Autoconf 2.50.
4619 * Makefile.in: Regenerate.
4620 * doc/Makefile.in: Likewise.
4621 * example/Makefile.in: Likewise.
4622 * testsuite/Makefile.in: Likewise.
4623 * testsuite/libdejagnu/Makefile.in: Likewise.
4625 2004-02-06 Ben Elliston <bje@wasabisystems.com>
4627 * lib/target.exp (prune_warnings): Add spaces where required in
4628 NetBSD warnings. Supersedes a patch in pkgsrc's devel/dejagnu.
4630 2004-02-05 Ben Elliston <bje@wasabisystems.com>
4632 * config.guess: Update to current revision.
4633 * config.sub: Likewise.
4635 2004-02-04 Ben Elliston <bje@wasabisystems.com>
4637 * configure.in (AC_NO_EXECUTABLES): Remove.
4638 * configure: Rebuild with Autoconf 2.59.
4639 * acinclude.m4 (DJ_AC_STL): Quote macro name to appease aclocal.
4640 (DJ_AC_PATH_TCLSH): Likewise.
4641 (DJ_AC_PATH_DOCBOOK): Likewise.
4642 * aclocal.m4: Rebuild.
4643 * Makefile.in: Rebuild with Automake 1.8.2.
4644 * doc/Makefile.in: Likewise.
4645 * example/Makefile.in: Likewise.
4646 * testsuite/Makefile.in: Likewise.
4647 * testsuite/libdejagnu/Makefile.in: Likewise.
4649 2004-01-30 Ben Elliston <bje@wasabisystems.com>
4651 Import orphaned patches from sources.redhat.com:
4653 2002-05-02 Fernando Nasser <fnasser@redhat.com>
4654 * doc/dejagnu.texi: Document KFAIL and KPASS.
4656 2002-02-20 Richard Henderson <rth@redhat.com>
4657 * lib/target.exp (prune_warnings): Revert early "In function"
4658 strip, as this breaks g++.dg tests. Match dangerous regexp
4659 without the "In function" header.
4661 2002-02-09 Richard Henderson <rth@redhat.com>
4662 * lib/target.exp (prune_warnings): Strip "In function" etc early.
4663 Adjust "dangerous" regexp for glibc's tmpnam warning.
4665 2001-09-10 Jim Blandy <jimb@redhat.com>
4666 * baseboards/rom68k-idp.exp: Use -Tidpgdb.ld as the linker script,
4667 so we get the version of the `outbyte' function that does console
4668 output in a way that GDB's rom68k target recognizes. Note that
4669 the board can now do output.
4671 2000-04-25 Felix Lee <flee@cygnus.com>
4672 * baseboards/tx39-sim.exp: Use idt, not dve linker script. Delete
4673 misleading comments and null statements.
4675 2004-01-30 Ben Elliston <bje@wasabisystems.com>
4677 * DejaGnu 1.4.4 released.
4679 2004-01-27 Ben Elliston <bje@wasabisystems.com>
4681 * Makefile.am (tarball): Depend on book1.html, not overview.html.
4682 Don't echo needless messages. Portably copy the source tree to
4683 dejagnu-${VERSION}. Portably copy documentation files from the
4684 source tree to the distribution directory. Don't copy RPM-related
4685 files -- leave that to the rpm target.
4686 (snapshot): Remove target.
4687 (overview.html): Rename target from this ..
4688 (book1.htm): .. to this.
4689 (rpm): Portably copy tar file to SOURCES directory.
4690 (deb): Depend on book1.html, not overview.html.
4691 (dist-hook): Depend on book1.html, not overview.html.
4692 * Makefile.in: Rebuild.
4693 * doc/Makefile.am (TARGETS): Depend on book1.html.
4694 (book1.html): Depend on html/book1.html.
4695 (overview.dvi): Remove target.
4696 * doc/Makefile.in: Rebuild.
4698 2004-01-27 Ben Elliston <bje@wasabisystems.com>
4700 * Clean.tcl: Run tclsh via /usr/bin/env for portability.
4701 (cleanfiles): Concatenate regular filenames that match .*.
4703 2004-01-12 Ben Elliston <bje@wasabisystems.com>
4705 * baseboards/frv-sim.exp: Remove reference to devo/sim.
4707 2004-01-27 Ben Elliston <bje@wasabisystems.com>
4709 * doc/overview: Remove all files.
4711 2003-12-03 Ben Elliston <bje@wasabisystems.com>
4713 * testsuite/runtest.all/utils.test: Fix a test for proc find which
4714 assumed that "subsubfile1" would appear at the end of the returned
4715 list. Adjust to use a more robust regular expression.
4717 2003-11-26 Ben Elliston <bje@wasabisystems.com>
4719 * doc/overview.sgml (version): Update.
4720 * doc/overview/installation.html: Likewise.
4722 * packaging/rpm/dejagnu.spec: Update version numbers throughout.
4723 * packaging/pkg/pkginfo: Likewise.
4724 * packaging/depot/dejagnu.psf: Likewise.
4726 2003-10-25 Ben Elliston <bje@wasabisystems.com>
4728 * runtest.exp (frame_version): Bump version.
4729 * configure.in (AM_INIT_AUTOMAKE): Likewise.
4730 * configure: Regenerate.
4732 2003-10-16 Rob Savoye <rob@welcomehome.org>
4734 * packaging/prototype: Remove sh-hms-sim.exp, add sh-sim.
4736 2003-10-13 Ben Elliston <bje@wasabisystems.com>
4738 * baseboards/sh-hms-sim.exp: Remove. Replaced by sh-sim.exp.
4740 2003-10-11 Corinna Vinschen <vinschen@redhat.com>
4742 * baseboards/sh-sim.exp: New file.
4744 2003-10-11 Ben Elliston <bje@wasabisystems.com>
4747 * AUTHORS: Don't list maintainers, reference MAINTAINERS instead.
4749 2003-10-08 Ben Elliston <bje@wasabisystems.com>
4751 * i960glue.c: Remove.
4752 * packaging/pkg/prototype: Remove i960glue.c.
4754 2003-10-07 Ben Elliston <bje@wasabisystems.com>
4756 * contrib/README: Remove.
4757 * contrib/testit: Remove bitrotten script.
4758 * contrib/test-g++: Likewise.
4759 * contrib/test-tool: Likewise.
4761 2003-08-23 Ben Elliston <bje@wasabisystems.com>
4764 * contrib/README: Bring up to date.
4766 2003-08-23 Corinna Vinschen <vinschen@redhat.com>
4768 * config/sid.exp: Add gdb settings to use no hardware watchpoints.
4770 2003-08-23 Ben Elliston <bje@wasabisystems.com>
4772 * README: Update section on reporting bugs.
4774 2003-08-22 Ben Elliston <bje@wasabisystems.com>
4776 * lib/kermit.exp: Document procs.
4777 * lib/ftp.exp: Likewise.
4779 2003-08-19 Ben Elliston <bje@wasabisystems.com>
4781 * contrib/testit: Run wish via /usr/bin/env for portability.
4783 2003-08-18 Ben Elliston <bje@wasabisystems.com>
4785 * Makefile.am: Tidy comments and unused command lines.
4786 * Makefile.in: Regenerate.
4787 * testsuite/libdejagnu/Makefile.in: Likewise.
4789 * contrib/bluegnu2.0.3: Remove unsupported subtree.
4791 2003-08-18 Ben Elliston <bje@wasabisystems.com>
4793 * MAINTAINERS: New file.
4795 2003-08-17 Ben Elliston <bje@wasabisystems.com>
4797 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove empty variable.
4798 * doc/Makefile.in: Regenerate.
4800 2003-08-16 Ben Elliston <bje@wasabisystems.com>
4802 * doc/overview.sgml (overview): Start overhauling chapter.
4804 * doc/README.Writers: New document on style conventions.
4805 * doc/ref.sgml: Replace "test suite" with "testsuite" throughout.
4806 * doc/user.sgml: Likewise.
4807 * doc/overview.sgml: Likewise.
4808 * doc/dejagnu.texi (Design Goals): Change "Deja Gnu" to "DejaGnu".
4810 2003-08-12 Ben Elliston <bje@wasabisystems.com>
4812 * Makefile.am (tarball): Update path to dejagnu.spec.
4813 (rpmspec): Likewise.
4814 (deb): Likewise, update path to package metafiles.
4816 (hpdepot): Likewise.
4817 * Makefile.in: Regenerate.
4818 * aclocal.m4: Likewise.
4819 * configure: Likewise.
4820 * doc/Makefile.in: Likewise.
4821 * example/Makefile.in: Likewise.
4822 * testsuite/Makefile.in: Likewise.
4823 * deb: Move from here ..
4824 * packaging/deb: .. to here.
4825 * redhat: Move from here ..
4826 * packaging/rpm: .. to here.
4827 * depot: Move from here ..
4828 * packaging/depot: .. to here.
4829 * pkg: Move from here ..
4830 * packaging/pkg: .. to here.
4832 * testsuite/libdejagnu/Makefile.am (CXXFLAGS): Rename from this ..
4833 (AM_CXXFLAGS): .. to this, in order to suppress Automake warning.
4834 * testsuite/libdejagnu/Makefile.in: Regenerate.
4836 2003-08-07 Ben Elliston <bje@wasabisystems.com>
4838 * config/ddb.exp (${board}_init): Fix thinko: use Tcl incr command
4839 to increment count rather than count++ as in C.
4841 2003-08-06 Ben Elliston <bje@wasabisystems.com>
4843 * lib/remote.exp: Replace "TCL" with "Tcl".
4845 2003-07-30 Ben Elliston <bje@wasabisystems.com>
4847 * doc/runtest.1: Replace "TCL" with "Tcl".
4848 Make last revision date current.
4850 2003-07-29 Ben Elliston <bje@wasabisystems.com>
4852 * doc/overview.sgml: Replace "NT" with "Windows", correct Cygwin
4853 URLs and other stylistic improvements.
4854 * doc/ref.sgml: Likewise.
4855 * doc/user.sgml: Likewise.
4857 2003-07-25 Mike Stump <mrs@apple.com>
4859 * lib/target.exp (prune_warnings): Handle "nfs server .* not
4860 responding" and "nfs server .* is alive again".
4862 2003-07-20 Ben Elliston <bje@wasabisystems.com>
4864 * config.guess: Update to most recent version.
4865 * config.sub: Ditto.
4866 * AUTHORS: Add self to list of maintainers.
4868 2003-07-25 Jim Dein <jdein@deinji5.apple.com> (RIP)
4870 * lib/utils.exp (find): Fix double recursion bug.
4872 2002-02-25 Jackie Smith Cashion <jsmith@redhat.com>
4874 * baseboards/am33_2.0-libremote.exp: New file.
4876 2000-11-21 Drew Moseley <dmoseley@redhat.com>
4878 * baseboards/mn10300-cygmon.exp: Use the am33-2 flag for the
4881 2000-08-10 Drew Moseley <dmoseley@cygnus.com>
4883 * baseboards/mn10300-cygmon.exp: Added support for Cygmon based
4886 2003-06-13 Phil Edwards <pme@devphil.com>
4888 * baseboards/mips64-sim.exp, baseboards/mips-sim.exp,
4889 baseboards/mips-sim-idt32.exp, baseboards/mips-sim-idt64.exp: Use
4890 only -T[linker] instead of -Wl,-T[linker].
4892 2003-06-13 Jason Thorpe <thorpej@wasabisystems.com>
4894 * lib/target.exp (prune_warnings): Add two more linker
4895 warning patterns for warnings generated by modern verions
4898 2003-05-12 H.J. Lu <hongjiu.lu@intel.com>
4900 * lib/libgloss.exp (build_wrapper): Add -Wl,-wrap,_exit.
4902 2003-05-09 H.J. Lu <hongjiu.lu@intel.com>
4904 * runtest: Fix a typo.
4906 2003-05-03 Nitin Dhavale <nitinpdhavale@indiatimes.com>
4908 * doc/user.sgml: Clarify how to set the verbose option.
4910 2003-03-28 Chris Demetriou <cgd@broadcom.com>
4912 * lib/framework.exp (check_conditional_xfail): Adjust so that
4913 an empty 'includes' list matches all sets of flags.
4914 * doc/dejagnu.texi: Document the above.
4915 * doc/ref.sgml: Likewise.
4917 2003-03-27 David Heine <dlheine@tensilica.com>
4919 * baseboards/xtensa-sim.exp: Fix a syntax error.
4921 2003-03-16 Rob Savoye <rob@direwolf.welcomehome.org>
4923 * lib/unix.exp: Preserve the value of LD_LIBRARY_PATH, rather
4924 than stomp on it. This is based on a patch from Brendan Conoboy
4926 * Most files: Update copyright dates.
4928 2003-03-13 Mike Stump <mrs@apple.com>
4930 * lib/dg.exp(dg-test): Add compiler flags to testcase name, to
4931 help ensure uniqueness.
4933 2003-03-05 Alexandre Oliva <aoliva@redhat.com>
4935 * lib/remote.exp (standard_download, standard_upload): Support
4936 nfsdir and nfsroot_server.
4938 See ChangeLog-1992 for earlier changes.