diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-05-07 17:51:10 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-05-07 17:51:10 +0000 |
commit | e87a6b5d6805bf9f3f9faf53db0ba96345ef0f77 (patch) | |
tree | 5d7f179f3d81639a2b00e739c98d784b98e1bfae /tools/test | |
parent | bbe327aea67f046183f949450d6271765b9ebfb0 (diff) |
Diffstat (limited to 'tools/test')
-rw-r--r-- | tools/test/README | 2 | ||||
-rw-r--r-- | tools/test/devrandom/hammer.random | 2 | ||||
-rw-r--r-- | tools/test/devrandom/hammer.urandom | 2 | ||||
-rw-r--r-- | tools/test/devrandom/stat.16bit | 2 | ||||
-rw-r--r-- | tools/test/devrandom/stat.8bit | 2 | ||||
-rw-r--r-- | tools/test/malloc/Makefile | 2 | ||||
-rw-r--r-- | tools/test/malloc/main.c | 2 | ||||
-rw-r--r-- | tools/test/posixshm/README | 2 | ||||
-rw-r--r-- | tools/test/posixshm/shm_test.c | 2 | ||||
-rw-r--r-- | tools/test/ppsapi/Makefile | 2 | ||||
-rw-r--r-- | tools/test/ppsapi/README | 2 | ||||
-rw-r--r-- | tools/test/ppsapi/ppsapitest.c | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/tools/test/README b/tools/test/README index aacc781436579..b469ee636bdca 100644 --- a/tools/test/README +++ b/tools/test/README @@ -1,4 +1,4 @@ -$FreeBSD$ +$FreeBSD: src/tools/test/README,v 1.4 2001/10/08 12:28:31 asmodai Exp $ This directory is for test programs. diff --git a/tools/test/devrandom/hammer.random b/tools/test/devrandom/hammer.random index ea4cb5f64032b..0aee741e2c8c9 100644 --- a/tools/test/devrandom/hammer.random +++ b/tools/test/devrandom/hammer.random @@ -5,7 +5,7 @@ # Read and display random numbers. # Try tapping shift/alt/ctrl to get more randomness. # -# $FreeBSD$ +# $FreeBSD: src/tools/test/devrandom/hammer.random,v 1.4 1999/08/28 00:54:24 peter Exp $ # for (;;) { diff --git a/tools/test/devrandom/hammer.urandom b/tools/test/devrandom/hammer.urandom index d0b6aa89da586..e6a49b7841b50 100644 --- a/tools/test/devrandom/hammer.urandom +++ b/tools/test/devrandom/hammer.urandom @@ -5,7 +5,7 @@ # Read and display random numbers. # This also reads /dev/zero to make sure there is no brokenness there. # -# $FreeBSD$ +# $FreeBSD: src/tools/test/devrandom/hammer.urandom,v 1.4 1999/08/28 00:54:24 peter Exp $ # open(ZERO, "/dev/zero") || die "Cannot open /dev/zero - $!\n"; diff --git a/tools/test/devrandom/stat.16bit b/tools/test/devrandom/stat.16bit index 32a6a9caf5502..5b1fb5d1079f7 100644 --- a/tools/test/devrandom/stat.16bit +++ b/tools/test/devrandom/stat.16bit @@ -8,7 +8,7 @@ # Redirect the output from this to a file - and go to the movies while # it runs. This program is a CPU Hog! # -# $FreeBSD$ +# $FreeBSD: src/tools/test/devrandom/stat.16bit,v 1.4 1999/08/28 00:54:24 peter Exp $ # for ($i = 0; $i < (1024*64); $i++) { diff --git a/tools/test/devrandom/stat.8bit b/tools/test/devrandom/stat.8bit index 03fdbdd5b39d9..de28beb7c117a 100644 --- a/tools/test/devrandom/stat.8bit +++ b/tools/test/devrandom/stat.8bit @@ -8,7 +8,7 @@ # Redirect the output from this to a file - and make a cup of coffee while # it runs. This program is a CPU Hog! # -# $FreeBSD$ +# $FreeBSD: src/tools/test/devrandom/stat.8bit,v 1.4 1999/08/28 00:54:24 peter Exp $ # for ($i = 0; $i < (1024*32); $i++) { diff --git a/tools/test/malloc/Makefile b/tools/test/malloc/Makefile index 74878154ac0eb..b61e3114fb653 100644 --- a/tools/test/malloc/Makefile +++ b/tools/test/malloc/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/tools/test/malloc/Makefile,v 1.3.8.1 2005/02/13 07:23:37 obrien Exp $ PROG= malloc SRCS= main.c .PATH: ${.CURDIR}/../../../lib/libc/stdlib diff --git a/tools/test/malloc/main.c b/tools/test/malloc/main.c index 2a0502928c062..dcb200ab9f069 100644 --- a/tools/test/malloc/main.c +++ b/tools/test/malloc/main.c @@ -1,4 +1,4 @@ -/* $FreeBSD$ */ +/* $FreeBSD: src/tools/test/malloc/main.c,v 1.2 2002/01/02 06:42:34 kbyanc Exp $ */ #include <stdlib.h> #include <stdio.h> #include <unistd.h> diff --git a/tools/test/posixshm/README b/tools/test/posixshm/README index 514e18b893a77..767449546f7cd 100644 --- a/tools/test/posixshm/README +++ b/tools/test/posixshm/README @@ -1,4 +1,4 @@ -$FreeBSD$ +$FreeBSD: src/tools/test/posixshm/README,v 1.1 2000/04/22 15:29:21 wollman Exp $ This is a simple program to test/demonstrate the POSIX Shared Memory Objects feature set. `make shm_test' to build. diff --git a/tools/test/posixshm/shm_test.c b/tools/test/posixshm/shm_test.c index 6cee558bb362e..8cdb516372be5 100644 --- a/tools/test/posixshm/shm_test.c +++ b/tools/test/posixshm/shm_test.c @@ -1,7 +1,7 @@ /* * Test the POSIX shared-memory API. * Dedicated to tyhe public domain by Garrett A. Wollman, 2000. - * $FreeBSD$ + * $FreeBSD: src/tools/test/posixshm/shm_test.c,v 1.1 2000/04/22 15:29:21 wollman Exp $ */ #include <sys/types.h> diff --git a/tools/test/ppsapi/Makefile b/tools/test/ppsapi/Makefile index 99d29f5147f24..4fc1d05b92d4e 100644 --- a/tools/test/ppsapi/Makefile +++ b/tools/test/ppsapi/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/tools/test/ppsapi/Makefile,v 1.1.2.1 2005/02/13 07:23:37 obrien Exp $ PROG= ppsapitest NOMAN= diff --git a/tools/test/ppsapi/README b/tools/test/ppsapi/README index 1460a5f5a6a9a..80ce126254732 100644 --- a/tools/test/ppsapi/README +++ b/tools/test/ppsapi/README @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/tools/test/ppsapi/README,v 1.1 2003/12/08 20:49:40 phk Exp $ This is a small test program which I have had around since we wrote the RFC 2783 API. diff --git a/tools/test/ppsapi/ppsapitest.c b/tools/test/ppsapi/ppsapitest.c index 78e73825e16c7..8d255879b77d4 100644 --- a/tools/test/ppsapi/ppsapitest.c +++ b/tools/test/ppsapi/ppsapitest.c @@ -6,7 +6,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/tools/test/ppsapi/ppsapitest.c,v 1.2 2004/03/10 20:30:19 phk Exp $"); #include <stdio.h> #include <stdint.h> |