summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxobj01/init.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-22 19:14:51 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-12-14 07:03:29 +0100
commit21275b58a5a69c3c838082ffc8a7a3641f32ea9a (patch)
treed331e17c15d71f107d0f14581a93ddf768b05813 /testsuites/psxtests/psxobj01/init.c
parentrtems: Use object information to get config max (diff)
downloadrtems-21275b58a5a69c3c838082ffc8a7a3641f32ea9a.tar.bz2
score: Static Objects_Information initialization
Statically allocate the objects information together with the initial set of objects either via <rtems/confdefs.h>. Provide default object informations with zero objects via librtemscpu.a. This greatly simplifies the workspace size estimate. RTEMS applications which do not use the unlimited objects option are easier to debug since all objects reside now in statically allocated objects of the right types. Close #3621.
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psxobj01/init.c35
1 files changed, 15 insertions, 20 deletions
diff --git a/testsuites/psxtests/psxobj01/init.c b/testsuites/psxtests/psxobj01/init.c
index 52cad3462d..ba1e327ea5 100644
--- a/testsuites/psxtests/psxobj01/init.c
+++ b/testsuites/psxtests/psxobj01/init.c
@@ -22,15 +22,18 @@
const char rtems_test_name[] = "PSXOBJ 1";
-/* forward declarations to avoid warnings */
-rtems_task Init(rtems_task_argument ignored);
+typedef struct {
+ Objects_Control Object;
+} Test_Control;
-rtems_task Init(
+/* very fake object class to test with */
+OBJECTS_INFORMATION_DEFINE( Test, 1, 4, Test_Control, 0, 10, NULL );
+
+static rtems_task Init(
rtems_task_argument ignored
)
{
Objects_Get_by_name_error error;
- Objects_Information TestClass;
Objects_Control *the_object;
char name[64];
size_t name_len;
@@ -38,21 +41,9 @@ rtems_task Init(
TEST_BEGIN();
- /* very fake object class to test with */
- _Objects_Initialize_information(
- &TestClass,
- 1, /* the_api */
- 4, /* the_class */
- 0, /* maximum */
- 4, /* size */
- 10, /* maximum_name_length */
- NULL /* Objects_Thread_queue_Extract_callout extract */
- );
-
-
puts( "INIT - _Objects_Get_by_name - NULL name" );
_Objects_Allocator_lock();
- the_object = _Objects_Get_by_name( &TestClass, NULL, NULL, &error );
+ the_object = _Objects_Get_by_name( &Test_Information, NULL, NULL, &error );
_Objects_Allocator_unlock();
rtems_test_assert( the_object == NULL );
rtems_test_assert( error == OBJECTS_GET_BY_NAME_INVALID_NAME );
@@ -60,7 +51,7 @@ rtems_task Init(
puts( "INIT - _Objects_Get_by_name - name too long" );
strcpy( name, "TOOOOOOOOOOOOOOOOOO LONG" );
_Objects_Allocator_lock();
- the_object = _Objects_Get_by_name( &TestClass, name, NULL, &error );
+ the_object = _Objects_Get_by_name( &Test_Information, name, NULL, &error );
_Objects_Allocator_unlock();
rtems_test_assert( the_object == NULL );
rtems_test_assert( error == OBJECTS_GET_BY_NAME_NAME_TOO_LONG );
@@ -69,7 +60,7 @@ rtems_task Init(
strcpy( name, "NOT FOUND" );
name_len = 123;
_Objects_Allocator_lock();
- the_object = _Objects_Get_by_name( &TestClass, name, &name_len, &error );
+ the_object = _Objects_Get_by_name( &Test_Information, name, &name_len, &error );
_Objects_Allocator_unlock();
rtems_test_assert( the_object == NULL );
rtems_test_assert( error == OBJECTS_GET_BY_NAME_NO_OBJECT );
@@ -79,7 +70,11 @@ rtems_task Init(
puts( "INIT - _Objects_Set_name fails - out of memory" );
rtems_workspace_greedy_allocate( NULL, 0 );
- bc = _Objects_Set_name( &TestClass, &_Thread_Get_executing()->Object, name );
+ bc = _Objects_Set_name(
+ &Test_Information,
+ &_Thread_Get_executing()->Object,
+ name
+ );
rtems_test_assert( bc == false );
TEST_END();