aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2024-04-13Update web site addresses in manualJacob Bachmeyer1-3/+6
2023-12-12Use `test_timeout' consistently across protocolsMaciej W. Rozycki1-1/+2
The `test_timeout' global parameter was added with commit 73db65f53795, however for the `unix' protocol only and then only in the local case. Update the remote case of the `unix' protocol, other protocols that use various timeout sources, and the `qemu' board to take any `test_timeout' setting into account as appropriate. Amend the manual accordingly. * baseboards/qemu.exp (qemu_load): Respect global `test_timeout' setting. * config/gdb-comm.exp (gdb_comm_load): Likewise. * config/gdb_stub.exp (gdb_stub_load): Likewise. * config/sim.exp (sim_load): Likewise. * config/unix.exp (unix_load): Likewise, in the remote case. * doc/dejagnu.texi (Local configuration file): Update accordingly.
2023-11-22Document the grand totals reported by report-card toolJacob Bachmeyer1-1/+7
2022-12-20Add support for reporting errors and warnings in dejagnu.hJacob Bachmeyer1-1/+33
2022-12-20Add support for errors and warnings in the unit test protocolJacob Bachmeyer1-0/+12
2022-11-30Document the recent C++ API improvements and the rest of the C++ APIJacob Bachmeyer1-13/+59
2022-11-30Document use of "DG_" and "DG__" prefixes in dejagnu.hJacob Bachmeyer1-9/+17
2022-11-29Add NOTE function to C++ unit test APIJacob Bachmeyer1-0/+8
2022-11-29Fix incorrect documentationJacob Bachmeyer1-4/+6
2022-11-28Document the dejagnu.h functions for the UNSUPPORTED statusJacob Bachmeyer1-0/+16
2022-11-28Add UNSUPPORTED test result to DejaGnu unit test protocolJacob Bachmeyer1-0/+2
2022-11-26Add explicit end-of-test marker to DejaGnu unit test protocolJacob Bachmeyer1-1/+7
2022-03-29Change quotes around 'make check' in manual headingsJacob Bachmeyer1-2/+2
Use of only the simple straight quotes causes TeX output to look bad.
2021-06-16Merge fixes from 1.6.3 release branchJacob Bachmeyer1-2/+2
Conflicts: ChangeLog configure configure.ac doc/version.texi runtest.exp
2021-05-22Update doc/version.texi to match actual datestampJacob Bachmeyer1-2/+2
2021-05-22Update version numbers for 1.6.3 release candidate 5Jacob Bachmeyer1-2/+2
2021-04-28Update version numbers for 1.6.3 release candidate 4Jacob Bachmeyer1-2/+2
2021-04-08Update version numbers for 1.6.3 release candidate 3Jacob Bachmeyer1-2/+2
2021-04-08Regenerate build system filesJacob Bachmeyer1-2/+2
2021-03-30Update version numbers for 1.6.3 release candidate 2Jacob Bachmeyer1-2/+2
2021-03-22Update version.texiJacob Bachmeyer1-2/+2
2021-03-22Update version numbers for 1.6.3 release branchJacob Bachmeyer1-4/+4
2021-03-22Update version numbers for continued developmentJacob Bachmeyer1-4/+4
2020-12-27Remove noise word "api" from "testsuite can call api" entrypointJacob Bachmeyer1-6/+6
2020-11-17Fix errors in manual reported in PR44636Jacob Bachmeyer1-21/+25
2020-11-17Mention GNU Automake manual for more informationJacob Bachmeyer1-1/+2
2020-08-31Add GFDL notice to doc/runtest.1Jacob Bachmeyer1-1/+6
2020-08-18Fix typo in copyright notice in dejagnu-help manpageJacob Bachmeyer1-1/+1
2020-08-18Ignore files generated by texi2dviJacob Bachmeyer1-0/+6
2020-08-12Document unit testing protocol and APIJacob Bachmeyer1-43/+155
2020-08-02Add warnings about synchronization with the tested programJacob Bachmeyer1-41/+80
2020-07-06Merge branch 'PR41918'Jacob Bachmeyer2-3/+5
Conflicts: ChangeLog
2020-07-06Merge branch 'new-api-for-1.6.3'Jacob Bachmeyer1-3/+65
Conflicts: ChangeLog NEWS doc/dejagnu.texi
2020-06-26Document use of UNRESOLVED results to mark test script crashesJacob Bachmeyer1-0/+5
2020-06-26Withdraw proposed --keep_going and --no_keep_going optionsJacob Bachmeyer2-14/+0
2020-06-24Add option to stop immediately at Tcl errors and continue by defaultJacob Bachmeyer2-3/+6
2020-06-22Add "linker=" option to target_compile to support testingJacob Bachmeyer1-1/+4
2020-06-20Document find_* procedures imported from GDB testsuiteJacob Bachmeyer1-2/+45
2020-06-20Add Go support to default_target_compileTom Tromey1-0/+8
This adds Go support to default_target_compile. This comes from this gdb patch: commit a766d390bb857383a5f9ae80a102e1f8705f4c2e Author: Doug Evans <dje@google.com> Date: Wed Apr 25 14:07:23 2012 +0000 Initial pass at Go language support.
2020-06-20Add Rust support to default_target_compileTom Tromey1-0/+5
This adds support for the Rust language to default_target_compile. This comes from a gdb patch: commit 67218854b1987d89593ccaf5feaf5b29b1b976f2 Author: Tom Tromey <tom@tromey.com> Date: Tue Apr 26 19:38:43 2016 -0600 Update gdb test suite for Rust [...] 2016-05-17 Tom Tromey <tom@tromey.com> Manish Goregaokar <manishsmail@gmail.com>
2020-06-20Add early_flags to default_target_compileTom Tromey1-1/+4
This adds early_flags support to default_target_compile. This originated in this gdb patch: commit 6ebea266fd0a7a56c90db3ab6237ff9f6c919747 Author: Doug Evans <dje@google.com> Date: Fri Jul 24 15:24:37 2015 -0700 Workaround debian change to default value of --as-needed. gdb/testsuite/ChangeLog: * lib/future.exp (gdb_default_target_compile): New option "early_flags". * lib/gdb.exp (gdb_compile): Undo debian's change in default of --as-needed. This patch also pulls in the "linker_opts_order" code, though nothing uses it yet. A use will come in a subsequent patch.
2020-06-17Allow testing to continue after an undefined command is calledJacob Bachmeyer2-0/+8
2020-06-10Fix Info node connectivity and formatting mistakeJacob Bachmeyer1-1/+2
2020-06-06Add "testcase group" APIJacob Bachmeyer1-2/+48
2020-06-05Add "testsuite can call api" feature test APIJacob Bachmeyer1-1/+17
2020-05-27Fix node duplicated by merge error in dejagnu.texiJacob Bachmeyer1-14/+0
The previous merge duplicated the "target_link procedure" node.
2020-05-26Merge branch 'patch-0002'Rob Savoye1-4/+175
2020-05-26Add documentation for target_compile procedure.Jacob Bachmeyer1-22/+186
2020-05-26 Document internal procedure, default_linkJacob Bachmeyer1-18/+25
2020-05-25 Establish a default C compiler by evaluating [find_gcc] if no other ↵Jacob Bachmeyer1-2/+4
compiler is given.