summaryrefslogtreecommitdiff
path: root/lib/libpthread/test
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2008-11-26 01:09:48 +0000
committerKen Smith <kensmith@FreeBSD.org>2008-11-26 01:09:48 +0000
commita93332491e10c1a23a9fd2f11ccbdba33d72d850 (patch)
tree1467effda708ab3ab6426f7cb6bd2d8d4fa29ab8 /lib/libpthread/test
parentd2d8199ea25041ce5507c36316475bb4331b66ed (diff)
Diffstat (limited to 'lib/libpthread/test')
-rw-r--r--lib/libpthread/test/Makefile2
-rw-r--r--lib/libpthread/test/README2
-rw-r--r--lib/libpthread/test/guard_b.c2
-rwxr-xr-xlib/libpthread/test/guard_s.pl2
-rw-r--r--lib/libpthread/test/hello_b.c2
-rw-r--r--lib/libpthread/test/hello_d.c2
-rw-r--r--lib/libpthread/test/hello_s.c2
-rw-r--r--lib/libpthread/test/join_leak_d.c2
-rw-r--r--lib/libpthread/test/mutex_d.c2
-rwxr-xr-xlib/libpthread/test/propagate_s.pl2
-rw-r--r--lib/libpthread/test/sem_d.c2
-rw-r--r--lib/libpthread/test/sigsuspend_d.c2
-rw-r--r--lib/libpthread/test/sigwait_d.c2
-rwxr-xr-xlib/libpthread/test/verify2
14 files changed, 14 insertions, 14 deletions
diff --git a/lib/libpthread/test/Makefile b/lib/libpthread/test/Makefile
index 5b5eb3c79a36a..6c77201a70a1f 100644
--- a/lib/libpthread/test/Makefile
+++ b/lib/libpthread/test/Makefile
@@ -1,5 +1,5 @@
#
-# $FreeBSD$
+# $FreeBSD: src/lib/libpthread/test/Makefile,v 1.13.20.1 2008/10/02 02:57:24 kensmith Exp $
#
# Automated test suite for libpthread (pthreads).
#
diff --git a/lib/libpthread/test/README b/lib/libpthread/test/README
index 8f625a1438e73..018b714941836 100644
--- a/lib/libpthread/test/README
+++ b/lib/libpthread/test/README
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/lib/libpthread/test/README,v 1.2.26.1 2008/10/02 02:57:24 kensmith Exp $
This test suite is meant to test general functionality of pthreads, as well as
provide a simple framework for regression tests. In general, this test suite
diff --git a/lib/libpthread/test/guard_b.c b/lib/libpthread/test/guard_b.c
index 2e2703165dd6b..e3226d62f7e3e 100644
--- a/lib/libpthread/test/guard_b.c
+++ b/lib/libpthread/test/guard_b.c
@@ -26,7 +26,7 @@
* 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/lib/libpthread/test/guard_b.c,v 1.2.14.1.8.1 2008/10/02 02:57:24 kensmith Exp $
*
* Test thread stack guard functionality.
*/
diff --git a/lib/libpthread/test/guard_s.pl b/lib/libpthread/test/guard_s.pl
index 7802ff3c38d6f..8fd2757b0c7fa 100755
--- a/lib/libpthread/test/guard_s.pl
+++ b/lib/libpthread/test/guard_s.pl
@@ -27,7 +27,7 @@
# 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/lib/libpthread/test/guard_s.pl,v 1.1.26.1 2008/10/02 02:57:24 kensmith Exp $
#
# Test thread stack guard functionality. The C test program needs to be driven
# by this script because it segfaults when the stack guard is hit.
diff --git a/lib/libpthread/test/hello_b.c b/lib/libpthread/test/hello_b.c
index 2eefa7f48bfe5..2d820a771a891 100644
--- a/lib/libpthread/test/hello_b.c
+++ b/lib/libpthread/test/hello_b.c
@@ -2,7 +2,7 @@
*
* Back end C programs can be anything compilable.
*
- * $FreeBSD$
+ * $FreeBSD: src/lib/libpthread/test/hello_b.c,v 1.1.28.1 2008/10/02 02:57:24 kensmith Exp $
*
****************************************************************************/
diff --git a/lib/libpthread/test/hello_d.c b/lib/libpthread/test/hello_d.c
index 6d77526f16c77..fd18db4d5a766 100644
--- a/lib/libpthread/test/hello_d.c
+++ b/lib/libpthread/test/hello_d.c
@@ -2,7 +2,7 @@
*
* Simple diff mode test.
*
- * $FreeBSD$
+ * $FreeBSD: src/lib/libpthread/test/hello_d.c,v 1.1.28.1 2008/10/02 02:57:24 kensmith Exp $
*
****************************************************************************/
diff --git a/lib/libpthread/test/hello_s.c b/lib/libpthread/test/hello_s.c
index 942bf2dae0aea..34c24b11e58eb 100644
--- a/lib/libpthread/test/hello_s.c
+++ b/lib/libpthread/test/hello_s.c
@@ -2,7 +2,7 @@
*
* Simple sequence mode test.
*
- * $FreeBSD$
+ * $FreeBSD: src/lib/libpthread/test/hello_s.c,v 1.1.28.1 2008/10/02 02:57:24 kensmith Exp $
*
****************************************************************************/
diff --git a/lib/libpthread/test/join_leak_d.c b/lib/libpthread/test/join_leak_d.c
index 6532ca5bfc746..054b68e3d815f 100644
--- a/lib/libpthread/test/join_leak_d.c
+++ b/lib/libpthread/test/join_leak_d.c
@@ -26,7 +26,7 @@
* 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/lib/libpthread/test/join_leak_d.c,v 1.1.28.1 2008/10/02 02:57:24 kensmith Exp $
*
* Test for leaked joined threads.
*/
diff --git a/lib/libpthread/test/mutex_d.c b/lib/libpthread/test/mutex_d.c
index 2aa3b1df661dc..852c6b79d907e 100644
--- a/lib/libpthread/test/mutex_d.c
+++ b/lib/libpthread/test/mutex_d.c
@@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/lib/libpthread/test/mutex_d.c,v 1.4.10.1.8.1 2008/10/02 02:57:24 kensmith Exp $
*/
#include <sys/time.h>
diff --git a/lib/libpthread/test/propagate_s.pl b/lib/libpthread/test/propagate_s.pl
index 6b8509043d980..830a3f8924924 100755
--- a/lib/libpthread/test/propagate_s.pl
+++ b/lib/libpthread/test/propagate_s.pl
@@ -31,7 +31,7 @@
#
# Verify that no cancellation points are propagated inside of libpthread.
#
-# $FreeBSD$
+# $FreeBSD: src/lib/libpthread/test/propagate_s.pl,v 1.2.26.1 2008/10/02 02:57:24 kensmith Exp $
#
@CPOINTS = ("aio_suspend", "close", "creat", "fcntl", "fsync", "mq_receive",
diff --git a/lib/libpthread/test/sem_d.c b/lib/libpthread/test/sem_d.c
index b834591852d96..c63e9d3dd3c4a 100644
--- a/lib/libpthread/test/sem_d.c
+++ b/lib/libpthread/test/sem_d.c
@@ -31,7 +31,7 @@
*
* sem test.
*
- * $FreeBSD$
+ * $FreeBSD: src/lib/libpthread/test/sem_d.c,v 1.2.26.1 2008/10/02 02:57:24 kensmith Exp $
*
****************************************************************************/
diff --git a/lib/libpthread/test/sigsuspend_d.c b/lib/libpthread/test/sigsuspend_d.c
index d405e3dbb01a3..fe803c4fead72 100644
--- a/lib/libpthread/test/sigsuspend_d.c
+++ b/lib/libpthread/test/sigsuspend_d.c
@@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/lib/libpthread/test/sigsuspend_d.c,v 1.2.10.1.8.1 2008/10/02 02:57:24 kensmith Exp $
*/
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libpthread/test/sigwait_d.c b/lib/libpthread/test/sigwait_d.c
index f3ccd6b98491d..5164400120930 100644
--- a/lib/libpthread/test/sigwait_d.c
+++ b/lib/libpthread/test/sigwait_d.c
@@ -29,7 +29,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/lib/libpthread/test/sigwait_d.c,v 1.2.26.1 2008/10/02 02:57:24 kensmith Exp $
*/
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libpthread/test/verify b/lib/libpthread/test/verify
index 2863e5c3fa0c1..16d1fdaf0a537 100755
--- a/lib/libpthread/test/verify
+++ b/lib/libpthread/test/verify
@@ -33,7 +33,7 @@
#
# Test harness.
#
-# $FreeBSD$
+# $FreeBSD: src/lib/libpthread/test/verify,v 1.2.26.1 2008/10/02 02:57:24 kensmith Exp $
#
#############################################################################