summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp09
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp09')
-rw-r--r--testsuites/sptests/sp09/delay.c4
-rw-r--r--testsuites/sptests/sp09/init.c4
-rw-r--r--testsuites/sptests/sp09/isr.c4
-rw-r--r--testsuites/sptests/sp09/screen01.c4
-rw-r--r--testsuites/sptests/sp09/screen02.c4
-rw-r--r--testsuites/sptests/sp09/screen03.c4
-rw-r--r--testsuites/sptests/sp09/screen04.c4
-rw-r--r--testsuites/sptests/sp09/screen05.c4
-rw-r--r--testsuites/sptests/sp09/screen06.c4
-rw-r--r--testsuites/sptests/sp09/screen07.c4
-rw-r--r--testsuites/sptests/sp09/screen08.c4
-rw-r--r--testsuites/sptests/sp09/screen09.c4
-rw-r--r--testsuites/sptests/sp09/screen10.c4
-rw-r--r--testsuites/sptests/sp09/screen11.c4
-rw-r--r--testsuites/sptests/sp09/screen12.c4
-rw-r--r--testsuites/sptests/sp09/screen13.c4
-rw-r--r--testsuites/sptests/sp09/screen14.c4
-rw-r--r--testsuites/sptests/sp09/task1.c4
-rw-r--r--testsuites/sptests/sp09/task2.c4
-rw-r--r--testsuites/sptests/sp09/task3.c4
-rw-r--r--testsuites/sptests/sp09/task4.c4
21 files changed, 84 insertions, 0 deletions
diff --git a/testsuites/sptests/sp09/delay.c b/testsuites/sptests/sp09/delay.c
index db448d53e8..32065c14c4 100644
--- a/testsuites/sptests/sp09/delay.c
+++ b/testsuites/sptests/sp09/delay.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_timer_service_routine Delayed_routine(
diff --git a/testsuites/sptests/sp09/init.c b/testsuites/sptests/sp09/init.c
index 12ff5a9b08..9cecfec762 100644
--- a/testsuites/sptests/sp09/init.c
+++ b/testsuites/sptests/sp09/init.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/sptests/sp09/isr.c b/testsuites/sptests/sp09/isr.c
index 9185aac431..ecb4a4f77e 100644
--- a/testsuites/sptests/sp09/isr.c
+++ b/testsuites/sptests/sp09/isr.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_isr Service_routine(
diff --git a/testsuites/sptests/sp09/screen01.c b/testsuites/sptests/sp09/screen01.c
index 4ebdb7eb26..d81883cb0a 100644
--- a/testsuites/sptests/sp09/screen01.c
+++ b/testsuites/sptests/sp09/screen01.c
@@ -12,6 +12,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen1()
diff --git a/testsuites/sptests/sp09/screen02.c b/testsuites/sptests/sp09/screen02.c
index 4f14c632be..bf6e8008dc 100644
--- a/testsuites/sptests/sp09/screen02.c
+++ b/testsuites/sptests/sp09/screen02.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen2()
diff --git a/testsuites/sptests/sp09/screen03.c b/testsuites/sptests/sp09/screen03.c
index 07e944f76c..7c9866f30e 100644
--- a/testsuites/sptests/sp09/screen03.c
+++ b/testsuites/sptests/sp09/screen03.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen3()
diff --git a/testsuites/sptests/sp09/screen04.c b/testsuites/sptests/sp09/screen04.c
index 0d0b0fb36e..708b270737 100644
--- a/testsuites/sptests/sp09/screen04.c
+++ b/testsuites/sptests/sp09/screen04.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen4()
diff --git a/testsuites/sptests/sp09/screen05.c b/testsuites/sptests/sp09/screen05.c
index fa7731e3a8..1d6ee0cea1 100644
--- a/testsuites/sptests/sp09/screen05.c
+++ b/testsuites/sptests/sp09/screen05.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen5()
diff --git a/testsuites/sptests/sp09/screen06.c b/testsuites/sptests/sp09/screen06.c
index f95a5de4db..6b83e988d8 100644
--- a/testsuites/sptests/sp09/screen06.c
+++ b/testsuites/sptests/sp09/screen06.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen6()
diff --git a/testsuites/sptests/sp09/screen07.c b/testsuites/sptests/sp09/screen07.c
index a81cfd27f4..0dedfbf2f1 100644
--- a/testsuites/sptests/sp09/screen07.c
+++ b/testsuites/sptests/sp09/screen07.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
#define MESSAGE_SIZE (sizeof(long) * 4)
diff --git a/testsuites/sptests/sp09/screen08.c b/testsuites/sptests/sp09/screen08.c
index 2f6efc6668..f59617e04f 100644
--- a/testsuites/sptests/sp09/screen08.c
+++ b/testsuites/sptests/sp09/screen08.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
#define MESSAGE_SIZE (sizeof(long) * 4)
diff --git a/testsuites/sptests/sp09/screen09.c b/testsuites/sptests/sp09/screen09.c
index 6e0d510af2..9919883409 100644
--- a/testsuites/sptests/sp09/screen09.c
+++ b/testsuites/sptests/sp09/screen09.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen9()
diff --git a/testsuites/sptests/sp09/screen10.c b/testsuites/sptests/sp09/screen10.c
index 0607e4e101..fc4a5681cd 100644
--- a/testsuites/sptests/sp09/screen10.c
+++ b/testsuites/sptests/sp09/screen10.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen10()
diff --git a/testsuites/sptests/sp09/screen11.c b/testsuites/sptests/sp09/screen11.c
index 1e91c7899d..2cf5c16296 100644
--- a/testsuites/sptests/sp09/screen11.c
+++ b/testsuites/sptests/sp09/screen11.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen11()
diff --git a/testsuites/sptests/sp09/screen12.c b/testsuites/sptests/sp09/screen12.c
index c4850f4cc8..aecb0624fe 100644
--- a/testsuites/sptests/sp09/screen12.c
+++ b/testsuites/sptests/sp09/screen12.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen12()
diff --git a/testsuites/sptests/sp09/screen13.c b/testsuites/sptests/sp09/screen13.c
index 59530cee45..5fb68b1d24 100644
--- a/testsuites/sptests/sp09/screen13.c
+++ b/testsuites/sptests/sp09/screen13.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen13()
diff --git a/testsuites/sptests/sp09/screen14.c b/testsuites/sptests/sp09/screen14.c
index 3f0686fa3e..952cb73b88 100644
--- a/testsuites/sptests/sp09/screen14.c
+++ b/testsuites/sptests/sp09/screen14.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Screen14()
diff --git a/testsuites/sptests/sp09/task1.c b/testsuites/sptests/sp09/task1.c
index ff785d9438..dd7ed2e366 100644
--- a/testsuites/sptests/sp09/task1.c
+++ b/testsuites/sptests/sp09/task1.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Task_1(
diff --git a/testsuites/sptests/sp09/task2.c b/testsuites/sptests/sp09/task2.c
index 34dd3177e4..0ca8c92d11 100644
--- a/testsuites/sptests/sp09/task2.c
+++ b/testsuites/sptests/sp09/task2.c
@@ -18,6 +18,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Task_2(
diff --git a/testsuites/sptests/sp09/task3.c b/testsuites/sptests/sp09/task3.c
index f7bebffeb5..9325ac209b 100644
--- a/testsuites/sptests/sp09/task3.c
+++ b/testsuites/sptests/sp09/task3.c
@@ -19,6 +19,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Task_3(
diff --git a/testsuites/sptests/sp09/task4.c b/testsuites/sptests/sp09/task4.c
index 736a6cc940..73de6b410e 100644
--- a/testsuites/sptests/sp09/task4.c
+++ b/testsuites/sptests/sp09/task4.c
@@ -19,6 +19,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Task_4(