[rtems commit] smptests: Move ATOMIC conditional to top-level

Sebastian Huber sebh at rtems.org
Wed Aug 28 12:54:21 UTC 2013


Module:    rtems
Branch:    master
Commit:    2bbcb644f9785a5aa66aa5252905b903f857fdec
Changeset: http://git.rtems.org/rtems/commit/?id=2bbcb644f9785a5aa66aa5252905b903f857fdec

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Tue Aug 27 14:26:33 2013 +0200

smptests: Move ATOMIC conditional to top-level

---

 testsuites/smptests/Makefile.am             |    2 ++
 testsuites/smptests/smpatomic01/Makefile.am |    4 ----
 testsuites/smptests/smpatomic02/Makefile.am |    4 ----
 testsuites/smptests/smpatomic03/Makefile.am |    4 ----
 testsuites/smptests/smpatomic04/Makefile.am |    4 ----
 testsuites/smptests/smpatomic05/Makefile.am |    4 ----
 testsuites/smptests/smpatomic06/Makefile.am |    4 ----
 testsuites/smptests/smpatomic07/Makefile.am |    4 ----
 8 files changed, 2 insertions(+), 28 deletions(-)

diff --git a/testsuites/smptests/Makefile.am b/testsuites/smptests/Makefile.am
index 9b10d42..add13bc 100644
--- a/testsuites/smptests/Makefile.am
+++ b/testsuites/smptests/Makefile.am
@@ -11,6 +11,7 @@ SUBDIRS += smp06
 SUBDIRS += smp07
 SUBDIRS += smp08
 SUBDIRS += smp09
+if ATOMIC
 SUBDIRS += smpatomic01
 SUBDIRS += smpatomic02
 SUBDIRS += smpatomic03
@@ -18,6 +19,7 @@ SUBDIRS += smpatomic04
 SUBDIRS += smpatomic05
 SUBDIRS += smpatomic06
 SUBDIRS += smpatomic07
+endif
 SUBDIRS += smplock01
 SUBDIRS += smpmigration01
 SUBDIRS += smpschedule01
diff --git a/testsuites/smptests/smpatomic01/Makefile.am b/testsuites/smptests/smpatomic01/Makefile.am
index cc2e1fc..7bd5502 100644
--- a/testsuites/smptests/smpatomic01/Makefile.am
+++ b/testsuites/smptests/smpatomic01/Makefile.am
@@ -1,16 +1,13 @@
-if ATOMIC
 rtems_tests_PROGRAMS = smpatomic01
 smpatomic01_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
 
 dist_rtems_tests_DATA = smpatomic01.scn
 dist_rtems_tests_DATA += smpatomic01.doc
-endif
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
-if ATOMIC
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 
 LINK_OBJS = $(smpatomic01_OBJECTS)
@@ -19,6 +16,5 @@ LINK_LIBS = $(smpatomic01_LDLIBS)
 smpatomic01$(EXEEXT): $(smpatomic01_OBJECTS) $(smpatomic01_DEPENDENCIES)
 	@rm -f smpatomic01$(EXEEXT)
 	$(make-exe)
-endif
 
 include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/smptests/smpatomic02/Makefile.am b/testsuites/smptests/smpatomic02/Makefile.am
index d4b4d6a..04fc5e4 100644
--- a/testsuites/smptests/smpatomic02/Makefile.am
+++ b/testsuites/smptests/smpatomic02/Makefile.am
@@ -1,16 +1,13 @@
-if ATOMIC
 rtems_tests_PROGRAMS = smpatomic02
 smpatomic02_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
 
 dist_rtems_tests_DATA = smpatomic02.scn
 dist_rtems_tests_DATA += smpatomic02.doc
-endif
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
-if ATOMIC
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 
 LINK_OBJS = $(smpatomic02_OBJECTS)
@@ -19,6 +16,5 @@ LINK_LIBS = $(smpatomic02_LDLIBS)
 smpatomic02$(EXEEXT): $(smpatomic02_OBJECTS) $(smpatomic02_DEPENDENCIES)
 	@rm -f smpatomic01$(EXEEXT)
 	$(make-exe)
-endif
 
 include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/smptests/smpatomic03/Makefile.am b/testsuites/smptests/smpatomic03/Makefile.am
index 61c184d..cebd323 100644
--- a/testsuites/smptests/smpatomic03/Makefile.am
+++ b/testsuites/smptests/smpatomic03/Makefile.am
@@ -1,16 +1,13 @@
-if ATOMIC
 rtems_tests_PROGRAMS = smpatomic03
 smpatomic03_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
 
 dist_rtems_tests_DATA = smpatomic03.scn
 dist_rtems_tests_DATA += smpatomic03.doc
-endif
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
-if ATOMIC
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 
 LINK_OBJS = $(smpatomic03_OBJECTS)
@@ -19,6 +16,5 @@ LINK_LIBS = $(smpatomic03_LDLIBS)
 smpatomic03$(EXEEXT): $(smpatomic03_OBJECTS) $(smpatomic03_DEPENDENCIES)
 	@rm -f smpatomic03$(EXEEXT)
 	$(make-exe)
-endif
 
 include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/smptests/smpatomic04/Makefile.am b/testsuites/smptests/smpatomic04/Makefile.am
index c354a34..6b71e10 100644
--- a/testsuites/smptests/smpatomic04/Makefile.am
+++ b/testsuites/smptests/smpatomic04/Makefile.am
@@ -1,16 +1,13 @@
-if ATOMIC
 rtems_tests_PROGRAMS = smpatomic04
 smpatomic04_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
 
 dist_rtems_tests_DATA = smpatomic04.scn
 dist_rtems_tests_DATA += smpatomic04.doc
-endif
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
-if ATOMIC
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 
 LINK_OBJS = $(smpatomic04_OBJECTS)
@@ -19,6 +16,5 @@ LINK_LIBS = $(smpatomic04_LDLIBS)
 smpatomic04$(EXEEXT): $(smpatomic04_OBJECTS) $(smpatomic04_DEPENDENCIES)
 	@rm -f smpatomic04$(EXEEXT)
 	$(make-exe)
-endif
 
 include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/smptests/smpatomic05/Makefile.am b/testsuites/smptests/smpatomic05/Makefile.am
index f9df60d..0d4489d 100644
--- a/testsuites/smptests/smpatomic05/Makefile.am
+++ b/testsuites/smptests/smpatomic05/Makefile.am
@@ -1,16 +1,13 @@
-if ATOMIC
 rtems_tests_PROGRAMS = smpatomic05
 smpatomic05_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
 
 dist_rtems_tests_DATA = smpatomic05.scn
 dist_rtems_tests_DATA += smpatomic05.doc
-endif
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
-if ATOMIC
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 
 LINK_OBJS = $(smpatomic05_OBJECTS)
@@ -19,6 +16,5 @@ LINK_LIBS = $(smpatomic05_LDLIBS)
 smpatomic05$(EXEEXT): $(smpatomic05_OBJECTS) $(smpatomic05_DEPENDENCIES)
 	@rm -f smpatomic05$(EXEEXT)
 	$(make-exe)
-endif
 
 include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/smptests/smpatomic06/Makefile.am b/testsuites/smptests/smpatomic06/Makefile.am
index 80f9d15..c3a0645 100644
--- a/testsuites/smptests/smpatomic06/Makefile.am
+++ b/testsuites/smptests/smpatomic06/Makefile.am
@@ -1,16 +1,13 @@
-if ATOMIC
 rtems_tests_PROGRAMS = smpatomic06
 smpatomic06_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
 
 dist_rtems_tests_DATA = smpatomic06.scn
 dist_rtems_tests_DATA += smpatomic06.doc
-endif
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
-if ATOMIC
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 
 LINK_OBJS = $(smpatomic06_OBJECTS)
@@ -19,6 +16,5 @@ LINK_LIBS = $(smpatomic06_LDLIBS)
 smpatomic06$(EXEEXT): $(smpatomic06_OBJECTS) $(smpatomic06_DEPENDENCIES)
 	@rm -f smpatomic06$(EXEEXT)
 	$(make-exe)
-endif
 
 include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/smptests/smpatomic07/Makefile.am b/testsuites/smptests/smpatomic07/Makefile.am
index 4c74ee4..5e623ea 100644
--- a/testsuites/smptests/smpatomic07/Makefile.am
+++ b/testsuites/smptests/smpatomic07/Makefile.am
@@ -1,16 +1,13 @@
-if ATOMIC
 rtems_tests_PROGRAMS = smpatomic07
 smpatomic07_SOURCES = init.c tasks.c system.h ../../support/src/locked_print.c
 
 dist_rtems_tests_DATA = smpatomic07.scn
 dist_rtems_tests_DATA += smpatomic07.doc
-endif
 
 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP at .cfg
 include $(top_srcdir)/../automake/compile.am
 include $(top_srcdir)/../automake/leaf.am
 
-if ATOMIC
 AM_CPPFLAGS += -I$(top_srcdir)/../support/include
 
 LINK_OBJS = $(smpatomic07_OBJECTS)
@@ -19,6 +16,5 @@ LINK_LIBS = $(smpatomic07_LDLIBS)
 smpatomic07$(EXEEXT): $(smpatomic07_OBJECTS) $(smpatomic07_DEPENDENCIES)
 	@rm -f smpatomic07$(EXEEXT)
 	$(make-exe)
-endif
 
 include $(top_srcdir)/../automake/local.am




More information about the vc mailing list