summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testsuites/smptests/Makefile.am4
-rw-r--r--testsuites/smptests/README3
-rw-r--r--testsuites/smptests/configure.ac2
-rw-r--r--testsuites/smptests/smp01/Makefile.am4
-rw-r--r--testsuites/smptests/smp01/init.c2
-rw-r--r--testsuites/smptests/smp01/smp01.doc3
-rw-r--r--testsuites/smptests/smp01/system.h2
-rw-r--r--testsuites/smptests/smp01/tasks.c2
-rw-r--r--testsuites/smptests/smp02/Makefile.am4
-rw-r--r--testsuites/smptests/smp02/init.c2
-rw-r--r--testsuites/smptests/smp02/smp02.doc3
-rw-r--r--testsuites/smptests/smp02/system.h2
-rw-r--r--testsuites/smptests/smp02/tasks.c2
-rw-r--r--testsuites/smptests/smp03/Makefile.am4
-rw-r--r--testsuites/smptests/smp03/init.c2
-rw-r--r--testsuites/smptests/smp03/smp03.doc3
-rw-r--r--testsuites/smptests/smp03/system.h2
-rw-r--r--testsuites/smptests/smp03/tasks.c2
-rw-r--r--testsuites/smptests/smp04/Makefile.am4
-rw-r--r--testsuites/smptests/smp04/init.c2
-rw-r--r--testsuites/smptests/smp04/smp04.doc3
-rw-r--r--testsuites/smptests/smp04/system.h2
-rw-r--r--testsuites/smptests/smp05/Makefile.am4
-rw-r--r--testsuites/smptests/smp05/init.c2
-rw-r--r--testsuites/smptests/smp05/smp05.doc3
-rw-r--r--testsuites/smptests/smp06/Makefile.am4
-rw-r--r--testsuites/smptests/smp06/init.c2
-rw-r--r--testsuites/smptests/smp06/smp06.doc3
-rw-r--r--testsuites/smptests/smp07/Makefile.am4
-rw-r--r--testsuites/smptests/smp07/init.c2
-rw-r--r--testsuites/smptests/smp07/smp07.doc3
-rw-r--r--testsuites/smptests/smp08/Makefile.am4
-rw-r--r--testsuites/smptests/smp08/init.c2
-rw-r--r--testsuites/smptests/smp08/smp08.doc3
-rw-r--r--testsuites/smptests/smp08/system.h2
-rw-r--r--testsuites/smptests/smp08/tasks.c2
-rw-r--r--testsuites/smptests/smp09/Makefile.am4
-rw-r--r--testsuites/smptests/smp09/init.c2
-rw-r--r--testsuites/smptests/smp09/smp09.doc3
39 files changed, 0 insertions, 108 deletions
diff --git a/testsuites/smptests/Makefile.am b/testsuites/smptests/Makefile.am
index 175778dbac..02975a45a5 100644
--- a/testsuites/smptests/Makefile.am
+++ b/testsuites/smptests/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
ACLOCAL_AMFLAGS = -I ../aclocal
SUBDIRS =
diff --git a/testsuites/smptests/README b/testsuites/smptests/README
index 7d276ef2f8..35b7b18261 100644
--- a/testsuites/smptests/README
+++ b/testsuites/smptests/README
@@ -5,9 +5,6 @@
# The license and distribution terms for this file may be
# found in the file LICENSE in this distribution or at
# http://www.rtems.com/license/LICENSE.
-#
-# $Id$
-#
This directory contains the RTEMS SMP Test Suite.
diff --git a/testsuites/smptests/configure.ac b/testsuites/smptests/configure.ac
index a2801bc137..aad32ee81d 100644
--- a/testsuites/smptests/configure.ac
+++ b/testsuites/smptests/configure.ac
@@ -1,6 +1,4 @@
## Process this file with autoconf to produce a configure script.
-##
-## $Id$
AC_PREREQ([2.68])
AC_INIT([rtems-c-src-tests-smptests],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
diff --git a/testsuites/smptests/smp01/Makefile.am b/testsuites/smptests/smp01/Makefile.am
index 3fd2183744..cd5e1b5e08 100644
--- a/testsuites/smptests/smp01/Makefile.am
+++ b/testsuites/smptests/smp01/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp01
smp01_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp01/init.c b/testsuites/smptests/smp01/init.c
index 6bca7563fd..35ac6659c0 100644
--- a/testsuites/smptests/smp01/init.c
+++ b/testsuites/smptests/smp01/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp01/smp01.doc b/testsuites/smptests/smp01/smp01.doc
index e96c63c791..8b88ff312d 100644
--- a/testsuites/smptests/smp01/smp01.doc
+++ b/testsuites/smptests/smp01/smp01.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#
diff --git a/testsuites/smptests/smp01/system.h b/testsuites/smptests/smp01/system.h
index ee130a6065..45586731ba 100644
--- a/testsuites/smptests/smp01/system.h
+++ b/testsuites/smptests/smp01/system.h
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include "tmacros.h"
diff --git a/testsuites/smptests/smp01/tasks.c b/testsuites/smptests/smp01/tasks.c
index d57037a423..1b3b5fb5ef 100644
--- a/testsuites/smptests/smp01/tasks.c
+++ b/testsuites/smptests/smp01/tasks.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp02/Makefile.am b/testsuites/smptests/smp02/Makefile.am
index 61c60bd369..49b1dfeda1 100644
--- a/testsuites/smptests/smp02/Makefile.am
+++ b/testsuites/smptests/smp02/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp02
smp02_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp02/init.c b/testsuites/smptests/smp02/init.c
index 0da90924cd..968d90c8af 100644
--- a/testsuites/smptests/smp02/init.c
+++ b/testsuites/smptests/smp02/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp02/smp02.doc b/testsuites/smptests/smp02/smp02.doc
index 79de0d21b7..9508812529 100644
--- a/testsuites/smptests/smp02/smp02.doc
+++ b/testsuites/smptests/smp02/smp02.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#
diff --git a/testsuites/smptests/smp02/system.h b/testsuites/smptests/smp02/system.h
index d651991c3c..c3836d78b7 100644
--- a/testsuites/smptests/smp02/system.h
+++ b/testsuites/smptests/smp02/system.h
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include "tmacros.h"
diff --git a/testsuites/smptests/smp02/tasks.c b/testsuites/smptests/smp02/tasks.c
index e972f1f5d2..e3ac062e45 100644
--- a/testsuites/smptests/smp02/tasks.c
+++ b/testsuites/smptests/smp02/tasks.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp03/Makefile.am b/testsuites/smptests/smp03/Makefile.am
index 73f2967d5a..f6fa7e0f1d 100644
--- a/testsuites/smptests/smp03/Makefile.am
+++ b/testsuites/smptests/smp03/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp03
smp03_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp03/init.c b/testsuites/smptests/smp03/init.c
index 55a2cc7945..5371d49018 100644
--- a/testsuites/smptests/smp03/init.c
+++ b/testsuites/smptests/smp03/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp03/smp03.doc b/testsuites/smptests/smp03/smp03.doc
index 393d48880c..1e739c3e3b 100644
--- a/testsuites/smptests/smp03/smp03.doc
+++ b/testsuites/smptests/smp03/smp03.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#
diff --git a/testsuites/smptests/smp03/system.h b/testsuites/smptests/smp03/system.h
index ea38614365..bae95a777a 100644
--- a/testsuites/smptests/smp03/system.h
+++ b/testsuites/smptests/smp03/system.h
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include "tmacros.h"
diff --git a/testsuites/smptests/smp03/tasks.c b/testsuites/smptests/smp03/tasks.c
index 50ba5dabe4..dcd9a268f2 100644
--- a/testsuites/smptests/smp03/tasks.c
+++ b/testsuites/smptests/smp03/tasks.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp04/Makefile.am b/testsuites/smptests/smp04/Makefile.am
index 3579e94f78..cc426fd121 100644
--- a/testsuites/smptests/smp04/Makefile.am
+++ b/testsuites/smptests/smp04/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp04
smp04_SOURCES = init.c system.h ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp04/init.c b/testsuites/smptests/smp04/init.c
index 88528e3d4f..c61e81f2a7 100644
--- a/testsuites/smptests/smp04/init.c
+++ b/testsuites/smptests/smp04/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp04/smp04.doc b/testsuites/smptests/smp04/smp04.doc
index 7b1e7afb2a..274f98d8ab 100644
--- a/testsuites/smptests/smp04/smp04.doc
+++ b/testsuites/smptests/smp04/smp04.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#
diff --git a/testsuites/smptests/smp04/system.h b/testsuites/smptests/smp04/system.h
index ae7a254fac..d3820c21b4 100644
--- a/testsuites/smptests/smp04/system.h
+++ b/testsuites/smptests/smp04/system.h
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include "tmacros.h"
diff --git a/testsuites/smptests/smp05/Makefile.am b/testsuites/smptests/smp05/Makefile.am
index 6db395d304..38ef86e146 100644
--- a/testsuites/smptests/smp05/Makefile.am
+++ b/testsuites/smptests/smp05/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp05
smp05_SOURCES = init.c ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp05/init.c b/testsuites/smptests/smp05/init.c
index 9cc6010198..50b14da535 100644
--- a/testsuites/smptests/smp05/init.c
+++ b/testsuites/smptests/smp05/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp05/smp05.doc b/testsuites/smptests/smp05/smp05.doc
index 851c554709..b75f0f6b12 100644
--- a/testsuites/smptests/smp05/smp05.doc
+++ b/testsuites/smptests/smp05/smp05.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#
diff --git a/testsuites/smptests/smp06/Makefile.am b/testsuites/smptests/smp06/Makefile.am
index fe6fcacb4c..d7d133fd35 100644
--- a/testsuites/smptests/smp06/Makefile.am
+++ b/testsuites/smptests/smp06/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp06
smp06_SOURCES = init.c ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp06/init.c b/testsuites/smptests/smp06/init.c
index 3d026adab6..db13eacb44 100644
--- a/testsuites/smptests/smp06/init.c
+++ b/testsuites/smptests/smp06/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp06/smp06.doc b/testsuites/smptests/smp06/smp06.doc
index beb404b853..66f0fd8f59 100644
--- a/testsuites/smptests/smp06/smp06.doc
+++ b/testsuites/smptests/smp06/smp06.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#
diff --git a/testsuites/smptests/smp07/Makefile.am b/testsuites/smptests/smp07/Makefile.am
index b94fa1675a..efafcd02c7 100644
--- a/testsuites/smptests/smp07/Makefile.am
+++ b/testsuites/smptests/smp07/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp07
smp07_SOURCES = init.c ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp07/init.c b/testsuites/smptests/smp07/init.c
index 20d51eac6a..0cd820afde 100644
--- a/testsuites/smptests/smp07/init.c
+++ b/testsuites/smptests/smp07/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp07/smp07.doc b/testsuites/smptests/smp07/smp07.doc
index e000fefdbb..3e975d476e 100644
--- a/testsuites/smptests/smp07/smp07.doc
+++ b/testsuites/smptests/smp07/smp07.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#
diff --git a/testsuites/smptests/smp08/Makefile.am b/testsuites/smptests/smp08/Makefile.am
index 04748a6db2..b55c0414cc 100644
--- a/testsuites/smptests/smp08/Makefile.am
+++ b/testsuites/smptests/smp08/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp08
smp08_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp08/init.c b/testsuites/smptests/smp08/init.c
index 85775a0209..1c03cec8a3 100644
--- a/testsuites/smptests/smp08/init.c
+++ b/testsuites/smptests/smp08/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp08/smp08.doc b/testsuites/smptests/smp08/smp08.doc
index 3fa40a8519..68757dcb87 100644
--- a/testsuites/smptests/smp08/smp08.doc
+++ b/testsuites/smptests/smp08/smp08.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#
diff --git a/testsuites/smptests/smp08/system.h b/testsuites/smptests/smp08/system.h
index 679cd92b0d..e1afeea72c 100644
--- a/testsuites/smptests/smp08/system.h
+++ b/testsuites/smptests/smp08/system.h
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include "tmacros.h"
diff --git a/testsuites/smptests/smp08/tasks.c b/testsuites/smptests/smp08/tasks.c
index 230f0130c0..762120c78f 100644
--- a/testsuites/smptests/smp08/tasks.c
+++ b/testsuites/smptests/smp08/tasks.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp09/Makefile.am b/testsuites/smptests/smp09/Makefile.am
index 453ddef267..13cf3dd4b0 100644
--- a/testsuites/smptests/smp09/Makefile.am
+++ b/testsuites/smptests/smp09/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
rtems_tests_PROGRAMS = smp09
smp09_SOURCES = init.c ../../support/src/locked_print.c
diff --git a/testsuites/smptests/smp09/init.c b/testsuites/smptests/smp09/init.c
index 40944cd98d..5257b96699 100644
--- a/testsuites/smptests/smp09/init.c
+++ b/testsuites/smptests/smp09/init.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifdef HAVE_CONFIG_H
diff --git a/testsuites/smptests/smp09/smp09.doc b/testsuites/smptests/smp09/smp09.doc
index 421b588286..250f326b95 100644
--- a/testsuites/smptests/smp09/smp09.doc
+++ b/testsuites/smptests/smp09/smp09.doc
@@ -1,6 +1,3 @@
-#
-# $Id$
-#
# COPYRIGHT (c) 1989-2011.
# On-Line Applications Research Corporation (OAR).
#