summaryrefslogtreecommitdiff
path: root/usr.bin/tar/test
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/tar/test')
-rw-r--r--usr.bin/tar/test/Makefile2
-rw-r--r--usr.bin/tar/test/main.c2
-rw-r--r--usr.bin/tar/test/test.h2
-rw-r--r--usr.bin/tar/test/test_0.c2
-rw-r--r--usr.bin/tar/test/test_basic.c2
-rw-r--r--usr.bin/tar/test/test_copy.c2
-rw-r--r--usr.bin/tar/test/test_getdate.c2
-rw-r--r--usr.bin/tar/test/test_help.c2
-rw-r--r--usr.bin/tar/test/test_option_T.c2
-rw-r--r--usr.bin/tar/test/test_option_q.c2
-rw-r--r--usr.bin/tar/test/test_option_s.c2
-rw-r--r--usr.bin/tar/test/test_patterns.c2
-rw-r--r--usr.bin/tar/test/test_patterns_2.tar.uu2
-rw-r--r--usr.bin/tar/test/test_patterns_3.tar.uu2
-rw-r--r--usr.bin/tar/test/test_patterns_4.tar.uu2
-rw-r--r--usr.bin/tar/test/test_stdio.c2
-rw-r--r--usr.bin/tar/test/test_strip_components.c2
-rw-r--r--usr.bin/tar/test/test_symlink_dir.c2
-rw-r--r--usr.bin/tar/test/test_version.c2
19 files changed, 19 insertions, 19 deletions
diff --git a/usr.bin/tar/test/Makefile b/usr.bin/tar/test/Makefile
index 3880be051d2a..9ad9013673bd 100644
--- a/usr.bin/tar/test/Makefile
+++ b/usr.bin/tar/test/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/tar/test/Makefile,v 1.7.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $
# Where to find the tar sources (for the internal unit tests)
TAR_SRCDIR=${.CURDIR}/..
diff --git a/usr.bin/tar/test/main.c b/usr.bin/tar/test/main.c
index 041b7a0d9e63..6667553a8734 100644
--- a/usr.bin/tar/test/main.c
+++ b/usr.bin/tar/test/main.c
@@ -44,7 +44,7 @@
#undef EXTRA_DUMP /* How to dump extra data */
/* How to generate extra version info. */
#define EXTRA_VERSION (systemf("%s --version", testprog) ? "" : "")
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/main.c,v 1.10.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* "list.h" is simply created by "grep DEFINE_TEST"; it has
diff --git a/usr.bin/tar/test/test.h b/usr.bin/tar/test/test.h
index 6a1e1e8eb007..399d9ce7272e 100644
--- a/usr.bin/tar/test/test.h
+++ b/usr.bin/tar/test/test.h
@@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/tar/test/test.h,v 1.8.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
*/
/* Every test program should #include "test.h" as the first thing. */
diff --git a/usr.bin/tar/test/test_0.c b/usr.bin/tar/test/test_0.c
index d224daaeacc2..9d3572a7dc25 100644
--- a/usr.bin/tar/test/test_0.c
+++ b/usr.bin/tar/test/test_0.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_0.c,v 1.4.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* This first test does basic sanity checks on the environment. For
diff --git a/usr.bin/tar/test/test_basic.c b/usr.bin/tar/test/test_basic.c
index 3fad7545f375..2edb1f9ae0c6 100644
--- a/usr.bin/tar/test/test_basic.c
+++ b/usr.bin/tar/test/test_basic.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_basic.c,v 1.4.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
static void
diff --git a/usr.bin/tar/test/test_copy.c b/usr.bin/tar/test/test_copy.c
index 120d9f39e99c..53ec41b1f587 100644
--- a/usr.bin/tar/test/test_copy.c
+++ b/usr.bin/tar/test/test_copy.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_copy.c,v 1.6.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#define LOOP_MAX 170
diff --git a/usr.bin/tar/test/test_getdate.c b/usr.bin/tar/test/test_getdate.c
index cd6d55a93e6a..33734e65b73a 100644
--- a/usr.bin/tar/test/test_getdate.c
+++ b/usr.bin/tar/test/test_getdate.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_getdate.c,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include <time.h>
diff --git a/usr.bin/tar/test/test_help.c b/usr.bin/tar/test/test_help.c
index c547dbc47994..c630d2384f2b 100644
--- a/usr.bin/tar/test/test_help.c
+++ b/usr.bin/tar/test/test_help.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_help.c,v 1.2.6.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* Test that "--help", "-h", and "-W help" options all work and
diff --git a/usr.bin/tar/test/test_option_T.c b/usr.bin/tar/test/test_option_T.c
index 72dcd541b8d6..42b74cdffe30 100644
--- a/usr.bin/tar/test/test_option_T.c
+++ b/usr.bin/tar/test/test_option_T.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_option_T.c,v 1.5.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $");
static int
touch(const char *fn)
diff --git a/usr.bin/tar/test/test_option_q.c b/usr.bin/tar/test/test_option_q.c
index 1d92dd56963b..6f5de632f9cb 100644
--- a/usr.bin/tar/test/test_option_q.c
+++ b/usr.bin/tar/test/test_option_q.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_option_q.c,v 1.3.6.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_q)
{
diff --git a/usr.bin/tar/test/test_option_s.c b/usr.bin/tar/test/test_option_s.c
index c9a68997428f..9d923fdde111 100644
--- a/usr.bin/tar/test/test_option_s.c
+++ b/usr.bin/tar/test/test_option_s.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_option_s.c,v 1.2.2.2.2.1 2010/12/21 17:09:25 kensmith Exp $");
static int
mkfile(const char *fn, const char *contents)
diff --git a/usr.bin/tar/test/test_patterns.c b/usr.bin/tar/test/test_patterns.c
index 66a4ecf02a5b..e34bb11fc8e1 100644
--- a/usr.bin/tar/test/test_patterns.c
+++ b/usr.bin/tar/test/test_patterns.c
@@ -24,7 +24,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_patterns.c,v 1.9.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_patterns)
{
diff --git a/usr.bin/tar/test/test_patterns_2.tar.uu b/usr.bin/tar/test/test_patterns_2.tar.uu
index 1ed9a7d1aea0..9c3ed15337d4 100644
--- a/usr.bin/tar/test/test_patterns_2.tar.uu
+++ b/usr.bin/tar/test/test_patterns_2.tar.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/tar/test/test_patterns_2.tar.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_patterns_2.tar
M+W1M<"]F;V\O````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
diff --git a/usr.bin/tar/test/test_patterns_3.tar.uu b/usr.bin/tar/test/test_patterns_3.tar.uu
index e8d487ed259b..3b420fcf7568 100644
--- a/usr.bin/tar/test/test_patterns_3.tar.uu
+++ b/usr.bin/tar/test/test_patterns_3.tar.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/tar/test/test_patterns_3.tar.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_patterns_3.tar
M+W1M<"]F;V\O8F%R+P``````````````````````````````````````````
M````````````````````````````````````````````````````````````
diff --git a/usr.bin/tar/test/test_patterns_4.tar.uu b/usr.bin/tar/test/test_patterns_4.tar.uu
index eb89518df453..5932b52c04c6 100644
--- a/usr.bin/tar/test/test_patterns_4.tar.uu
+++ b/usr.bin/tar/test/test_patterns_4.tar.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/tar/test/test_patterns_4.tar.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_patterns_4.tar
M+V9I;&4P,0``````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
diff --git a/usr.bin/tar/test/test_stdio.c b/usr.bin/tar/test/test_stdio.c
index 2d24ae350328..e57e9e51358f 100644
--- a/usr.bin/tar/test/test_stdio.c
+++ b/usr.bin/tar/test/test_stdio.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_stdio.c,v 1.2.6.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_stdio)
{
diff --git a/usr.bin/tar/test/test_strip_components.c b/usr.bin/tar/test/test_strip_components.c
index 38e0e48cac3c..9322d369ec6b 100644
--- a/usr.bin/tar/test/test_strip_components.c
+++ b/usr.bin/tar/test/test_strip_components.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_strip_components.c,v 1.5.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
static int
touch(const char *fn)
diff --git a/usr.bin/tar/test/test_symlink_dir.c b/usr.bin/tar/test/test_symlink_dir.c
index 356f17c45015..b5bdff7fc75f 100644
--- a/usr.bin/tar/test/test_symlink_dir.c
+++ b/usr.bin/tar/test/test_symlink_dir.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_symlink_dir.c,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* tar -x -P should follow existing symlinks for dirs, but not other
diff --git a/usr.bin/tar/test/test_version.c b/usr.bin/tar/test/test_version.c
index 4f249a517b22..2ad611ce2e1d 100644
--- a/usr.bin/tar/test/test_version.c
+++ b/usr.bin/tar/test/test_version.c
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test.h"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/tar/test/test_version.c,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* Test that --version option works and generates reasonable output.