summaryrefslogtreecommitdiff
path: root/tools/regression/pipe
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2009-11-21 06:13:29 +0000
committerKen Smith <kensmith@FreeBSD.org>2009-11-21 06:13:29 +0000
commita4d3b78df842614c46b116fc5a6f470be637dccd (patch)
tree46c6b11aa0464ba59f49361bd26e1a86962c0624 /tools/regression/pipe
parent59dd044d1cb744d3dba6b41c41e196b54e8fd9f8 (diff)
Diffstat (limited to 'tools/regression/pipe')
-rw-r--r--tools/regression/pipe/Makefile2
-rw-r--r--tools/regression/pipe/bigpipetest.c2
-rw-r--r--tools/regression/pipe/bigpipetest.t2
-rw-r--r--tools/regression/pipe/pipe-fstatbug.c2
-rw-r--r--tools/regression/pipe/pipe-overcommit1.c2
-rw-r--r--tools/regression/pipe/pipe-overcommit2.c2
-rw-r--r--tools/regression/pipe/pipe-reverse.c2
-rw-r--r--tools/regression/pipe/pipe-wraparound.c2
8 files changed, 8 insertions, 8 deletions
diff --git a/tools/regression/pipe/Makefile b/tools/regression/pipe/Makefile
index cf732538b255..cc2646c19521 100644
--- a/tools/regression/pipe/Makefile
+++ b/tools/regression/pipe/Makefile
@@ -1,5 +1,5 @@
#
-# $FreeBSD$
+# $FreeBSD: src/tools/regression/pipe/Makefile,v 1.3.22.1.2.1 2009/10/25 01:10:29 kensmith Exp $
#
# "make" then "make regress".
#
diff --git a/tools/regression/pipe/bigpipetest.c b/tools/regression/pipe/bigpipetest.c
index c5983fa5559e..4b67b50ddcd8 100644
--- a/tools/regression/pipe/bigpipetest.c
+++ b/tools/regression/pipe/bigpipetest.c
@@ -12,7 +12,7 @@
* Test for the non-blocking big pipe bug (write(2) returning
* EAGAIN while select(2) returns the descriptor as ready for write).
*
- * $FreeBSD$
+ * $FreeBSD: src/tools/regression/pipe/bigpipetest.c,v 1.3.22.1.2.1 2009/10/25 01:10:29 kensmith Exp $
*/
void write_frame(int fd, char *buf, unsigned long buflen)
diff --git a/tools/regression/pipe/bigpipetest.t b/tools/regression/pipe/bigpipetest.t
index 8bdfd03be81b..4e5917945631 100644
--- a/tools/regression/pipe/bigpipetest.t
+++ b/tools/regression/pipe/bigpipetest.t
@@ -1,5 +1,5 @@
#!/bin/sh
-# $FreeBSD$
+# $FreeBSD: src/tools/regression/pipe/bigpipetest.t,v 1.1.22.1.2.1 2009/10/25 01:10:29 kensmith Exp $
cd `dirname $0`
diff --git a/tools/regression/pipe/pipe-fstatbug.c b/tools/regression/pipe/pipe-fstatbug.c
index ed038c20a69a..27eee14ee370 100644
--- a/tools/regression/pipe/pipe-fstatbug.c
+++ b/tools/regression/pipe/pipe-fstatbug.c
@@ -28,7 +28,7 @@ SUCH DAMAGE.
#include <sys/stat.h>
/*
- * $FreeBSD$
+ * $FreeBSD: src/tools/regression/pipe/pipe-fstatbug.c,v 1.1.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $
* The goal of this program is to see if fstat reports the correct
* data count for a pipe. Prior to revision 1.172 of sys_pipe.c,
* 0 would be returned once the pipe entered direct write mode.
diff --git a/tools/regression/pipe/pipe-overcommit1.c b/tools/regression/pipe/pipe-overcommit1.c
index c4686588b6bb..7d47aa965c55 100644
--- a/tools/regression/pipe/pipe-overcommit1.c
+++ b/tools/regression/pipe/pipe-overcommit1.c
@@ -30,7 +30,7 @@
#include <stdlib.h>
/*
- * $FreeBSD$
+ * $FreeBSD: src/tools/regression/pipe/pipe-overcommit1.c,v 1.1.22.1.2.1 2009/10/25 01:10:29 kensmith Exp $
* This program just allocates as many pipes as it can to ensure
* that using up all pipe memory doesn't cause a panic.
*/
diff --git a/tools/regression/pipe/pipe-overcommit2.c b/tools/regression/pipe/pipe-overcommit2.c
index 5979585e6e6b..18a123af1a1f 100644
--- a/tools/regression/pipe/pipe-overcommit2.c
+++ b/tools/regression/pipe/pipe-overcommit2.c
@@ -31,7 +31,7 @@
#include <fcntl.h>
/*
- * $FreeBSD$
+ * $FreeBSD: src/tools/regression/pipe/pipe-overcommit2.c,v 1.1.22.1.2.1 2009/10/25 01:10:29 kensmith Exp $
* This program tests how sys_pipe.c handles the case where there
* is ample memory to allocate a pipe, but the file descriptor
* limit for that user has been exceeded.
diff --git a/tools/regression/pipe/pipe-reverse.c b/tools/regression/pipe/pipe-reverse.c
index f4ae16747d0b..b5ee93757798 100644
--- a/tools/regression/pipe/pipe-reverse.c
+++ b/tools/regression/pipe/pipe-reverse.c
@@ -28,7 +28,7 @@ SUCH DAMAGE.
#include <sys/stat.h>
/*
- * $FreeBSD$
+ * $FreeBSD: src/tools/regression/pipe/pipe-reverse.c,v 1.1.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $
* This program simply tests writing through the reverse direction of
* a pipe. Nothing too fancy, it's only needed because most pipe-using
* programs never touch the reverse direction (it doesn't exist on
diff --git a/tools/regression/pipe/pipe-wraparound.c b/tools/regression/pipe/pipe-wraparound.c
index ab673e9b180a..2267cd36ddb6 100644
--- a/tools/regression/pipe/pipe-wraparound.c
+++ b/tools/regression/pipe/pipe-wraparound.c
@@ -28,7 +28,7 @@ SUCH DAMAGE.
#include <sys/stat.h>
/*
- * $FreeBSD$
+ * $FreeBSD: src/tools/regression/pipe/pipe-wraparound.c,v 1.1.30.1.2.1 2009/10/25 01:10:29 kensmith Exp $
* This program tests to make sure that wraparound writes and reads
* are working, assuming that 16K socket buffers are used. In order
* to really stress the pipe code with this test, kernel modifications