summaryrefslogtreecommitdiffstats
path: root/testsuites/support
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-02-22 11:11:44 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-02-22 11:11:44 +0000
commitb1305bb945f52066a3fffa51c2d71f0d369107bc (patch)
tree452adb90820f3c271efc2be85c7a1ba1b7a220f4 /testsuites/support
parent2011-02-22 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b1305bb945f52066a3fffa51c2d71f0d369107bc.tar.bz2
Add HAVE_CONFIG_H.
Diffstat (limited to 'testsuites/support')
-rw-r--r--testsuites/support/src/spin.c4
-rw-r--r--testsuites/support/src/test_support.c4
-rw-r--r--testsuites/support/src/tmtests_empty_function.c4
-rw-r--r--testsuites/support/src/tmtests_support.c6
4 files changed, 18 insertions, 0 deletions
diff --git a/testsuites/support/src/spin.c b/testsuites/support/src/spin.c
index a3a73d1f5f..d2b1d425be 100644
--- a/testsuites/support/src/spin.c
+++ b/testsuites/support/src/spin.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <rtems.h>
/*
diff --git a/testsuites/support/src/test_support.c b/testsuites/support/src/test_support.c
index 319be6f17b..aebaabe5ec 100644
--- a/testsuites/support/src/test_support.c
+++ b/testsuites/support/src/test_support.c
@@ -9,6 +9,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <fcntl.h>
#include <tmacros.h>
#include "test_support.h"
diff --git a/testsuites/support/src/tmtests_empty_function.c b/testsuites/support/src/tmtests_empty_function.c
index 17ac5bf39c..9b4ad95b5a 100644
--- a/testsuites/support/src/tmtests_empty_function.c
+++ b/testsuites/support/src/tmtests_empty_function.c
@@ -12,6 +12,10 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <rtems.h>
rtems_status_code benchmark_timer_empty_function( void );
diff --git a/testsuites/support/src/tmtests_support.c b/testsuites/support/src/tmtests_support.c
index d3d7544c9e..aa9da5a7cb 100644
--- a/testsuites/support/src/tmtests_support.c
+++ b/testsuites/support/src/tmtests_support.c
@@ -9,6 +9,12 @@
* $Id$
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtems/btimer.h>
+
#include <bsp.h>
#include <rtems/timerdrv.h>
#include "test_support.h"