summaryrefslogtreecommitdiff
path: root/usr.bin/cpio/test
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2011-02-16 16:18:46 +0000
committerKen Smith <kensmith@FreeBSD.org>2011-02-16 16:18:46 +0000
commitdec99dafe5763ba1db6950342aa80a634169c083 (patch)
tree1bd9f5a688ac947b00e690c3c69ccb8df203768d /usr.bin/cpio/test
parent045f17e533c0209bbcddcccbbb0192d61ffd6c9c (diff)
Diffstat (limited to 'usr.bin/cpio/test')
-rw-r--r--usr.bin/cpio/test/Makefile2
-rw-r--r--usr.bin/cpio/test/main.c2
-rw-r--r--usr.bin/cpio/test/test.h2
-rw-r--r--usr.bin/cpio/test/test_0.c2
-rw-r--r--usr.bin/cpio/test/test_basic.c2
-rw-r--r--usr.bin/cpio/test/test_format_newc.c2
-rw-r--r--usr.bin/cpio/test/test_gcpio_compat.c2
-rw-r--r--usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu2
-rw-r--r--usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu2
-rw-r--r--usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu2
-rw-r--r--usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu2
-rw-r--r--usr.bin/cpio/test/test_option_B.c2
-rw-r--r--usr.bin/cpio/test/test_option_L.c2
-rw-r--r--usr.bin/cpio/test/test_option_a.c2
-rw-r--r--usr.bin/cpio/test/test_option_c.c2
-rw-r--r--usr.bin/cpio/test/test_option_d.c2
-rw-r--r--usr.bin/cpio/test/test_option_ell.c2
-rw-r--r--usr.bin/cpio/test/test_option_f.c2
-rw-r--r--usr.bin/cpio/test/test_option_f.cpio.uu2
-rw-r--r--usr.bin/cpio/test/test_option_help.c2
-rw-r--r--usr.bin/cpio/test/test_option_m.c2
-rw-r--r--usr.bin/cpio/test/test_option_m.cpio.uu2
-rw-r--r--usr.bin/cpio/test/test_option_t.c2
-rw-r--r--usr.bin/cpio/test/test_option_t.cpio.uu2
-rw-r--r--usr.bin/cpio/test/test_option_t.stdout.uu2
-rw-r--r--usr.bin/cpio/test/test_option_tv.stdout.uu2
-rw-r--r--usr.bin/cpio/test/test_option_u.c2
-rw-r--r--usr.bin/cpio/test/test_option_version.c2
-rw-r--r--usr.bin/cpio/test/test_option_y.c2
-rw-r--r--usr.bin/cpio/test/test_option_z.c2
-rw-r--r--usr.bin/cpio/test/test_owner_parse.c2
-rw-r--r--usr.bin/cpio/test/test_passthrough_dotdot.c2
-rw-r--r--usr.bin/cpio/test/test_passthrough_reverse.c2
-rw-r--r--usr.bin/cpio/test/test_pathmatch.c2
34 files changed, 34 insertions, 34 deletions
diff --git a/usr.bin/cpio/test/Makefile b/usr.bin/cpio/test/Makefile
index 7da5a606226a..85b65467cb78 100644
--- a/usr.bin/cpio/test/Makefile
+++ b/usr.bin/cpio/test/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/cpio/test/Makefile,v 1.4.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
# Where to find the cpio sources (for the internal unit tests)
CPIO_SRCDIR=${.CURDIR}/..
diff --git a/usr.bin/cpio/test/main.c b/usr.bin/cpio/test/main.c
index 5a5175256bb0..be3446314ddf 100644
--- a/usr.bin/cpio/test/main.c
+++ b/usr.bin/cpio/test/main.c
@@ -45,7 +45,7 @@
/* How to generate extra version info. */
#define EXTRA_VERSION (systemf("%s --version", testprog) ? "" : "")
#define KNOWNREF "test_option_f.cpio.uu"
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/cpio/test/main.c,v 1.4.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/cpio/test/test.h b/usr.bin/cpio/test/test.h
index be28dd40760d..dfff49a7e557 100644
--- a/usr.bin/cpio/test/test.h
+++ b/usr.bin/cpio/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/cpio/test/test.h,v 1.3.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/cpio/test/test_0.c b/usr.bin/cpio/test/test_0.c
index d224daaeacc2..ddf0793cee09 100644
--- a/usr.bin/cpio/test/test_0.c
+++ b/usr.bin/cpio/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/cpio/test/test_0.c,v 1.2.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/cpio/test/test_basic.c b/usr.bin/cpio/test/test_basic.c
index a4eb60fa63d6..2424e17d1adb 100644
--- a/usr.bin/cpio/test/test_basic.c
+++ b/usr.bin/cpio/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/cpio/test/test_basic.c,v 1.5.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
static void
verify_files(const char *target)
diff --git a/usr.bin/cpio/test/test_format_newc.c b/usr.bin/cpio/test/test_format_newc.c
index 816f074a6d38..13554d9064ba 100644
--- a/usr.bin/cpio/test/test_format_newc.c
+++ b/usr.bin/cpio/test/test_format_newc.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/cpio/test/test_format_newc.c,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
static int
is_hex(const char *p, size_t l)
diff --git a/usr.bin/cpio/test/test_gcpio_compat.c b/usr.bin/cpio/test/test_gcpio_compat.c
index 767719bb6bca..94e58db10e33 100644
--- a/usr.bin/cpio/test/test_gcpio_compat.c
+++ b/usr.bin/cpio/test/test_gcpio_compat.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/cpio/test/test_gcpio_compat.c,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
static void
unpack_test(const char *from, const char *options, const char *se)
diff --git a/usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu b/usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu
index 745d8ab7851a..e253edcb4556 100644
--- a/usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu
+++ b/usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_gcpio_compat_ref.bin
MQW%9`*IWI('H`^@#`@````U'=YD%````"@!F:6QE```Q,C,T-38W.#D*QW%9
M`*IWI('H`^@#`@````U'=YD)````"@!L:6YK9FEL90``,3(S-#4V-S@Y"L=Q
diff --git a/usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu b/usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu
index df8dde05bd82..e330d72c2bb5 100644
--- a/usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu
+++ b/usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_gcpio_compat_ref.crc
M,#<P-S`R,#`S,S<W86$P,#`P.#%A-#`P,#`P,V4X,#`P,#`S93@P,#`P,#`P
M,C0W,&0Y.3<W,#`P,#`P,#`P,#`P,#`P,#`P,#`P,#4Y,#`P,#`P,#`P,#`P
diff --git a/usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu b/usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu
index 1e29ba907bb4..afe177dc3939 100644
--- a/usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu
+++ b/usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_gcpio_compat_ref.newc
M,#<P-S`Q,#`S,S<W86$P,#`P.#%A-#`P,#`P,V4X,#`P,#`S93@P,#`P,#`P
M,C0W,&0Y.3<W,#`P,#`P,#`P,#`P,#`P,#`P,#`P,#4Y,#`P,#`P,#`P,#`P
diff --git a/usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu b/usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu
index 77989f4aed06..be95848d6628 100644
--- a/usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu
+++ b/usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_gcpio_compat_ref.ustar
M9FEL90``````````````````````````````````````````````````````
M````````````````````````````````````````````````````````````
diff --git a/usr.bin/cpio/test/test_option_B.c b/usr.bin/cpio/test/test_option_B.c
index 80838823f9d6..0a92ea1c5293 100644
--- a/usr.bin/cpio/test/test_option_B.c
+++ b/usr.bin/cpio/test/test_option_B.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/cpio/test/test_option_B.c,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_B)
diff --git a/usr.bin/cpio/test/test_option_L.c b/usr.bin/cpio/test/test_option_L.c
index 79e2adb74a4e..abc03c31be90 100644
--- a/usr.bin/cpio/test/test_option_L.c
+++ b/usr.bin/cpio/test/test_option_L.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/cpio/test/test_option_L.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_L)
{
diff --git a/usr.bin/cpio/test/test_option_a.c b/usr.bin/cpio/test/test_option_a.c
index e7698367f6da..97d2b9a7e40b 100644
--- a/usr.bin/cpio/test/test_option_a.c
+++ b/usr.bin/cpio/test/test_option_a.c
@@ -28,7 +28,7 @@
#else
#include <utime.h>
#endif
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/cpio/test/test_option_a.c,v 1.4.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
static struct {
const char *name;
diff --git a/usr.bin/cpio/test/test_option_c.c b/usr.bin/cpio/test/test_option_c.c
index 2f4e3bc586f2..7d8c13919299 100644
--- a/usr.bin/cpio/test/test_option_c.c
+++ b/usr.bin/cpio/test/test_option_c.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/cpio/test/test_option_c.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
static int
is_octal(const char *p, size_t l)
diff --git a/usr.bin/cpio/test/test_option_d.c b/usr.bin/cpio/test/test_option_d.c
index cb422aea2fa8..4c530013d57d 100644
--- a/usr.bin/cpio/test/test_option_d.c
+++ b/usr.bin/cpio/test/test_option_d.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/cpio/test/test_option_d.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_d)
diff --git a/usr.bin/cpio/test/test_option_ell.c b/usr.bin/cpio/test/test_option_ell.c
index 36bb0acc350b..c8e8e8712b22 100644
--- a/usr.bin/cpio/test/test_option_ell.c
+++ b/usr.bin/cpio/test/test_option_ell.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/cpio/test/test_option_ell.c,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* This is called "test_option_ell" instead of "test_option_l" to
diff --git a/usr.bin/cpio/test/test_option_f.c b/usr.bin/cpio/test/test_option_f.c
index 54e07ac6da9c..841ffec369b2 100644
--- a/usr.bin/cpio/test/test_option_f.c
+++ b/usr.bin/cpio/test/test_option_f.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/cpio/test/test_option_f.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* Unpack the archive in a new dir.
diff --git a/usr.bin/cpio/test/test_option_f.cpio.uu b/usr.bin/cpio/test/test_option_f.cpio.uu
index 42c63c39685e..2e214c11d0f7 100644
--- a/usr.bin/cpio/test/test_option_f.cpio.uu
+++ b/usr.bin/cpio/test/test_option_f.cpio.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_option_f.cpio.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_option_f.cpio
M,#<P-S`W,#`P,3,Q-C(Q-38Q,3`P-C0T,#`Q-S4P,#`Q-S4P,#`P,#`Q,#`P
M,#`P,3`W,S4Q,3(U,C8P,#`P,#4P,#`P,#`P,#`P,&$Q,C,`,#<P-S`W,#`P
diff --git a/usr.bin/cpio/test/test_option_help.c b/usr.bin/cpio/test/test_option_help.c
index b9433a43a68b..aa4e0afd30c5 100644
--- a/usr.bin/cpio/test/test_option_help.c
+++ b/usr.bin/cpio/test/test_option_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/cpio/test/test_option_help.c,v 1.1.2.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/cpio/test/test_option_m.c b/usr.bin/cpio/test/test_option_m.c
index 7f8e9019d82e..f689d01cbbd5 100644
--- a/usr.bin/cpio/test/test_option_m.c
+++ b/usr.bin/cpio/test/test_option_m.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/cpio/test/test_option_m.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_m)
diff --git a/usr.bin/cpio/test/test_option_m.cpio.uu b/usr.bin/cpio/test/test_option_m.cpio.uu
index 3d2002355e55..83af57658746 100644
--- a/usr.bin/cpio/test/test_option_m.cpio.uu
+++ b/usr.bin/cpio/test/test_option_m.cpio.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_option_m.cpio.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_option_m.cpio
M,#<P-S`W,#`P,3,Q-#4P,#8T,3`P-C0T,#`Q-S4P,#`Q-S4P,#`P,#`Q,#`P
M,#`P,#`P,#`P,#`P,#$P,#`P,#4P,#`P,#`P,#`P,&9I;&4`,#<P-S`W,#`P
diff --git a/usr.bin/cpio/test/test_option_t.c b/usr.bin/cpio/test/test_option_t.c
index 1c9af1921b6b..82c92e7ea60e 100644
--- a/usr.bin/cpio/test/test_option_t.c
+++ b/usr.bin/cpio/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/cpio/test/test_option_t.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_t)
diff --git a/usr.bin/cpio/test/test_option_t.cpio.uu b/usr.bin/cpio/test/test_option_t.cpio.uu
index 055fe747d06f..ed2ad3718c64 100644
--- a/usr.bin/cpio/test/test_option_t.cpio.uu
+++ b/usr.bin/cpio/test/test_option_t.cpio.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_option_t.cpio.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_option_t.cpio
M,#<P-S`W,#`P,3,Q-#4P,#8T,3`P-C0T,#`Q-S4P,#`Q-S4P,#`P,#`Q,#`P
M,#`P,#`P,#`P,#`P,#$P,#`P,#4P,#`P,#`P,#`P,&9I;&4`,#<P-S`W,#`P
diff --git a/usr.bin/cpio/test/test_option_t.stdout.uu b/usr.bin/cpio/test/test_option_t.stdout.uu
index 2457706eceed..0b93aaf5ffed 100644
--- a/usr.bin/cpio/test/test_option_t.stdout.uu
+++ b/usr.bin/cpio/test/test_option_t.stdout.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_option_t.stdout.uu,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_option_t.stdout
%9FEL90H`
`
diff --git a/usr.bin/cpio/test/test_option_tv.stdout.uu b/usr.bin/cpio/test/test_option_tv.stdout.uu
index 7f1879c80b16..3d5fa407f8e5 100644
--- a/usr.bin/cpio/test/test_option_tv.stdout.uu
+++ b/usr.bin/cpio/test/test_option_tv.stdout.uu
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/usr.bin/cpio/test/test_option_tv.stdout.uu,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
begin 644 test_option_tv.stdout
M+7)W+7(M+7(M+2`@(#$@=&EM("`@("`@=&EM("`@("`@("`@("`@(#`@1&5C
/(#,Q("`Q.38Y(&9I;&4*
diff --git a/usr.bin/cpio/test/test_option_u.c b/usr.bin/cpio/test/test_option_u.c
index 7d2edfff564f..c77a949d96c2 100644
--- a/usr.bin/cpio/test/test_option_u.c
+++ b/usr.bin/cpio/test/test_option_u.c
@@ -28,7 +28,7 @@
#else
#include <utime.h>
#endif
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/cpio/test/test_option_u.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_u)
{
diff --git a/usr.bin/cpio/test/test_option_version.c b/usr.bin/cpio/test/test_option_version.c
index 8a25248c41ca..79662df84da4 100644
--- a/usr.bin/cpio/test/test_option_version.c
+++ b/usr.bin/cpio/test/test_option_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/cpio/test/test_option_version.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* Test that --version option works and generates reasonable output.
diff --git a/usr.bin/cpio/test/test_option_y.c b/usr.bin/cpio/test/test_option_y.c
index 5cefaedc91cb..39661cbec60b 100644
--- a/usr.bin/cpio/test/test_option_y.c
+++ b/usr.bin/cpio/test/test_option_y.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/cpio/test/test_option_y.c,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_y)
{
diff --git a/usr.bin/cpio/test/test_option_z.c b/usr.bin/cpio/test/test_option_z.c
index 20579120e785..ee14bd092792 100644
--- a/usr.bin/cpio/test/test_option_z.c
+++ b/usr.bin/cpio/test/test_option_z.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/cpio/test/test_option_z.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
DEFINE_TEST(test_option_z)
{
diff --git a/usr.bin/cpio/test/test_owner_parse.c b/usr.bin/cpio/test/test_owner_parse.c
index 06fabd980352..e624d7f478aa 100644
--- a/usr.bin/cpio/test/test_owner_parse.c
+++ b/usr.bin/cpio/test/test_owner_parse.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/cpio/test/test_owner_parse.c,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include "../cpio.h"
#include "err.h"
diff --git a/usr.bin/cpio/test/test_passthrough_dotdot.c b/usr.bin/cpio/test/test_passthrough_dotdot.c
index bcb5a6ad9dbf..467e80e3a051 100644
--- a/usr.bin/cpio/test/test_passthrough_dotdot.c
+++ b/usr.bin/cpio/test/test_passthrough_dotdot.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/cpio/test/test_passthrough_dotdot.c,v 1.5.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* Verify that "cpio -p .." works.
diff --git a/usr.bin/cpio/test/test_passthrough_reverse.c b/usr.bin/cpio/test/test_passthrough_reverse.c
index a7695ed9dba3..763350a5115d 100644
--- a/usr.bin/cpio/test/test_passthrough_reverse.c
+++ b/usr.bin/cpio/test/test_passthrough_reverse.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/cpio/test/test_passthrough_reverse.c,v 1.3.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
/*
* As reported by Bernd Walter: Some people are in the habit of
diff --git a/usr.bin/cpio/test/test_pathmatch.c b/usr.bin/cpio/test/test_pathmatch.c
index a596eda1daec..f59d244d61c1 100644
--- a/usr.bin/cpio/test/test_pathmatch.c
+++ b/usr.bin/cpio/test/test_pathmatch.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/cpio/test/test_pathmatch.c,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $");
#include "../pathmatch.h"