summaryrefslogtreecommitdiff
path: root/devel/dejagnu
AgeCommit message (Collapse)AuthorFilesLines
2013-06-16Update to 1.5.1 (The date below is corrected).mef4-325/+6
Two patches are removed, those are now included in upstream patches/patch-Makefile.am patches/patch-Makefile.in ----------- 2013-06-08 Ben Elliston <bje@gnu.org> * DejaGnu 1.5.1 released. 2013-06-08 Ben Elliston <bje@gnu.org> * configure.ac (AC_INIT): Bump version to 1.5.1. * runtest.exp (frame_version): Likewise. * configure: Regenerate. * Makefile.in: Regenerate with automake 1.13. * aclocal.m4: Likewise.
2013-06-10Bump dejagnu 1.4.4 to 1.5mef7-95/+340
------------------------- patches/patch-ab Upstream now includes this change, removed. patches/patch-ac Doc generation has changed and doc directory does not exist any more, removed. patches/patch-Makefile.am *.exp files were execution bit set because of target name, patch added. has -SCRIPT string. Now correcting to -DATA patches/patch-Makefile.in Generated by automake-1.11.1 from Makefile.am, patch added. ------------------------- Changes since 1.4.4: 1. The runtest.1 man page has been brought up to date. 2. The Docbook/SGML documentation files were removed in favour of the Docbook/XML documentation. The Texinfo source for the Info pages is now automatically generated from the Docbook source. 3. The Makefile structure has been substantially simplified. There is now a single top-level Makefile.am. The use of recursive make has been eliminated. 4. lib/mondfe.exp and lib/xsh.exp have been removed. Users requiring these communication modes can still use the DejaGnu 1.4 branch or can contact dejagnu@gnu.org to discuss reinstating these files. 5. The configure script now ensures that Expect is installed and that it is linked against Tcl 8.3 or greater. 6. The runtest program now gracefully handles the possibility of the expect binary vanishing after DejaGnu has been installed (for example, by the user altering their PATH). 7. The user-visible utility procedures `absolute', `prune', `psource' and `slay' are deprecated and will be removed in the next release. If a testsuite uses any of these procedures, a copy of the procedure should be made and placed in the lib directory of the testsuite.
2012-10-31Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg1-7/+1
2008-06-16Fix DESTDIR.joerg3-5/+14
2007-12-08* destdir supportobache4-4/+66
* fix permission * install documentation. Bump PKGREVISION.
2007-12-08Back out previous commit, related to PR 37477.obache1-3/+4
Only runtime dependency on 'expect' command included in lang/tcl-expect package. No need to buildlink to lang/tcl-expect.
2007-12-06tcl-expect already have buildlink3.mk for a long time.obache1-4/+3
Noted by bharder in PR 37477. Bump PKGREVISION snce depended tcl-expect version is bumped.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2005-02-23Add RMD160 digests.agc1-1/+2
2004-02-20Correct PLIST.kristerw2-5/+6
Bump PKGREVISION.
2004-01-31Update dejagnu to 1.4.4.kristerw5-34/+23
Changes from 1.4.3 include: 1. New XML output option, so test results can be loaded into a database. 2. Support for the KFAIL/KPASS (known failures). 6. BlueGnu has been removed from the contrib directory. 7. The contrib/test* scipts were bitrotten and have been removed. If you still want copies of these, they can be found in the previous DejaGnu release. 8. i960glue.c has been removed.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-14Bump to 1.4.3nb2, apply this patch from the dejagnu onthorpej3-3/+17
gcc.gnu.org: 2003-06-13 Jason Thorpe <thorpej@wasabisystems.com> * lib/target.exp (prune_warnings): Add two more linker warning patterns for warnings generated by modern verions of NetBSD.
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2002-11-25Update dejagnu to 1.4.3nb1.kristerw3-2/+16
Fix bug that made tests organized in deep directory structures (e.g. the gcc testsuite) be run multiple times.
2002-09-27Update devel/dejagnu to version 1.4.3.kristerw4-21/+24
Changes since 1.4.1 include: - New XML output option, so test results can be loaded into a database. - Support for the KFAIL/KPASS (known failures). This is mostly oriented towards GDB testing. - New tutorial chapter. - Test case builds with either libstdc++-v3 (as used by gcc-3.0.x) or the older v2.(as used by gcc-2.95.x)
2002-08-01Change MAINTAINER from tv at netbsd dot org to packages at netbsd dot orgjschauma1-2/+2
after consulting with Todd. Any volunteers for any of these packages?
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-05-31MD5--, SHA1++ (MD4 and SHA2?)wiz1-3/+3
2001-05-30Fix thinko in @dirrm syntax.tv1-5/+5
2001-05-30 DejaGnu is a framework for testing other programs. Its purpose is totv5-0/+207
provide a single front end for all tests. Beyond this, DejaGnu offers several advantages for testing: - The flexibility and consistency of the DejaGnu framework make it easy to write tests for any program. - DejaGnu provides a layer of abstraction which makes all tests (if correctly written) portable to any host or target where a program must be tested. For instance, a test for GDB can run (from any Unix based host) on any target architecture supported by DejaGnu. Currently DejaGnu runs tests on several single board computers, whose operating software ranges from just a boot monitor to a full-fledged, Unix-like realtime OS. - DejaGnu is written in expect, which in turn uses Tcl (Tool command language). The framework comprises two parts: the testing framework and the testsuites themselves. Tests are usually written in expect using Tcl.