summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spprintk/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-06-24 06:35:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-06-24 06:35:29 +0000
commit046f47154f6691db5d4bef5493f63eb609c0e57f (patch)
treea0529e04d3b924f8facca80460091ad650829cfa /testsuites/sptests/spprintk/init.c
parent2009-06-18 Fernando Nicodemos <fgnicodemos@terra.com.br> (diff)
downloadrtems-046f47154f6691db5d4bef5493f63eb609c0e57f.tar.bz2
2009-06-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, spprintk/init.c, spprintk/spprintk.scn: Enhance spprintk. Add two new fatal error tests to cover __assert_func. * spfatal11/.cvsignore, spfatal11/Makefile.am, spfatal11/init.c, spfatal11/spfatal11.doc, spfatal11/spfatal11.scn: New files.
Diffstat (limited to 'testsuites/sptests/spprintk/init.c')
-rw-r--r--testsuites/sptests/spprintk/init.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuites/sptests/spprintk/init.c b/testsuites/sptests/spprintk/init.c
index 4acf3e104c..bff53ac0bd 100644
--- a/testsuites/sptests/spprintk/init.c
+++ b/testsuites/sptests/spprintk/init.c
@@ -23,6 +23,8 @@ rtems_task Init(
printk( "\n\n*** TEST PRINTK ***\n" );
+ putk( "This is a test of putk\n" );
+
printk( "bad format -- %%q in parentheses (%q)\n" );
printk( "bad format -- %%lq in parentheses (%lq)\n", 0x1234 );
@@ -56,7 +58,7 @@ rtems_task Init(
printk( "%%c of X -- (%c)\n", 'X' );
- printk( "*** END OF TEST PRINTK ***" );
+ printk( "*** END OF TEST PRINTK ***\n" );
rtems_test_exit( 0 );
}