aboutsummaryrefslogtreecommitdiff
path: root/tools/test
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2012-04-09 16:18:55 +0000
committerKen Smith <kensmith@FreeBSD.org>2012-04-09 16:18:55 +0000
commit039ea811636f62633b18bcadb9f5332b215f7900 (patch)
tree2b6265c3f691194eb9ff68f608c028eb43e14708 /tools/test
parent0724db41d65f0854fe1349e284feceb8c5c047ed (diff)
Diffstat (limited to 'tools/test')
-rw-r--r--tools/test/README2
-rw-r--r--tools/test/devrandom/hammer.random2
-rw-r--r--tools/test/devrandom/hammer.urandom2
-rw-r--r--tools/test/devrandom/stat.16bit2
-rw-r--r--tools/test/devrandom/stat.8bit2
-rw-r--r--tools/test/dtrace/Makefile2
-rw-r--r--tools/test/malloc/Makefile2
-rw-r--r--tools/test/malloc/main.c2
-rw-r--r--tools/test/posixshm/README2
-rw-r--r--tools/test/posixshm/shm_test.c2
-rw-r--r--tools/test/ppsapi/Makefile2
-rw-r--r--tools/test/ppsapi/README2
-rw-r--r--tools/test/ppsapi/ppsapitest.c2
-rw-r--r--tools/test/pthread_vfork/pthread_vfork_test.c2
-rw-r--r--tools/test/testfloat/random.c2
-rw-r--r--tools/test/testfloat/sparc64/Makefile2
-rw-r--r--tools/test/testfloat/sparc64/fpu_emul.S2
-rw-r--r--tools/test/testfloat/sparc64/fpu_reg.h2
-rw-r--r--tools/test/testfloat/sparc64/fpu_util.c2
-rw-r--r--tools/test/testfloat/sparc64/libc_private.h2
-rw-r--r--tools/test/testfloat/sparc64/milieu.h2
-rw-r--r--tools/test/testfloat/sparc64/namespace.h2
-rw-r--r--tools/test/testfloat/sparc64/softfloat.h2
-rw-r--r--tools/test/testfloat/sparc64/sparc64.h2
-rw-r--r--tools/test/testfloat/sparc64/systflags.c2
-rw-r--r--tools/test/testfloat/sparc64/systfloat.S2
-rw-r--r--tools/test/testfloat/sparc64/systfloat.h2
-rw-r--r--tools/test/testfloat/sparc64/systmodes.c2
-rw-r--r--tools/test/testfloat/sparc64/un-namespace.h2
-rw-r--r--tools/test/testfloat/testCases.c2
-rw-r--r--tools/test/testfloat/testfloat.c2
-rw-r--r--tools/test/testfloat/testsoftfloat.c2
32 files changed, 32 insertions, 32 deletions
diff --git a/tools/test/README b/tools/test/README
index 438c1f5170d9..3fab74d46ab2 100644
--- a/tools/test/README
+++ b/tools/test/README
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/tools/test/README,v 1.5.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $
This directory is for test programs.
diff --git a/tools/test/devrandom/hammer.random b/tools/test/devrandom/hammer.random
index ea4cb5f64032..8d20f99446f3 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.56.1.8.1 2012/03/03 06:15:13 kensmith Exp $
#
for (;;) {
diff --git a/tools/test/devrandom/hammer.urandom b/tools/test/devrandom/hammer.urandom
index d0b6aa89da58..b8ef161f61e0 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.56.1.8.1 2012/03/03 06:15:13 kensmith 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 32a6a9caf550..d1568f2f60c9 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.56.1.8.1 2012/03/03 06:15:13 kensmith Exp $
#
for ($i = 0; $i < (1024*64); $i++) {
diff --git a/tools/test/devrandom/stat.8bit b/tools/test/devrandom/stat.8bit
index 03fdbdd5b39d..9de5455d49d3 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.56.1.8.1 2012/03/03 06:15:13 kensmith Exp $
#
for ($i = 0; $i < (1024*32); $i++) {
diff --git a/tools/test/dtrace/Makefile b/tools/test/dtrace/Makefile
index 8ad8e62e76a2..635140f5fa5a 100644
--- a/tools/test/dtrace/Makefile
+++ b/tools/test/dtrace/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/tools/test/dtrace/Makefile,v 1.1.4.1.8.1 2012/03/03 06:15:13 kensmith Exp $
TESTSRCDIR= ${.CURDIR}/../../../cddl/contrib/opensolaris/cmd/dtrace/test
DTEST= ${TESTSRCDIR}/cmd/scripts/dtest.pl -n
diff --git a/tools/test/malloc/Makefile b/tools/test/malloc/Makefile
index 2f00c341fa0a..a9bf6d3fae9d 100644
--- a/tools/test/malloc/Makefile
+++ b/tools/test/malloc/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/tools/test/malloc/Makefile,v 1.5.22.2.2.1 2012/03/03 06:15:13 kensmith 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 5fef9a92f4da..9815315d8f21 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.36.2.2.1 2012/03/03 06:15:13 kensmith Exp $ */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
diff --git a/tools/test/posixshm/README b/tools/test/posixshm/README
index 514e18b893a7..da6268d47867 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.36.1.8.1 2012/03/03 06:15:13 kensmith 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 6cee558bb362..c0ca91b58f8a 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.36.1.8.1 2012/03/03 06:15:13 kensmith Exp $
*/
#include <sys/types.h>
diff --git a/tools/test/ppsapi/Makefile b/tools/test/ppsapi/Makefile
index f0110edf1292..6590ae6f30ec 100644
--- a/tools/test/ppsapi/Makefile
+++ b/tools/test/ppsapi/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/tools/test/ppsapi/Makefile,v 1.4.22.1.8.1 2012/03/03 06:15:13 kensmith Exp $
PROG= ppsapitest
NO_MAN=
diff --git a/tools/test/ppsapi/README b/tools/test/ppsapi/README
index ad8dacf31b57..84eefb6a2ca5 100644
--- a/tools/test/ppsapi/README
+++ b/tools/test/ppsapi/README
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/tools/test/ppsapi/README,v 1.2.22.1.8.1 2012/03/03 06:15:13 kensmith 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 78e73825e16c..ed7f0140c090 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.30.1.8.1 2012/03/03 06:15:13 kensmith Exp $");
#include <stdio.h>
#include <stdint.h>
diff --git a/tools/test/pthread_vfork/pthread_vfork_test.c b/tools/test/pthread_vfork/pthread_vfork_test.c
index e00472713dfd..01de0854c003 100644
--- a/tools/test/pthread_vfork/pthread_vfork_test.c
+++ b/tools/test/pthread_vfork/pthread_vfork_test.c
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/pthread_vfork/pthread_vfork_test.c,v 1.1.2.1.8.1 2012/03/03 06:15:13 kensmith Exp $");
#include <err.h>
#include <pthread.h>
diff --git a/tools/test/testfloat/random.c b/tools/test/testfloat/random.c
index 21326c1ff23f..ee650e3ad05f 100644
--- a/tools/test/testfloat/random.c
+++ b/tools/test/testfloat/random.c
@@ -24,7 +24,7 @@ this code that are retained.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/random.c,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
#include <stdlib.h>
#include "milieu.h"
diff --git a/tools/test/testfloat/sparc64/Makefile b/tools/test/testfloat/sparc64/Makefile
index a24834b8f4e9..48e03e730532 100644
--- a/tools/test/testfloat/sparc64/Makefile
+++ b/tools/test/testfloat/sparc64/Makefile
@@ -21,7 +21,7 @@
# OR TORT (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/tools/test/testfloat/sparc64/Makefile,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $
.PATH: ${.CURDIR}/../../../../lib/libc/softfloat/bits64 ${.CURDIR}/..
diff --git a/tools/test/testfloat/sparc64/fpu_emul.S b/tools/test/testfloat/sparc64/fpu_emul.S
index 0872e8930c0d..d5a711c96c2f 100644
--- a/tools/test/testfloat/sparc64/fpu_emul.S
+++ b/tools/test/testfloat/sparc64/fpu_emul.S
@@ -24,7 +24,7 @@
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/sparc64/fpu_emul.S,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
.section "rodata1",#alloc
.align 8
diff --git a/tools/test/testfloat/sparc64/fpu_reg.h b/tools/test/testfloat/sparc64/fpu_reg.h
index 76f7244dd0ba..39f3102b2788 100644
--- a/tools/test/testfloat/sparc64/fpu_reg.h
+++ b/tools/test/testfloat/sparc64/fpu_reg.h
@@ -22,7 +22,7 @@
* OR TORT (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/tools/test/testfloat/sparc64/fpu_reg.h,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $
*/
#ifndef _TESTFLOAT_SPARC64_FPU_REG_H_
diff --git a/tools/test/testfloat/sparc64/fpu_util.c b/tools/test/testfloat/sparc64/fpu_util.c
index 1b766e0320a5..e5c7f45e6cdc 100644
--- a/tools/test/testfloat/sparc64/fpu_util.c
+++ b/tools/test/testfloat/sparc64/fpu_util.c
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/sparc64/fpu_util.c,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/param.h>
diff --git a/tools/test/testfloat/sparc64/libc_private.h b/tools/test/testfloat/sparc64/libc_private.h
index 5e7d1bc431b0..8cd885f26dc3 100644
--- a/tools/test/testfloat/sparc64/libc_private.h
+++ b/tools/test/testfloat/sparc64/libc_private.h
@@ -22,7 +22,7 @@
* OR TORT (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/tools/test/testfloat/sparc64/libc_private.h,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $
*/
/*
* This file has no content and is solely to satisfy a #include in
diff --git a/tools/test/testfloat/sparc64/milieu.h b/tools/test/testfloat/sparc64/milieu.h
index 26491d16756c..9442dc1e4857 100644
--- a/tools/test/testfloat/sparc64/milieu.h
+++ b/tools/test/testfloat/sparc64/milieu.h
@@ -25,7 +25,7 @@ this code that are retained.
===============================================================================
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/tools/test/testfloat/sparc64/milieu.h,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $ */
/*
-------------------------------------------------------------------------------
diff --git a/tools/test/testfloat/sparc64/namespace.h b/tools/test/testfloat/sparc64/namespace.h
index 5e7d1bc431b0..f40e274ea11f 100644
--- a/tools/test/testfloat/sparc64/namespace.h
+++ b/tools/test/testfloat/sparc64/namespace.h
@@ -22,7 +22,7 @@
* OR TORT (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/tools/test/testfloat/sparc64/namespace.h,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $
*/
/*
* This file has no content and is solely to satisfy a #include in
diff --git a/tools/test/testfloat/sparc64/softfloat.h b/tools/test/testfloat/sparc64/softfloat.h
index f804b9cb82ca..6cb350758186 100644
--- a/tools/test/testfloat/sparc64/softfloat.h
+++ b/tools/test/testfloat/sparc64/softfloat.h
@@ -32,7 +32,7 @@ these four paragraphs for those parts of this code that are retained.
=============================================================================*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/tools/test/testfloat/sparc64/softfloat.h,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $ */
#include <machine/ieeefp.h>
diff --git a/tools/test/testfloat/sparc64/sparc64.h b/tools/test/testfloat/sparc64/sparc64.h
index 959a78cb675d..d6cb4656523b 100644
--- a/tools/test/testfloat/sparc64/sparc64.h
+++ b/tools/test/testfloat/sparc64/sparc64.h
@@ -22,7 +22,7 @@
* OR TORT (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/tools/test/testfloat/sparc64/sparc64.h,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $
*/
/*----------------------------------------------------------------------------
diff --git a/tools/test/testfloat/sparc64/systflags.c b/tools/test/testfloat/sparc64/systflags.c
index 9187facc8301..e8c98b7df2a8 100644
--- a/tools/test/testfloat/sparc64/systflags.c
+++ b/tools/test/testfloat/sparc64/systflags.c
@@ -48,7 +48,7 @@ this code that are retained.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/sparc64/systflags.c,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
#pragma STDC FENV_ACCESS ON
#include <fenv.h>
diff --git a/tools/test/testfloat/sparc64/systfloat.S b/tools/test/testfloat/sparc64/systfloat.S
index 09e97d15fe37..70f1fac03205 100644
--- a/tools/test/testfloat/sparc64/systfloat.S
+++ b/tools/test/testfloat/sparc64/systfloat.S
@@ -48,7 +48,7 @@ this code that are retained.
*/
#include <machine/asm.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/sparc64/systfloat.S,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
.text
diff --git a/tools/test/testfloat/sparc64/systfloat.h b/tools/test/testfloat/sparc64/systfloat.h
index c1db1ebd361e..8af20440eb97 100644
--- a/tools/test/testfloat/sparc64/systfloat.h
+++ b/tools/test/testfloat/sparc64/systfloat.h
@@ -23,7 +23,7 @@ this code that are retained.
===============================================================================
*/
-/* $FreeBSD$ */
+/* $FreeBSD: src/tools/test/testfloat/sparc64/systfloat.h,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $ */
#include "softfloat.h"
#include "milieu.h"
diff --git a/tools/test/testfloat/sparc64/systmodes.c b/tools/test/testfloat/sparc64/systmodes.c
index 26770599c0b4..cd1b2c543dd8 100644
--- a/tools/test/testfloat/sparc64/systmodes.c
+++ b/tools/test/testfloat/sparc64/systmodes.c
@@ -24,7 +24,7 @@ this code that are retained.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/sparc64/systmodes.c,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
#include <ieeefp.h>
#include "milieu.h"
diff --git a/tools/test/testfloat/sparc64/un-namespace.h b/tools/test/testfloat/sparc64/un-namespace.h
index 5e7d1bc431b0..13cbb129182e 100644
--- a/tools/test/testfloat/sparc64/un-namespace.h
+++ b/tools/test/testfloat/sparc64/un-namespace.h
@@ -22,7 +22,7 @@
* OR TORT (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/tools/test/testfloat/sparc64/un-namespace.h,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $
*/
/*
* This file has no content and is solely to satisfy a #include in
diff --git a/tools/test/testfloat/testCases.c b/tools/test/testfloat/testCases.c
index e2d8f4215fe1..3182d945e899 100644
--- a/tools/test/testfloat/testCases.c
+++ b/tools/test/testfloat/testCases.c
@@ -24,7 +24,7 @@ this code that are retained.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/testCases.c,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
#include "milieu.h"
#include "fail.h"
diff --git a/tools/test/testfloat/testfloat.c b/tools/test/testfloat/testfloat.c
index 5a19d8811b69..d187e9600b7f 100644
--- a/tools/test/testfloat/testfloat.c
+++ b/tools/test/testfloat/testfloat.c
@@ -24,7 +24,7 @@ this code that are retained.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/testfloat.c,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
#include <stdlib.h>
#include <signal.h>
diff --git a/tools/test/testfloat/testsoftfloat.c b/tools/test/testfloat/testsoftfloat.c
index 2689ee38777a..0ad8a6529812 100644
--- a/tools/test/testfloat/testsoftfloat.c
+++ b/tools/test/testfloat/testsoftfloat.c
@@ -24,7 +24,7 @@ this code that are retained.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/tools/test/testfloat/testsoftfloat.c,v 1.1.2.2.6.1 2012/03/03 06:15:13 kensmith Exp $");
#include <stdlib.h>
#include <signal.h>