summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-05-07 21:57:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-05-07 21:57:43 +0000
commitac9d3cf84dc1b06af601d2ce876790aa4cfcb7ad (patch)
tree02a94b3b7a61ad0fc3b79feb14c0fcd6d91cd563 /testsuites
parent2008-05-07 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-ac9d3cf84dc1b06af601d2ce876790aa4cfcb7ad.tar.bz2
2008-05-07 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp32/init.c: Formatting.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/sptests/ChangeLog4
-rw-r--r--testsuites/sptests/sp32/init.c50
2 files changed, 28 insertions, 26 deletions
diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog
index 0be2f185cf..5a82b4b159 100644
--- a/testsuites/sptests/ChangeLog
+++ b/testsuites/sptests/ChangeLog
@@ -1,3 +1,7 @@
+2008-05-07 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * sp32/init.c: Formatting.
+
2008-02-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp09/screen01.c: Correct test.
diff --git a/testsuites/sptests/sp32/init.c b/testsuites/sptests/sp32/init.c
index 1b2712ddb3..e415d4534f 100644
--- a/testsuites/sptests/sp32/init.c
+++ b/testsuites/sptests/sp32/init.c
@@ -17,8 +17,8 @@ rtems_task Init (rtems_task_argument ignored);
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
-#define CONFIGURE_MAXIMUM_TASKS 1
-#define CONFIGURE_MAXIMUM_PERIODS 1
+#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_MAXIMUM_PERIODS 1
#define CONFIGURE_INIT
@@ -27,14 +27,12 @@ rtems_task Init (rtems_task_argument ignored);
rtems_task Init(
rtems_task_argument ignored
) {
- rtems_status_code status;
- rtems_interval timestamps[6],
- wantintervals[5] =
- { 1, 50, 200, 25, 3 };
- rtems_name period_name =
- rtems_build_name('P','E','R','a');
- rtems_id period_id;
- int loopy;
+ rtems_status_code status;
+ rtems_interval timestamps[6],
+ wantintervals[5] = { 1, 50, 200, 25, 3 };
+ rtems_name period_name = rtems_build_name('P','E','R','a');
+ rtems_id period_id;
+ int loopy;
printf("\n\n*** TEST 32 ***\n");
@@ -62,17 +60,17 @@ rtems_task Init(
/* loop through and gather more timestamps */
for (loopy = 1; loopy < 5; loopy++) {
- status = rtems_rate_monotonic_period(
- period_id,
- wantintervals[loopy]
- );
- directive_failed(status, "rate_monotonic_period");
-
- status = rtems_clock_get(
- RTEMS_CLOCK_GET_TICKS_SINCE_BOOT,
- &timestamps[loopy]
- );
- directive_failed(status, "clock_get");
+ status = rtems_rate_monotonic_period(
+ period_id,
+ wantintervals[loopy]
+ );
+ directive_failed(status, "rate_monotonic_period");
+
+ status = rtems_clock_get(
+ RTEMS_CLOCK_GET_TICKS_SINCE_BOOT,
+ &timestamps[loopy]
+ );
+ directive_failed(status, "clock_get");
}
/* block one last time */
@@ -99,11 +97,11 @@ rtems_task Init(
/* tabulate and print results */
for (loopy = 0; loopy < 5; loopy++) {
- printf(
- "period %d: measured %d tick(s), wanted %d\n",
- loopy, timestamps[loopy+1] - timestamps[loopy],
- wantintervals[loopy]
- );
+ printf(
+ "period %d: measured %d tick(s), wanted %d\n",
+ loopy, timestamps[loopy+1] - timestamps[loopy],
+ wantintervals[loopy]
+ );
}
/* the end */