summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp10
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 03:33:25 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 03:33:25 +0000
commitb1274bd94c94520ed9402f85c949976d7008093e (patch)
tree6ed7755c34e5fcccbe06ff095017a4399de180ff /testsuites/sptests/sp10
parentWhitespace removal. (diff)
downloadrtems-b1274bd94c94520ed9402f85c949976d7008093e.tar.bz2
Whitespace removal.
Diffstat (limited to 'testsuites/sptests/sp10')
-rw-r--r--testsuites/sptests/sp10/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/sptests/sp10/init.c b/testsuites/sptests/sp10/init.c
index 1313ed2136..1d822baa6f 100644
--- a/testsuites/sptests/sp10/init.c
+++ b/testsuites/sptests/sp10/init.c
@@ -25,7 +25,7 @@ rtems_task Init(
puts( "Init - rtems_debug_is_enabled - is 0x1 set? No" );
is_set = rtems_debug_is_enabled( 0x1 );
rtems_test_assert(is_set == false);
-
+
puts( "Init - rtems_debug_enable - set 0x1" );
rtems_debug_enable(0x1);
rtems_test_assert(_Debug_Level == 0x1);
@@ -33,7 +33,7 @@ rtems_task Init(
puts( "Init - rtems_debug_is_enabled - is 0x1 set? Yes" );
is_set = rtems_debug_is_enabled( 0x1 );
rtems_test_assert(is_set == true);
-
+
puts( "Init - rtems_debug_disable - clear 0x1" );
rtems_debug_disable(0x1);
rtems_test_assert(_Debug_Level == 0x0);
@@ -41,7 +41,7 @@ rtems_task Init(
puts( "Init - rtems_debug_is_enabled - is 0x1 set? No" );
is_set = rtems_debug_is_enabled( 0x1 );
rtems_test_assert(is_set == false);
-
+
puts( "*** END OF TEST 10 ***" );
rtems_test_exit(0);
}