summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/block08/init.c
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2010-01-19 08:55:18 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2010-01-19 08:55:18 +0000
commit64734fc14b1015c1568c2906c9aeab1c6a7db82d (patch)
tree853af83fb05c8fcf05e3d7c44308895377b0028d /testsuites/libtests/block08/init.c
parent2010-01-18 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-64734fc14b1015c1568c2906c9aeab1c6a7db82d.tar.bz2
updates and new test cases
Diffstat (limited to 'testsuites/libtests/block08/init.c')
-rw-r--r--testsuites/libtests/block08/init.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/testsuites/libtests/block08/init.c b/testsuites/libtests/block08/init.c
new file mode 100644
index 0000000000..aad3ced4f4
--- /dev/null
+++ b/testsuites/libtests/block08/init.c
@@ -0,0 +1,32 @@
+/* Init
+ *
+ * This routine is the initialization task for this test program.
+ *
+ * Input parameters:
+ * argument - task argument
+ *
+ * Output parameters: NONE
+ *
+ * Copyright (C) 2010 OKTET Labs, St.-Petersburg, Russia
+ * Author: Oleg Kravtsov <Oleg.Kravtsov@oktetlabs.ru>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#define CONFIGURE_INIT
+#include "system.h"
+
+#include "bdbuf_tests.h"
+
+rtems_task Init(rtems_task_argument argument)
+{
+ rtems_status_code status;
+
+ run_bdbuf_tests();
+ exit(0);
+}
+