diff options
author | Julio Merino <jmmv@FreeBSD.org> | 2014-02-14 14:41:25 +0000 |
---|---|---|
committer | Julio Merino <jmmv@FreeBSD.org> | 2014-02-14 14:41:25 +0000 |
commit | 8fee91db34c6746951ced9a348b36c5b758d576e (patch) | |
tree | a986bed64ee725de3eb52c5f0838f6c59b8aa7d9 /atf-sh | |
parent | bf351e294647b19b2abb7e59344e619866206e71 (diff) |
Import atf-0.19:vendor/atf/atf-0.19
Experimental version released on February 7th, 2014.
This is the last release to bundle the code for the deprecated tools.
The next release will drop their code and will stop worrying about
backwards compatibility between the ATF libraries and what the old tools
may or may not support.
If you still require the old tools for some reason, grab a copy of the
'tools' directory now. The code in this directory is standalone and
does not depend on any internal details of atf-c++ any longer.
* Various fixes and improvements to support running as part of the FreeBSD
test suite.
* Project hosting moved from Google Code (as a subproject of Kyua) to
GitHub (as a first-class project). The main reason for the change is
the suppression of binary downloads in Google Code on Jan 15th, 2014.
See https://github.com/jmmv/atf/
* Removed builtin help from atf-sh(1) and atf-check(1) for simplicity
reasons. In other words, their -h option is gone.
* Moved the code of the deprecated tools into a 'tools' directory and
completely decoupled their code from the internals of atf-c++. The
reason for this is to painlessly allow a third-party to maintain a
copy of these tools after we delete them because upcoming changes to
atf-c++ would break the stale tools.
Notes
Notes:
svn path=/vendor/atf/dist/; revision=261886
svn path=/vendor/atf/atf-0.19/; revision=261887; tag=vendor/atf/atf-0.19
Diffstat (limited to 'atf-sh')
-rw-r--r-- | atf-sh/atf-check.cpp | 2 | ||||
-rw-r--r-- | atf-sh/atf-sh.cpp | 2 | ||||
-rw-r--r-- | atf-sh/integration_test.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/atf-sh/atf-check.cpp b/atf-sh/atf-check.cpp index 66f6c4c9ef99..b08c020e95d5 100644 --- a/atf-sh/atf-check.cpp +++ b/atf-sh/atf-check.cpp @@ -724,7 +724,7 @@ const char* atf_check::m_description = "atf-check executes given command and analyzes its results."; atf_check::atf_check(void) : - app(m_description, "atf-check(1)", "atf(7)"), + app(m_description, "atf-check(1)"), m_xflag(false) { } diff --git a/atf-sh/atf-sh.cpp b/atf-sh/atf-sh.cpp index d7bc7fc82bc0..e985e79ab96f 100644 --- a/atf-sh/atf-sh.cpp +++ b/atf-sh/atf-sh.cpp @@ -122,7 +122,7 @@ const char* atf_sh::m_description = "system sh(1) with the atf-sh library."; atf_sh::atf_sh(void) : - app(m_description, "atf-sh(1)", "atf(7)") + app(m_description, "atf-sh(1)") { } diff --git a/atf-sh/integration_test.sh b/atf-sh/integration_test.sh index 55bb2784edf2..452c958ccc36 100644 --- a/atf-sh/integration_test.sh +++ b/atf-sh/integration_test.sh @@ -38,7 +38,7 @@ no_args_body() { cat >experr <<EOF atf-sh: ERROR: No test program provided -atf-sh: Type \`atf-sh -h' for more details. +atf-sh: See atf-sh(1) for usage details. EOF atf_check -s eq:1 -o ignore -e file:experr atf-sh } |