summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-02-22 10:00:39 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-02-22 10:00:39 +0000
commita4bc4d6e295f4e11ec26fe1071bdc115d187dba8 (patch)
treebb149a29949aedcbdd906f7ea102b8681e235a66 /testsuites/mptests
parent2011-02-22 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-a4bc4d6e295f4e11ec26fe1071bdc115d187dba8.tar.bz2
Add HAVE_CONFIG_H.
Diffstat (limited to 'testsuites/mptests')
-rw-r--r--testsuites/mptests/mp01/init.c4
-rw-r--r--testsuites/mptests/mp01/task1.c4
-rw-r--r--testsuites/mptests/mp02/init.c4
-rw-r--r--testsuites/mptests/mp02/task1.c4
-rw-r--r--testsuites/mptests/mp03/delay.c4
-rw-r--r--testsuites/mptests/mp03/init.c4
-rw-r--r--testsuites/mptests/mp03/task1.c4
-rw-r--r--testsuites/mptests/mp04/init.c4
-rw-r--r--testsuites/mptests/mp04/task1.c4
-rw-r--r--testsuites/mptests/mp05/asr.c4
-rw-r--r--testsuites/mptests/mp05/init.c4
-rw-r--r--testsuites/mptests/mp05/task1.c4
-rw-r--r--testsuites/mptests/mp06/init.c4
-rw-r--r--testsuites/mptests/mp06/task1.c4
-rw-r--r--testsuites/mptests/mp07/init.c4
-rw-r--r--testsuites/mptests/mp07/task1.c4
-rw-r--r--testsuites/mptests/mp08/init.c4
-rw-r--r--testsuites/mptests/mp08/task1.c4
-rw-r--r--testsuites/mptests/mp09/init.c4
-rw-r--r--testsuites/mptests/mp09/recvmsg.c4
-rw-r--r--testsuites/mptests/mp09/sendmsg.c4
-rw-r--r--testsuites/mptests/mp09/task1.c4
-rw-r--r--testsuites/mptests/mp10/init.c4
-rw-r--r--testsuites/mptests/mp10/task1.c4
-rw-r--r--testsuites/mptests/mp10/task2.c4
-rw-r--r--testsuites/mptests/mp10/task3.c4
-rw-r--r--testsuites/mptests/mp11/init.c4
-rw-r--r--testsuites/mptests/mp12/init.c4
-rw-r--r--testsuites/mptests/mp13/init.c4
-rw-r--r--testsuites/mptests/mp13/task1.c4
-rw-r--r--testsuites/mptests/mp13/task2.c4
-rw-r--r--testsuites/mptests/mp14/delay.c4
-rw-r--r--testsuites/mptests/mp14/evtask1.c4
-rw-r--r--testsuites/mptests/mp14/evtmtask.c4
-rw-r--r--testsuites/mptests/mp14/exit.c4
-rw-r--r--testsuites/mptests/mp14/init.c4
-rw-r--r--testsuites/mptests/mp14/msgtask1.c4
-rw-r--r--testsuites/mptests/mp14/pttask1.c4
-rw-r--r--testsuites/mptests/mp14/smtask1.c4
39 files changed, 156 insertions, 0 deletions
diff --git a/testsuites/mptests/mp01/init.c b/testsuites/mptests/mp01/init.c
index dc649a00b4..08b431dbce 100644
--- a/testsuites/mptests/mp01/init.c
+++ b/testsuites/mptests/mp01/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp01/task1.c b/testsuites/mptests/mp01/task1.c
index 5bf607f0f2..d7146012d0 100644
--- a/testsuites/mptests/mp01/task1.c
+++ b/testsuites/mptests/mp01/task1.c
@@ -23,6 +23,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Test_task(
diff --git a/testsuites/mptests/mp02/init.c b/testsuites/mptests/mp02/init.c
index df76a244ac..8f0f2f0ee0 100644
--- a/testsuites/mptests/mp02/init.c
+++ b/testsuites/mptests/mp02/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp02/task1.c b/testsuites/mptests/mp02/task1.c
index e98c8b8717..93e31f4cf0 100644
--- a/testsuites/mptests/mp02/task1.c
+++ b/testsuites/mptests/mp02/task1.c
@@ -19,6 +19,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
extern rtems_multiprocessing_table Multiprocessing_configuration;
diff --git a/testsuites/mptests/mp03/delay.c b/testsuites/mptests/mp03/delay.c
index 8829faa7af..2484a4888a 100644
--- a/testsuites/mptests/mp03/delay.c
+++ b/testsuites/mptests/mp03/delay.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_timer_service_routine Delayed_send_event(
diff --git a/testsuites/mptests/mp03/init.c b/testsuites/mptests/mp03/init.c
index df274af7d9..25bd034918 100644
--- a/testsuites/mptests/mp03/init.c
+++ b/testsuites/mptests/mp03/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp03/task1.c b/testsuites/mptests/mp03/task1.c
index 11f8687536..ecc384f258 100644
--- a/testsuites/mptests/mp03/task1.c
+++ b/testsuites/mptests/mp03/task1.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
/*PAGE
diff --git a/testsuites/mptests/mp04/init.c b/testsuites/mptests/mp04/init.c
index 25988edac5..1bdc51dc28 100644
--- a/testsuites/mptests/mp04/init.c
+++ b/testsuites/mptests/mp04/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp04/task1.c b/testsuites/mptests/mp04/task1.c
index f386d66db5..169d8dac8f 100644
--- a/testsuites/mptests/mp04/task1.c
+++ b/testsuites/mptests/mp04/task1.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
#include "tmacros.h"
diff --git a/testsuites/mptests/mp05/asr.c b/testsuites/mptests/mp05/asr.c
index c6715e0e01..0f202ec04b 100644
--- a/testsuites/mptests/mp05/asr.c
+++ b/testsuites/mptests/mp05/asr.c
@@ -18,6 +18,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
#include "tmacros.h"
diff --git a/testsuites/mptests/mp05/init.c b/testsuites/mptests/mp05/init.c
index 4220956fc3..fe3d8de801 100644
--- a/testsuites/mptests/mp05/init.c
+++ b/testsuites/mptests/mp05/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp05/task1.c b/testsuites/mptests/mp05/task1.c
index 20fbdc0892..042c443768 100644
--- a/testsuites/mptests/mp05/task1.c
+++ b/testsuites/mptests/mp05/task1.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
#define SIGNALS_PER_DOT 15
diff --git a/testsuites/mptests/mp06/init.c b/testsuites/mptests/mp06/init.c
index d6333823d5..2e315156d5 100644
--- a/testsuites/mptests/mp06/init.c
+++ b/testsuites/mptests/mp06/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp06/task1.c b/testsuites/mptests/mp06/task1.c
index 8e9fd71b25..4250bb699b 100644
--- a/testsuites/mptests/mp06/task1.c
+++ b/testsuites/mptests/mp06/task1.c
@@ -19,6 +19,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
#define DOT_COUNT 25
diff --git a/testsuites/mptests/mp07/init.c b/testsuites/mptests/mp07/init.c
index 092879e001..814efaebf3 100644
--- a/testsuites/mptests/mp07/init.c
+++ b/testsuites/mptests/mp07/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp07/task1.c b/testsuites/mptests/mp07/task1.c
index ff2659081f..801d2a1906 100644
--- a/testsuites/mptests/mp07/task1.c
+++ b/testsuites/mptests/mp07/task1.c
@@ -19,6 +19,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
#define DOT_COUNT 100
diff --git a/testsuites/mptests/mp08/init.c b/testsuites/mptests/mp08/init.c
index 89bf60a9df..b87f2b604d 100644
--- a/testsuites/mptests/mp08/init.c
+++ b/testsuites/mptests/mp08/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp08/task1.c b/testsuites/mptests/mp08/task1.c
index 9191049771..fae19a820d 100644
--- a/testsuites/mptests/mp08/task1.c
+++ b/testsuites/mptests/mp08/task1.c
@@ -18,6 +18,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Test_task(
diff --git a/testsuites/mptests/mp09/init.c b/testsuites/mptests/mp09/init.c
index 77d3c7f871..8e1b185e4a 100644
--- a/testsuites/mptests/mp09/init.c
+++ b/testsuites/mptests/mp09/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp09/recvmsg.c b/testsuites/mptests/mp09/recvmsg.c
index 72b4e84207..0a4292780a 100644
--- a/testsuites/mptests/mp09/recvmsg.c
+++ b/testsuites/mptests/mp09/recvmsg.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Receive_messages()
diff --git a/testsuites/mptests/mp09/sendmsg.c b/testsuites/mptests/mp09/sendmsg.c
index 39e4025df3..dc8caa7609 100644
--- a/testsuites/mptests/mp09/sendmsg.c
+++ b/testsuites/mptests/mp09/sendmsg.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Send_messages()
diff --git a/testsuites/mptests/mp09/task1.c b/testsuites/mptests/mp09/task1.c
index 7b20bfd75c..b00f04f67e 100644
--- a/testsuites/mptests/mp09/task1.c
+++ b/testsuites/mptests/mp09/task1.c
@@ -18,6 +18,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
char buffer1[16] = "123456789012345";
diff --git a/testsuites/mptests/mp10/init.c b/testsuites/mptests/mp10/init.c
index 3185232cd8..5c742a03e7 100644
--- a/testsuites/mptests/mp10/init.c
+++ b/testsuites/mptests/mp10/init.c
@@ -27,6 +27,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp10/task1.c b/testsuites/mptests/mp10/task1.c
index c5b205c0c9..da289bf2e8 100644
--- a/testsuites/mptests/mp10/task1.c
+++ b/testsuites/mptests/mp10/task1.c
@@ -18,6 +18,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Test_task1(
diff --git a/testsuites/mptests/mp10/task2.c b/testsuites/mptests/mp10/task2.c
index 03424a17d6..09718b2a1f 100644
--- a/testsuites/mptests/mp10/task2.c
+++ b/testsuites/mptests/mp10/task2.c
@@ -18,6 +18,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Test_task2(
diff --git a/testsuites/mptests/mp10/task3.c b/testsuites/mptests/mp10/task3.c
index f636bf9781..17e1e8d360 100644
--- a/testsuites/mptests/mp10/task3.c
+++ b/testsuites/mptests/mp10/task3.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Test_task3( restart )
diff --git a/testsuites/mptests/mp11/init.c b/testsuites/mptests/mp11/init.c
index 477ad7c5eb..01f89184ad 100644
--- a/testsuites/mptests/mp11/init.c
+++ b/testsuites/mptests/mp11/init.c
@@ -24,6 +24,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp12/init.c b/testsuites/mptests/mp12/init.c
index 0bec91f467..e564e13ced 100644
--- a/testsuites/mptests/mp12/init.c
+++ b/testsuites/mptests/mp12/init.c
@@ -26,6 +26,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp13/init.c b/testsuites/mptests/mp13/init.c
index 68fd1ec968..3e1726fc8a 100644
--- a/testsuites/mptests/mp13/init.c
+++ b/testsuites/mptests/mp13/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp13/task1.c b/testsuites/mptests/mp13/task1.c
index e619f9237c..04f3e2ceca 100644
--- a/testsuites/mptests/mp13/task1.c
+++ b/testsuites/mptests/mp13/task1.c
@@ -19,6 +19,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Test_task1(
diff --git a/testsuites/mptests/mp13/task2.c b/testsuites/mptests/mp13/task2.c
index 89deab59b8..344a30ee85 100644
--- a/testsuites/mptests/mp13/task2.c
+++ b/testsuites/mptests/mp13/task2.c
@@ -19,6 +19,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Test_task2(
diff --git a/testsuites/mptests/mp14/delay.c b/testsuites/mptests/mp14/delay.c
index a7375990d2..f1baeed713 100644
--- a/testsuites/mptests/mp14/delay.c
+++ b/testsuites/mptests/mp14/delay.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_timer_service_routine Delayed_send_event(
diff --git a/testsuites/mptests/mp14/evtask1.c b/testsuites/mptests/mp14/evtask1.c
index 8f3082bc3d..1512c85785 100644
--- a/testsuites/mptests/mp14/evtask1.c
+++ b/testsuites/mptests/mp14/evtask1.c
@@ -19,6 +19,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
extern rtems_multiprocessing_table Multiprocessing_configuration;
diff --git a/testsuites/mptests/mp14/evtmtask.c b/testsuites/mptests/mp14/evtmtask.c
index 05570aabb1..650e1e35e5 100644
--- a/testsuites/mptests/mp14/evtmtask.c
+++ b/testsuites/mptests/mp14/evtmtask.c
@@ -18,6 +18,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Delayed_events_task(
diff --git a/testsuites/mptests/mp14/exit.c b/testsuites/mptests/mp14/exit.c
index 69f1cf45f7..f27cc6ba71 100644
--- a/testsuites/mptests/mp14/exit.c
+++ b/testsuites/mptests/mp14/exit.c
@@ -16,6 +16,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
void Exit_test( void )
diff --git a/testsuites/mptests/mp14/init.c b/testsuites/mptests/mp14/init.c
index ea1924ad50..5fc602a776 100644
--- a/testsuites/mptests/mp14/init.c
+++ b/testsuites/mptests/mp14/init.c
@@ -21,6 +21,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#define CONFIGURE_INIT
#include "system.h"
diff --git a/testsuites/mptests/mp14/msgtask1.c b/testsuites/mptests/mp14/msgtask1.c
index c9ac364471..4d333e9e7e 100644
--- a/testsuites/mptests/mp14/msgtask1.c
+++ b/testsuites/mptests/mp14/msgtask1.c
@@ -20,6 +20,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
rtems_task Message_queue_task(
diff --git a/testsuites/mptests/mp14/pttask1.c b/testsuites/mptests/mp14/pttask1.c
index ce3362bc79..79307802ec 100644
--- a/testsuites/mptests/mp14/pttask1.c
+++ b/testsuites/mptests/mp14/pttask1.c
@@ -18,6 +18,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
extern rtems_multiprocessing_table Multiprocessing_configuration;
diff --git a/testsuites/mptests/mp14/smtask1.c b/testsuites/mptests/mp14/smtask1.c
index 3faefacfa1..d30daad0f9 100644
--- a/testsuites/mptests/mp14/smtask1.c
+++ b/testsuites/mptests/mp14/smtask1.c
@@ -17,6 +17,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include "system.h"
extern rtems_multiprocessing_table Multiprocessing_configuration;