summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp77/init.c
blob: 2af710e2f1c219f117ed689fe52495d17371bbd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 *  COPYRIGHT (c) 2012.
 *  Krzysztof Miesowicz krzysztof.miesowicz@gmail.com
 *  
 *  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.
 */

#include <tmacros.h>
#include "test_support.h"

/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);

rtems_task Init(
  rtems_task_argument argument
)
{
  puts( "\n\n*** TEST sp77 ***" );

  rtems_status_code status;
  rtems_id id;

  status = rtems_message_queue_create(
    rtems_build_name( 'M', 'Q' , 'T', '1'),
    2,
    SIZE_MAX-2,
    RTEMS_DEFAULT_ATTRIBUTES,
      &id
  );
  
  fatal_directive_check_status_only(status , RTEMS_UNSATISFIED ,
				    "attempt to create message queue return: ");  
  puts( "*** END OF TEST sp77 ***" );

  rtems_test_exit(0);
}

/* configuration information */

#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER

#define CONFIGURE_MAXIMUM_TASKS             1
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE

#define CONFIGURE_INIT

#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1
#define CONFIGURE_MESSAGE_BUFFER_MEMORY (CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE( \
						2,SIZE_MAX))

#include <rtems/confdefs.h>
/* end of file */