forked from Imagelibrary/rtems
validation: Test Message Manager
The test source code is generated from specification items by the "./spec2modules.py" script contained in the git://git.rtems.org/rtems-central.git Git repository. Please read the "How-To" section in the "Software Requirements Engineering" chapter of the RTEMS Software Engineering manual to get more information about the process. Update #3716.
This commit is contained in:
committed by
Sebastian Huber
parent
134b4cb709
commit
04fb7b6040
@@ -13,6 +13,7 @@ links: []
|
||||
source:
|
||||
- testsuites/validation/tc-barrier-performance.c
|
||||
- testsuites/validation/tc-event-performance.c
|
||||
- testsuites/validation/tc-message-performance.c
|
||||
- testsuites/validation/ts-performance-no-clock-0.c
|
||||
stlib: []
|
||||
target: testsuites/validation/ts-performance-no-clock-0.exe
|
||||
|
||||
@@ -13,7 +13,6 @@ links: []
|
||||
source:
|
||||
- testsuites/validation/tc-acfg-appl-needs-clock-driver.c
|
||||
- testsuites/validation/tc-event-send-receive.c
|
||||
- testsuites/validation/tc-message-construct-errors.c
|
||||
- testsuites/validation/tc-object.c
|
||||
- testsuites/validation/tc-signal-catch.c
|
||||
- testsuites/validation/tc-signal-send.c
|
||||
|
||||
@@ -31,6 +31,14 @@ source:
|
||||
- testsuites/validation/tc-io-getchark.c
|
||||
- testsuites/validation/tc-io-putc.c
|
||||
- testsuites/validation/tc-io-put-char.c
|
||||
- testsuites/validation/tc-message-broadcast.c
|
||||
- testsuites/validation/tc-message-construct.c
|
||||
- testsuites/validation/tc-message-delete.c
|
||||
- testsuites/validation/tc-message-flush-pending.c
|
||||
- testsuites/validation/tc-message-ident.c
|
||||
- testsuites/validation/tc-message-macros.c
|
||||
- testsuites/validation/tc-message-receive.c
|
||||
- testsuites/validation/tc-message-urgent-send.c
|
||||
- testsuites/validation/tc-score-fatal.c
|
||||
- testsuites/validation/tr-event-constant.c
|
||||
- testsuites/validation/tr-mtx-seize-try.c
|
||||
|
||||
1204
testsuites/validation/tc-message-broadcast.c
Normal file
1204
testsuites/validation/tc-message-broadcast.c
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,932 +0,0 @@
|
||||
/* SPDX-License-Identifier: BSD-2-Clause */
|
||||
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* @ingroup RTEMSTestCaseRtemsMessageReqConstructErrors
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2020, 2021 embedded brains GmbH (http://www.embedded-brains.de)
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file is part of the RTEMS quality process and was automatically
|
||||
* generated. If you find something that needs to be fixed or
|
||||
* worded better please post a report or patch to an RTEMS mailing list
|
||||
* or raise a bug report:
|
||||
*
|
||||
* https://www.rtems.org/bugs.html
|
||||
*
|
||||
* For information on updating and regenerating please refer to the How-To
|
||||
* section in the Software Requirements Engineering chapter of the
|
||||
* RTEMS Software Engineering manual. The manual is provided as a part of
|
||||
* a release. For development sources please refer to the online
|
||||
* documentation at:
|
||||
*
|
||||
* https://docs.rtems.org
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <rtems.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "tx-support.h"
|
||||
|
||||
#include <rtems/test.h>
|
||||
|
||||
/**
|
||||
* @defgroup RTEMSTestCaseRtemsMessageReqConstructErrors \
|
||||
* spec:/rtems/message/req/construct-errors
|
||||
*
|
||||
* @ingroup RTEMSTestSuiteTestsuitesValidation0
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Pre_Config_Valid,
|
||||
RtemsMessageReqConstructErrors_Pre_Config_Null,
|
||||
RtemsMessageReqConstructErrors_Pre_Config_NA
|
||||
} RtemsMessageReqConstructErrors_Pre_Config;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Pre_Name_Valid,
|
||||
RtemsMessageReqConstructErrors_Pre_Name_Invalid,
|
||||
RtemsMessageReqConstructErrors_Pre_Name_NA
|
||||
} RtemsMessageReqConstructErrors_Pre_Name;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Pre_Id_Id,
|
||||
RtemsMessageReqConstructErrors_Pre_Id_Null,
|
||||
RtemsMessageReqConstructErrors_Pre_Id_NA
|
||||
} RtemsMessageReqConstructErrors_Pre_Id;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Pre_MaxPending_Valid,
|
||||
RtemsMessageReqConstructErrors_Pre_MaxPending_Zero,
|
||||
RtemsMessageReqConstructErrors_Pre_MaxPending_Big,
|
||||
RtemsMessageReqConstructErrors_Pre_MaxPending_NA
|
||||
} RtemsMessageReqConstructErrors_Pre_MaxPending;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Pre_MaxSize_Valid,
|
||||
RtemsMessageReqConstructErrors_Pre_MaxSize_Zero,
|
||||
RtemsMessageReqConstructErrors_Pre_MaxSize_Big,
|
||||
RtemsMessageReqConstructErrors_Pre_MaxSize_NA
|
||||
} RtemsMessageReqConstructErrors_Pre_MaxSize;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Pre_Free_Yes,
|
||||
RtemsMessageReqConstructErrors_Pre_Free_No,
|
||||
RtemsMessageReqConstructErrors_Pre_Free_NA
|
||||
} RtemsMessageReqConstructErrors_Pre_Free;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Pre_Area_Valid,
|
||||
RtemsMessageReqConstructErrors_Pre_Area_Null,
|
||||
RtemsMessageReqConstructErrors_Pre_Area_NA
|
||||
} RtemsMessageReqConstructErrors_Pre_Area;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Pre_AreaSize_Valid,
|
||||
RtemsMessageReqConstructErrors_Pre_AreaSize_Invalid,
|
||||
RtemsMessageReqConstructErrors_Pre_AreaSize_NA
|
||||
} RtemsMessageReqConstructErrors_Pre_AreaSize;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Post_Status_Ok,
|
||||
RtemsMessageReqConstructErrors_Post_Status_InvAddr,
|
||||
RtemsMessageReqConstructErrors_Post_Status_InvName,
|
||||
RtemsMessageReqConstructErrors_Post_Status_InvNum,
|
||||
RtemsMessageReqConstructErrors_Post_Status_InvSize,
|
||||
RtemsMessageReqConstructErrors_Post_Status_TooMany,
|
||||
RtemsMessageReqConstructErrors_Post_Status_Unsat,
|
||||
RtemsMessageReqConstructErrors_Post_Status_NA
|
||||
} RtemsMessageReqConstructErrors_Post_Status;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Post_Name_Valid,
|
||||
RtemsMessageReqConstructErrors_Post_Name_Invalid,
|
||||
RtemsMessageReqConstructErrors_Post_Name_NA
|
||||
} RtemsMessageReqConstructErrors_Post_Name;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Set,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Nop,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_NA
|
||||
} RtemsMessageReqConstructErrors_Post_IdVar;
|
||||
|
||||
/**
|
||||
* @brief Test context for spec:/rtems/message/req/construct-errors test case.
|
||||
*/
|
||||
typedef struct {
|
||||
rtems_status_code status;
|
||||
|
||||
const rtems_message_queue_config *config;
|
||||
|
||||
rtems_message_queue_config config_value;
|
||||
|
||||
rtems_id *id;
|
||||
|
||||
rtems_id id_value;
|
||||
|
||||
void *seized_objects;
|
||||
|
||||
/**
|
||||
* @brief This member defines the pre-condition states for the next action.
|
||||
*/
|
||||
size_t pcs[ 8 ];
|
||||
|
||||
/**
|
||||
* @brief This member indicates if the test action loop is currently
|
||||
* executed.
|
||||
*/
|
||||
bool in_action_loop;
|
||||
} RtemsMessageReqConstructErrors_Context;
|
||||
|
||||
static RtemsMessageReqConstructErrors_Context
|
||||
RtemsMessageReqConstructErrors_Instance;
|
||||
|
||||
static const char * const RtemsMessageReqConstructErrors_PreDesc_Config[] = {
|
||||
"Valid",
|
||||
"Null",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqConstructErrors_PreDesc_Name[] = {
|
||||
"Valid",
|
||||
"Invalid",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqConstructErrors_PreDesc_Id[] = {
|
||||
"Id",
|
||||
"Null",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqConstructErrors_PreDesc_MaxPending[] = {
|
||||
"Valid",
|
||||
"Zero",
|
||||
"Big",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqConstructErrors_PreDesc_MaxSize[] = {
|
||||
"Valid",
|
||||
"Zero",
|
||||
"Big",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqConstructErrors_PreDesc_Free[] = {
|
||||
"Yes",
|
||||
"No",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqConstructErrors_PreDesc_Area[] = {
|
||||
"Valid",
|
||||
"Null",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqConstructErrors_PreDesc_AreaSize[] = {
|
||||
"Valid",
|
||||
"Invalid",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const * const RtemsMessageReqConstructErrors_PreDesc[] = {
|
||||
RtemsMessageReqConstructErrors_PreDesc_Config,
|
||||
RtemsMessageReqConstructErrors_PreDesc_Name,
|
||||
RtemsMessageReqConstructErrors_PreDesc_Id,
|
||||
RtemsMessageReqConstructErrors_PreDesc_MaxPending,
|
||||
RtemsMessageReqConstructErrors_PreDesc_MaxSize,
|
||||
RtemsMessageReqConstructErrors_PreDesc_Free,
|
||||
RtemsMessageReqConstructErrors_PreDesc_Area,
|
||||
RtemsMessageReqConstructErrors_PreDesc_AreaSize,
|
||||
NULL
|
||||
};
|
||||
|
||||
#define NAME rtems_build_name( 'T', 'E', 'S', 'T' )
|
||||
|
||||
#define MAX_MESSAGE_QUEUES 4
|
||||
|
||||
#define MAX_PENDING_MESSAGES 1
|
||||
|
||||
#define MAX_MESSAGE_SIZE 1
|
||||
|
||||
static RTEMS_MESSAGE_QUEUE_BUFFER( MAX_MESSAGE_SIZE )
|
||||
buffers_to_seize[ MAX_MESSAGE_QUEUES ][ MAX_PENDING_MESSAGES ];
|
||||
|
||||
static RTEMS_MESSAGE_QUEUE_BUFFER( MAX_MESSAGE_SIZE )
|
||||
buffers[ MAX_PENDING_MESSAGES ];
|
||||
|
||||
static rtems_status_code Create( void *arg, uint32_t *id )
|
||||
{
|
||||
rtems_message_queue_config config;
|
||||
size_t *i;
|
||||
|
||||
i = arg;
|
||||
T_quiet_lt_sz( *i, MAX_MESSAGE_QUEUES );
|
||||
|
||||
memset( &config, 0, sizeof( config ) );
|
||||
config.name = rtems_build_name( 'S', 'I', 'Z', 'E' );
|
||||
config.maximum_pending_messages = MAX_PENDING_MESSAGES;
|
||||
config.maximum_message_size = MAX_MESSAGE_SIZE;
|
||||
config.storage_size = sizeof( buffers_to_seize[ *i ] );
|
||||
config.storage_area = buffers_to_seize[ *i ];
|
||||
config.attributes = RTEMS_DEFAULT_ATTRIBUTES;
|
||||
|
||||
++(*i);
|
||||
|
||||
return rtems_message_queue_construct( &config, id );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Pre_Config_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Pre_Config state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Pre_Config_Valid: {
|
||||
/*
|
||||
* While the ``config`` parameter references an object of type
|
||||
* rtems_message_queue_config.
|
||||
*/
|
||||
ctx->config = &ctx->config_value;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Config_Null: {
|
||||
/*
|
||||
* While the ``config`` parameter is NULL.
|
||||
*/
|
||||
ctx->config = NULL;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Config_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Pre_Name_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Pre_Name state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Pre_Name_Valid: {
|
||||
/*
|
||||
* While the name of the message queue configuration is valid.
|
||||
*/
|
||||
ctx->config_value.name = NAME;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Name_Invalid: {
|
||||
/*
|
||||
* While the name of the message queue configuration is invalid.
|
||||
*/
|
||||
ctx->config_value.name = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Name_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Pre_Id_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Pre_Id state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Pre_Id_Id: {
|
||||
/*
|
||||
* While the ``id`` parameter references an object of type rtems_id.
|
||||
*/
|
||||
ctx->id = &ctx->id_value;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Id_Null: {
|
||||
/*
|
||||
* While the ``id`` parameter is NULL.
|
||||
*/
|
||||
ctx->id = NULL;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Id_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Pre_MaxPending_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Pre_MaxPending state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Pre_MaxPending_Valid: {
|
||||
/*
|
||||
* While the maximum number of pending messages of the message queue
|
||||
* configuration is valid.
|
||||
*/
|
||||
ctx->config_value.maximum_pending_messages = MAX_PENDING_MESSAGES;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_MaxPending_Zero: {
|
||||
/*
|
||||
* While the maximum number of pending messages of the message queue
|
||||
* configuration is zero.
|
||||
*/
|
||||
ctx->config_value.maximum_pending_messages = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_MaxPending_Big: {
|
||||
/*
|
||||
* While the maximum number of pending messages of the message queue
|
||||
* configuration is big enough so that a calculation to get the message
|
||||
* buffer storage area size overflows.
|
||||
*/
|
||||
ctx->config_value.maximum_pending_messages = UINT32_MAX;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_MaxPending_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Pre_MaxSize_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Pre_MaxSize state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Pre_MaxSize_Valid: {
|
||||
/*
|
||||
* While the maximum message size of the message queue configuration is
|
||||
* valid.
|
||||
*/
|
||||
if ( ctx->config_value.maximum_pending_messages == UINT32_MAX ) {
|
||||
/*
|
||||
* At least on 64-bit systems we need a bit of help to ensure that we
|
||||
* meet the Big state of the MaxPending pre-condition. The following
|
||||
* message size is valid with respect to calculations involving only
|
||||
* the message size.
|
||||
*/
|
||||
ctx->config_value.maximum_message_size = SIZE_MAX - sizeof( uintptr_t ) +
|
||||
1 - sizeof( CORE_message_queue_Buffer );
|
||||
} else {
|
||||
ctx->config_value.maximum_message_size = MAX_MESSAGE_SIZE;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_MaxSize_Zero: {
|
||||
/*
|
||||
* While the maximum message size of the message queue configuration is
|
||||
* zero.
|
||||
*/
|
||||
ctx->config_value.maximum_message_size = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_MaxSize_Big: {
|
||||
/*
|
||||
* While the maximum message size of the message queue configuration is
|
||||
* big enough so that a calculation to get the message buffer storage
|
||||
* area size overflows.
|
||||
*/
|
||||
ctx->config_value.maximum_message_size = SIZE_MAX;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_MaxSize_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Pre_Free_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Pre_Free state
|
||||
)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Pre_Free_Yes: {
|
||||
/*
|
||||
* While the system has at least one inactive message queue object
|
||||
* available.
|
||||
*/
|
||||
/* Nothing to do */
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Free_No: {
|
||||
/*
|
||||
* While the system has no inactive message queue object available.
|
||||
*/
|
||||
i = 0;
|
||||
ctx->seized_objects = T_seize_objects( Create, &i );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Free_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Pre_Area_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Pre_Area state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Pre_Area_Valid: {
|
||||
/*
|
||||
* While the message buffer storage area begin pointer of the message
|
||||
* queue configuration is valid.
|
||||
*/
|
||||
ctx->config_value.storage_area = buffers;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Area_Null: {
|
||||
/*
|
||||
* While the message buffer storage area begin pointer of the message
|
||||
* queue configuration is NULL.
|
||||
*/
|
||||
ctx->config_value.storage_area = NULL;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_Area_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Pre_AreaSize_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Pre_AreaSize state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Pre_AreaSize_Valid: {
|
||||
/*
|
||||
* While the message buffer storage area size of the message queue
|
||||
* configuration is valid.
|
||||
*/
|
||||
ctx->config_value.storage_size = sizeof( buffers );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_AreaSize_Invalid: {
|
||||
/*
|
||||
* While the message buffer storage area size of the message queue
|
||||
* configuration is invalid.
|
||||
*/
|
||||
ctx->config_value.storage_size = SIZE_MAX;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Pre_AreaSize_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Post_Status_Check(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Post_Status state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Post_Status_Ok: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_construct() shall be
|
||||
* RTEMS_SUCCESSFUL.
|
||||
*/
|
||||
T_rsc_success( ctx->status );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Status_InvAddr: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_construct() shall be
|
||||
* RTEMS_INVALID_ADDRESS.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_INVALID_ADDRESS );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Status_InvName: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_construct() shall be
|
||||
* RTEMS_INVALID_NAME.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_INVALID_NAME );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Status_InvNum: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_construct() shall be
|
||||
* RTEMS_INVALID_NUMBER.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_INVALID_NUMBER );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Status_InvSize: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_construct() shall be
|
||||
* RTEMS_INVALID_SIZE.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_INVALID_SIZE );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Status_TooMany: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_construct() shall be
|
||||
* RTEMS_TOO_MANY.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_TOO_MANY );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Status_Unsat: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_construct() shall be
|
||||
* RTEMS_UNSATISFIED.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_UNSATISFIED );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Status_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Post_Name_Check(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Post_Name state
|
||||
)
|
||||
{
|
||||
rtems_status_code sc;
|
||||
rtems_id id;
|
||||
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Post_Name_Valid: {
|
||||
/*
|
||||
* The unique object name shall identify the message queue constructed by
|
||||
* the rtems_message_queue_construct() call.
|
||||
*/
|
||||
id = 0;
|
||||
sc = rtems_message_queue_ident( NAME, RTEMS_SEARCH_LOCAL_NODE, &id );
|
||||
T_rsc_success( sc );
|
||||
T_eq_u32( id, ctx->id_value );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Name_Invalid: {
|
||||
/*
|
||||
* The unique object name shall not identify a message queue.
|
||||
*/
|
||||
sc = rtems_message_queue_ident( NAME, RTEMS_SEARCH_LOCAL_NODE, &id );
|
||||
T_rsc( sc, RTEMS_INVALID_NAME );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_Name_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Post_IdVar_Check(
|
||||
RtemsMessageReqConstructErrors_Context *ctx,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqConstructErrors_Post_IdVar_Set: {
|
||||
/*
|
||||
* The value of the object referenced by the ``id`` parameter shall be
|
||||
* set to the object identifier of the constructed message queue after
|
||||
* the return of the rtems_message_queue_construct() call.
|
||||
*/
|
||||
T_eq_ptr( ctx->id, &ctx->id_value );
|
||||
T_ne_u32( ctx->id_value, INVALID_ID );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_IdVar_Nop: {
|
||||
/*
|
||||
* Objects referenced by the ``id`` parameter in past calls to
|
||||
* rtems_message_queue_construct() shall not be accessed by the
|
||||
* rtems_message_queue_construct() call.
|
||||
*/
|
||||
T_eq_u32( ctx->id_value, INVALID_ID );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqConstructErrors_Post_IdVar_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Prepare(
|
||||
RtemsMessageReqConstructErrors_Context *ctx
|
||||
)
|
||||
{
|
||||
ctx->id_value = INVALID_ID;
|
||||
memset( &ctx->config_value, 0, sizeof( ctx->config_value ) );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Action(
|
||||
RtemsMessageReqConstructErrors_Context *ctx
|
||||
)
|
||||
{
|
||||
ctx->status = rtems_message_queue_construct( ctx->config, ctx->id );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqConstructErrors_Cleanup(
|
||||
RtemsMessageReqConstructErrors_Context *ctx
|
||||
)
|
||||
{
|
||||
if ( ctx->id_value != INVALID_ID ) {
|
||||
rtems_status_code sc;
|
||||
|
||||
sc = rtems_message_queue_delete( ctx->id_value );
|
||||
T_rsc_success( sc );
|
||||
|
||||
ctx->id_value = INVALID_ID;
|
||||
}
|
||||
|
||||
T_surrender_objects( &ctx->seized_objects, rtems_message_queue_delete );
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
uint16_t Skip : 1;
|
||||
uint16_t Pre_Config_NA : 1;
|
||||
uint16_t Pre_Name_NA : 1;
|
||||
uint16_t Pre_Id_NA : 1;
|
||||
uint16_t Pre_MaxPending_NA : 1;
|
||||
uint16_t Pre_MaxSize_NA : 1;
|
||||
uint16_t Pre_Free_NA : 1;
|
||||
uint16_t Pre_Area_NA : 1;
|
||||
uint16_t Pre_AreaSize_NA : 1;
|
||||
uint16_t Post_Status : 3;
|
||||
uint16_t Post_Name : 2;
|
||||
uint16_t Post_IdVar : 2;
|
||||
} RtemsMessageReqConstructErrors_Entry;
|
||||
|
||||
static const RtemsMessageReqConstructErrors_Entry
|
||||
RtemsMessageReqConstructErrors_Entries[] = {
|
||||
{ 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
RtemsMessageReqConstructErrors_Post_Status_InvAddr,
|
||||
RtemsMessageReqConstructErrors_Post_Name_Invalid,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
RtemsMessageReqConstructErrors_Post_Status_InvName,
|
||||
RtemsMessageReqConstructErrors_Post_Name_Invalid,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
RtemsMessageReqConstructErrors_Post_Status_InvNum,
|
||||
RtemsMessageReqConstructErrors_Post_Name_Invalid,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
RtemsMessageReqConstructErrors_Post_Status_InvSize,
|
||||
RtemsMessageReqConstructErrors_Post_Name_Invalid,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
RtemsMessageReqConstructErrors_Post_Status_TooMany,
|
||||
RtemsMessageReqConstructErrors_Post_Name_Invalid,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
RtemsMessageReqConstructErrors_Post_Status_Unsat,
|
||||
RtemsMessageReqConstructErrors_Post_Name_Invalid,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqConstructErrors_Post_Status_Ok,
|
||||
RtemsMessageReqConstructErrors_Post_Name_Valid,
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Set }
|
||||
};
|
||||
|
||||
static const uint8_t
|
||||
RtemsMessageReqConstructErrors_Map[] = {
|
||||
6, 5, 5, 5, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 2, 2,
|
||||
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||||
4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0
|
||||
};
|
||||
|
||||
static size_t RtemsMessageReqConstructErrors_Scope(
|
||||
void *arg,
|
||||
char *buf,
|
||||
size_t n
|
||||
)
|
||||
{
|
||||
RtemsMessageReqConstructErrors_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
|
||||
if ( ctx->in_action_loop ) {
|
||||
return T_get_scope(
|
||||
RtemsMessageReqConstructErrors_PreDesc,
|
||||
buf,
|
||||
n,
|
||||
ctx->pcs
|
||||
);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static T_fixture RtemsMessageReqConstructErrors_Fixture = {
|
||||
.setup = NULL,
|
||||
.stop = NULL,
|
||||
.teardown = NULL,
|
||||
.scope = RtemsMessageReqConstructErrors_Scope,
|
||||
.initial_context = &RtemsMessageReqConstructErrors_Instance
|
||||
};
|
||||
|
||||
static inline RtemsMessageReqConstructErrors_Entry
|
||||
RtemsMessageReqConstructErrors_GetEntry( size_t index )
|
||||
{
|
||||
return RtemsMessageReqConstructErrors_Entries[
|
||||
RtemsMessageReqConstructErrors_Map[ index ]
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @fn void T_case_body_RtemsMessageReqConstructErrors( void )
|
||||
*/
|
||||
T_TEST_CASE_FIXTURE(
|
||||
RtemsMessageReqConstructErrors,
|
||||
&RtemsMessageReqConstructErrors_Fixture
|
||||
)
|
||||
{
|
||||
RtemsMessageReqConstructErrors_Context *ctx;
|
||||
size_t index;
|
||||
|
||||
ctx = T_fixture_context();
|
||||
ctx->in_action_loop = true;
|
||||
index = 0;
|
||||
|
||||
for (
|
||||
ctx->pcs[ 0 ] = RtemsMessageReqConstructErrors_Pre_Config_Valid;
|
||||
ctx->pcs[ 0 ] < RtemsMessageReqConstructErrors_Pre_Config_NA;
|
||||
++ctx->pcs[ 0 ]
|
||||
) {
|
||||
for (
|
||||
ctx->pcs[ 1 ] = RtemsMessageReqConstructErrors_Pre_Name_Valid;
|
||||
ctx->pcs[ 1 ] < RtemsMessageReqConstructErrors_Pre_Name_NA;
|
||||
++ctx->pcs[ 1 ]
|
||||
) {
|
||||
for (
|
||||
ctx->pcs[ 2 ] = RtemsMessageReqConstructErrors_Pre_Id_Id;
|
||||
ctx->pcs[ 2 ] < RtemsMessageReqConstructErrors_Pre_Id_NA;
|
||||
++ctx->pcs[ 2 ]
|
||||
) {
|
||||
for (
|
||||
ctx->pcs[ 3 ] = RtemsMessageReqConstructErrors_Pre_MaxPending_Valid;
|
||||
ctx->pcs[ 3 ] < RtemsMessageReqConstructErrors_Pre_MaxPending_NA;
|
||||
++ctx->pcs[ 3 ]
|
||||
) {
|
||||
for (
|
||||
ctx->pcs[ 4 ] = RtemsMessageReqConstructErrors_Pre_MaxSize_Valid;
|
||||
ctx->pcs[ 4 ] < RtemsMessageReqConstructErrors_Pre_MaxSize_NA;
|
||||
++ctx->pcs[ 4 ]
|
||||
) {
|
||||
for (
|
||||
ctx->pcs[ 5 ] = RtemsMessageReqConstructErrors_Pre_Free_Yes;
|
||||
ctx->pcs[ 5 ] < RtemsMessageReqConstructErrors_Pre_Free_NA;
|
||||
++ctx->pcs[ 5 ]
|
||||
) {
|
||||
for (
|
||||
ctx->pcs[ 6 ] = RtemsMessageReqConstructErrors_Pre_Area_Valid;
|
||||
ctx->pcs[ 6 ] < RtemsMessageReqConstructErrors_Pre_Area_NA;
|
||||
++ctx->pcs[ 6 ]
|
||||
) {
|
||||
for (
|
||||
ctx->pcs[ 7 ] = RtemsMessageReqConstructErrors_Pre_AreaSize_Valid;
|
||||
ctx->pcs[ 7 ] < RtemsMessageReqConstructErrors_Pre_AreaSize_NA;
|
||||
++ctx->pcs[ 7 ]
|
||||
) {
|
||||
RtemsMessageReqConstructErrors_Entry entry;
|
||||
|
||||
entry = RtemsMessageReqConstructErrors_GetEntry( index );
|
||||
++index;
|
||||
|
||||
RtemsMessageReqConstructErrors_Prepare( ctx );
|
||||
RtemsMessageReqConstructErrors_Pre_Config_Prepare(
|
||||
ctx,
|
||||
ctx->pcs[ 0 ]
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Pre_Name_Prepare(
|
||||
ctx,
|
||||
ctx->pcs[ 1 ]
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Pre_Id_Prepare(
|
||||
ctx,
|
||||
ctx->pcs[ 2 ]
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Pre_MaxPending_Prepare(
|
||||
ctx,
|
||||
ctx->pcs[ 3 ]
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Pre_MaxSize_Prepare(
|
||||
ctx,
|
||||
ctx->pcs[ 4 ]
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Pre_Free_Prepare(
|
||||
ctx,
|
||||
ctx->pcs[ 5 ]
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Pre_Area_Prepare(
|
||||
ctx,
|
||||
ctx->pcs[ 6 ]
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Pre_AreaSize_Prepare(
|
||||
ctx,
|
||||
ctx->pcs[ 7 ]
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Action( ctx );
|
||||
RtemsMessageReqConstructErrors_Post_Status_Check(
|
||||
ctx,
|
||||
entry.Post_Status
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Post_Name_Check(
|
||||
ctx,
|
||||
entry.Post_Name
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Post_IdVar_Check(
|
||||
ctx,
|
||||
entry.Post_IdVar
|
||||
);
|
||||
RtemsMessageReqConstructErrors_Cleanup( ctx );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** @} */
|
||||
1059
testsuites/validation/tc-message-construct.c
Normal file
1059
testsuites/validation/tc-message-construct.c
Normal file
File diff suppressed because it is too large
Load Diff
479
testsuites/validation/tc-message-delete.c
Normal file
479
testsuites/validation/tc-message-delete.c
Normal file
@@ -0,0 +1,479 @@
|
||||
/* SPDX-License-Identifier: BSD-2-Clause */
|
||||
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* @ingroup RTEMSTestCaseRtemsMessageReqDelete
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file is part of the RTEMS quality process and was automatically
|
||||
* generated. If you find something that needs to be fixed or
|
||||
* worded better please post a report or patch to an RTEMS mailing list
|
||||
* or raise a bug report:
|
||||
*
|
||||
* https://www.rtems.org/bugs.html
|
||||
*
|
||||
* For information on updating and regenerating please refer to the How-To
|
||||
* section in the Software Requirements Engineering chapter of the
|
||||
* RTEMS Software Engineering manual. The manual is provided as a part of
|
||||
* a release. For development sources please refer to the online
|
||||
* documentation at:
|
||||
*
|
||||
* https://docs.rtems.org
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <rtems.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "tx-support.h"
|
||||
|
||||
#include <rtems/test.h>
|
||||
|
||||
/**
|
||||
* @defgroup RTEMSTestCaseRtemsMessageReqDelete spec:/rtems/message/req/delete
|
||||
*
|
||||
* @ingroup RTEMSTestSuiteTestsuitesValidationNoClock0
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqDelete_Pre_Id_NoObj,
|
||||
RtemsMessageReqDelete_Pre_Id_MsgQueue,
|
||||
RtemsMessageReqDelete_Pre_Id_NA
|
||||
} RtemsMessageReqDelete_Pre_Id;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqDelete_Post_Status_Ok,
|
||||
RtemsMessageReqDelete_Post_Status_InvId,
|
||||
RtemsMessageReqDelete_Post_Status_NA
|
||||
} RtemsMessageReqDelete_Post_Status;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqDelete_Post_Name_Valid,
|
||||
RtemsMessageReqDelete_Post_Name_Invalid,
|
||||
RtemsMessageReqDelete_Post_Name_NA
|
||||
} RtemsMessageReqDelete_Post_Name;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqDelete_Post_Flush_Yes,
|
||||
RtemsMessageReqDelete_Post_Flush_No,
|
||||
RtemsMessageReqDelete_Post_Flush_NA
|
||||
} RtemsMessageReqDelete_Post_Flush;
|
||||
|
||||
typedef struct {
|
||||
uint8_t Skip : 1;
|
||||
uint8_t Pre_Id_NA : 1;
|
||||
uint8_t Post_Status : 2;
|
||||
uint8_t Post_Name : 2;
|
||||
uint8_t Post_Flush : 2;
|
||||
} RtemsMessageReqDelete_Entry;
|
||||
|
||||
/**
|
||||
* @brief Test context for spec:/rtems/message/req/delete test case.
|
||||
*/
|
||||
typedef struct {
|
||||
rtems_id worker_id;
|
||||
|
||||
rtems_id message_queue_id;
|
||||
|
||||
uint32_t wait_done;
|
||||
|
||||
uint32_t wait_expected;
|
||||
|
||||
rtems_id id;
|
||||
|
||||
rtems_status_code status;
|
||||
|
||||
struct {
|
||||
/**
|
||||
* @brief This member defines the pre-condition states for the next action.
|
||||
*/
|
||||
size_t pcs[ 1 ];
|
||||
|
||||
/**
|
||||
* @brief If this member is true, then the test action loop is executed.
|
||||
*/
|
||||
bool in_action_loop;
|
||||
|
||||
/**
|
||||
* @brief This member contains the next transition map index.
|
||||
*/
|
||||
size_t index;
|
||||
|
||||
/**
|
||||
* @brief This member contains the current transition map entry.
|
||||
*/
|
||||
RtemsMessageReqDelete_Entry entry;
|
||||
|
||||
/**
|
||||
* @brief If this member is true, then the current transition variant
|
||||
* should be skipped.
|
||||
*/
|
||||
bool skip;
|
||||
} Map;
|
||||
} RtemsMessageReqDelete_Context;
|
||||
|
||||
static RtemsMessageReqDelete_Context
|
||||
RtemsMessageReqDelete_Instance;
|
||||
|
||||
static const char * const RtemsMessageReqDelete_PreDesc_Id[] = {
|
||||
"NoObj",
|
||||
"MsgQueue",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const * const RtemsMessageReqDelete_PreDesc[] = {
|
||||
RtemsMessageReqDelete_PreDesc_Id,
|
||||
NULL
|
||||
};
|
||||
|
||||
#define NAME rtems_build_name( 'T', 'E', 'S', 'T' )
|
||||
|
||||
#define MAX_PENDING_MESSAGES 1
|
||||
|
||||
#define MAX_MESSAGE_SIZE 1
|
||||
|
||||
typedef RtemsMessageReqDelete_Context Context;
|
||||
|
||||
static RTEMS_MESSAGE_QUEUE_BUFFER( MAX_MESSAGE_SIZE )
|
||||
buffers[ MAX_PENDING_MESSAGES ];
|
||||
|
||||
static void Worker( rtems_task_argument arg )
|
||||
{
|
||||
Context *ctx;
|
||||
|
||||
ctx = (Context *) arg;
|
||||
|
||||
while ( true ) {
|
||||
rtems_status_code sc;
|
||||
rtems_message_queue_config config;
|
||||
char buffer[ MAX_MESSAGE_SIZE ];
|
||||
size_t size;
|
||||
rtems_task_priority prio;
|
||||
|
||||
memset( &config, 0, sizeof( config ) );
|
||||
config.name = NAME;
|
||||
config.maximum_pending_messages = MAX_PENDING_MESSAGES;
|
||||
config.maximum_message_size = MAX_MESSAGE_SIZE;
|
||||
config.storage_size = sizeof( buffers );
|
||||
config.storage_area = buffers;
|
||||
config.attributes = RTEMS_DEFAULT_ATTRIBUTES;
|
||||
|
||||
T_eq_u32( ctx->message_queue_id, 0 );
|
||||
|
||||
sc = rtems_message_queue_construct( &config, &ctx->message_queue_id );
|
||||
T_rsc_success( sc );
|
||||
|
||||
size = SIZE_MAX;
|
||||
sc = rtems_message_queue_receive(
|
||||
ctx->message_queue_id,
|
||||
buffer,
|
||||
&size,
|
||||
RTEMS_WAIT,
|
||||
RTEMS_NO_TIMEOUT
|
||||
);
|
||||
T_rsc( sc, RTEMS_OBJECT_WAS_DELETED );
|
||||
T_eq_sz( size, SIZE_MAX );
|
||||
|
||||
++ctx->wait_done;
|
||||
|
||||
prio = SetSelfPriority( PRIO_LOW );
|
||||
T_eq_u32( prio, PRIO_HIGH );
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Pre_Id_Prepare(
|
||||
RtemsMessageReqDelete_Context *ctx,
|
||||
RtemsMessageReqDelete_Pre_Id state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqDelete_Pre_Id_NoObj: {
|
||||
/*
|
||||
* While the ``id`` parameter is not associated with a message queue.
|
||||
*/
|
||||
ctx->id = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqDelete_Pre_Id_MsgQueue: {
|
||||
/*
|
||||
* While the ``id`` parameter is associated with a message queue.
|
||||
*/
|
||||
ctx->id = ctx->message_queue_id;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqDelete_Pre_Id_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Post_Status_Check(
|
||||
RtemsMessageReqDelete_Context *ctx,
|
||||
RtemsMessageReqDelete_Post_Status state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqDelete_Post_Status_Ok: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_delete() shall be
|
||||
* RTEMS_SUCCESSFUL.
|
||||
*/
|
||||
ctx->message_queue_id = 0;
|
||||
T_rsc_success( ctx->status );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqDelete_Post_Status_InvId: {
|
||||
/*
|
||||
* The return status of rtems_message_queue_delete() shall be
|
||||
* RTEMS_INVALID_ID.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_INVALID_ID );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqDelete_Post_Status_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Post_Name_Check(
|
||||
RtemsMessageReqDelete_Context *ctx,
|
||||
RtemsMessageReqDelete_Post_Name state
|
||||
)
|
||||
{
|
||||
rtems_status_code sc;
|
||||
rtems_id id;
|
||||
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqDelete_Post_Name_Valid: {
|
||||
/*
|
||||
* The unique object name shall identify a message queue.
|
||||
*/
|
||||
id = 0;
|
||||
sc = rtems_message_queue_ident( NAME, RTEMS_SEARCH_LOCAL_NODE, &id );
|
||||
T_rsc_success( sc );
|
||||
T_eq_u32( id, ctx->message_queue_id );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqDelete_Post_Name_Invalid: {
|
||||
/*
|
||||
* The unique object name shall not identify a message queue.
|
||||
*/
|
||||
sc = rtems_message_queue_ident( NAME, RTEMS_SEARCH_LOCAL_NODE, &id );
|
||||
T_rsc( sc, RTEMS_INVALID_NAME );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqDelete_Post_Name_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Post_Flush_Check(
|
||||
RtemsMessageReqDelete_Context *ctx,
|
||||
RtemsMessageReqDelete_Post_Flush state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqDelete_Post_Flush_Yes: {
|
||||
/*
|
||||
* Tasks waiting at the message queue shall be unblocked.
|
||||
*/
|
||||
++ctx->wait_expected;
|
||||
T_eq_u32( ctx->wait_done, ctx->wait_expected );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqDelete_Post_Flush_No: {
|
||||
/*
|
||||
* Tasks waiting at the message queue shall remain blocked.
|
||||
*/
|
||||
T_eq_u32( ctx->wait_done, ctx->wait_expected );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqDelete_Post_Flush_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Setup( RtemsMessageReqDelete_Context *ctx )
|
||||
{
|
||||
memset( ctx, 0, sizeof( *ctx ) );
|
||||
SetSelfPriority( PRIO_NORMAL );
|
||||
ctx->worker_id = CreateTask( "WORK", PRIO_LOW );
|
||||
StartTask( ctx->worker_id, Worker, ctx );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Setup_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageReqDelete_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
ctx->Map.in_action_loop = false;
|
||||
RtemsMessageReqDelete_Setup( ctx );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Teardown(
|
||||
RtemsMessageReqDelete_Context *ctx
|
||||
)
|
||||
{
|
||||
DeleteTask( ctx->worker_id );
|
||||
RestoreRunnerPriority();
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Teardown_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageReqDelete_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
ctx->Map.in_action_loop = false;
|
||||
RtemsMessageReqDelete_Teardown( ctx );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Prepare( RtemsMessageReqDelete_Context *ctx )
|
||||
{
|
||||
rtems_task_priority prio;
|
||||
|
||||
prio = SetPriority( ctx->worker_id, PRIO_HIGH );
|
||||
T_true( prio == PRIO_LOW || prio == PRIO_HIGH );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Action( RtemsMessageReqDelete_Context *ctx )
|
||||
{
|
||||
ctx->status = rtems_message_queue_delete( ctx->id );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_Cleanup( RtemsMessageReqDelete_Context *ctx )
|
||||
{
|
||||
if ( ctx->message_queue_id != 0 ) {
|
||||
rtems_status_code sc;
|
||||
|
||||
sc = rtems_message_queue_delete( ctx->message_queue_id );
|
||||
T_rsc_success( sc );
|
||||
|
||||
++ctx->wait_expected;
|
||||
T_eq_u32( ctx->wait_done, ctx->wait_expected );
|
||||
|
||||
ctx->message_queue_id = 0;
|
||||
}
|
||||
}
|
||||
|
||||
static const RtemsMessageReqDelete_Entry
|
||||
RtemsMessageReqDelete_Entries[] = {
|
||||
{ 0, 0, RtemsMessageReqDelete_Post_Status_InvId,
|
||||
RtemsMessageReqDelete_Post_Name_Valid, RtemsMessageReqDelete_Post_Flush_No },
|
||||
{ 0, 0, RtemsMessageReqDelete_Post_Status_Ok,
|
||||
RtemsMessageReqDelete_Post_Name_Invalid,
|
||||
RtemsMessageReqDelete_Post_Flush_Yes }
|
||||
};
|
||||
|
||||
static const uint8_t
|
||||
RtemsMessageReqDelete_Map[] = {
|
||||
0, 1
|
||||
};
|
||||
|
||||
static size_t RtemsMessageReqDelete_Scope( void *arg, char *buf, size_t n )
|
||||
{
|
||||
RtemsMessageReqDelete_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
|
||||
if ( ctx->Map.in_action_loop ) {
|
||||
return T_get_scope( RtemsMessageReqDelete_PreDesc, buf, n, ctx->Map.pcs );
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static T_fixture RtemsMessageReqDelete_Fixture = {
|
||||
.setup = RtemsMessageReqDelete_Setup_Wrap,
|
||||
.stop = NULL,
|
||||
.teardown = RtemsMessageReqDelete_Teardown_Wrap,
|
||||
.scope = RtemsMessageReqDelete_Scope,
|
||||
.initial_context = &RtemsMessageReqDelete_Instance
|
||||
};
|
||||
|
||||
static inline RtemsMessageReqDelete_Entry RtemsMessageReqDelete_PopEntry(
|
||||
RtemsMessageReqDelete_Context *ctx
|
||||
)
|
||||
{
|
||||
size_t index;
|
||||
|
||||
index = ctx->Map.index;
|
||||
ctx->Map.index = index + 1;
|
||||
return RtemsMessageReqDelete_Entries[
|
||||
RtemsMessageReqDelete_Map[ index ]
|
||||
];
|
||||
}
|
||||
|
||||
static void RtemsMessageReqDelete_TestVariant(
|
||||
RtemsMessageReqDelete_Context *ctx
|
||||
)
|
||||
{
|
||||
RtemsMessageReqDelete_Pre_Id_Prepare( ctx, ctx->Map.pcs[ 0 ] );
|
||||
RtemsMessageReqDelete_Action( ctx );
|
||||
RtemsMessageReqDelete_Post_Status_Check( ctx, ctx->Map.entry.Post_Status );
|
||||
RtemsMessageReqDelete_Post_Name_Check( ctx, ctx->Map.entry.Post_Name );
|
||||
RtemsMessageReqDelete_Post_Flush_Check( ctx, ctx->Map.entry.Post_Flush );
|
||||
}
|
||||
|
||||
/**
|
||||
* @fn void T_case_body_RtemsMessageReqDelete( void )
|
||||
*/
|
||||
T_TEST_CASE_FIXTURE( RtemsMessageReqDelete, &RtemsMessageReqDelete_Fixture )
|
||||
{
|
||||
RtemsMessageReqDelete_Context *ctx;
|
||||
|
||||
ctx = T_fixture_context();
|
||||
ctx->Map.in_action_loop = true;
|
||||
ctx->Map.index = 0;
|
||||
|
||||
for (
|
||||
ctx->Map.pcs[ 0 ] = RtemsMessageReqDelete_Pre_Id_NoObj;
|
||||
ctx->Map.pcs[ 0 ] < RtemsMessageReqDelete_Pre_Id_NA;
|
||||
++ctx->Map.pcs[ 0 ]
|
||||
) {
|
||||
ctx->Map.entry = RtemsMessageReqDelete_PopEntry( ctx );
|
||||
RtemsMessageReqDelete_Prepare( ctx );
|
||||
RtemsMessageReqDelete_TestVariant( ctx );
|
||||
RtemsMessageReqDelete_Cleanup( ctx );
|
||||
}
|
||||
}
|
||||
|
||||
/** @} */
|
||||
982
testsuites/validation/tc-message-flush-pending.c
Normal file
982
testsuites/validation/tc-message-flush-pending.c
Normal file
@@ -0,0 +1,982 @@
|
||||
/* SPDX-License-Identifier: BSD-2-Clause */
|
||||
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* @ingroup RTEMSTestCaseRtemsMessageReqFlushPending
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file is part of the RTEMS quality process and was automatically
|
||||
* generated. If you find something that needs to be fixed or
|
||||
* worded better please post a report or patch to an RTEMS mailing list
|
||||
* or raise a bug report:
|
||||
*
|
||||
* https://www.rtems.org/bugs.html
|
||||
*
|
||||
* For information on updating and regenerating please refer to the How-To
|
||||
* section in the Software Requirements Engineering chapter of the
|
||||
* RTEMS Software Engineering manual. The manual is provided as a part of
|
||||
* a release. For development sources please refer to the online
|
||||
* documentation at:
|
||||
*
|
||||
* https://docs.rtems.org
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <rtems.h>
|
||||
|
||||
#include "tx-support.h"
|
||||
|
||||
#include <rtems/test.h>
|
||||
|
||||
/**
|
||||
* @defgroup RTEMSTestCaseRtemsMessageReqFlushPending \
|
||||
* spec:/rtems/message/req/flush-pending
|
||||
*
|
||||
* @ingroup RTEMSTestSuiteTestsuitesValidationNoClock0
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Pre_Count_Valid,
|
||||
RtemsMessageReqFlushPending_Pre_Count_Null,
|
||||
RtemsMessageReqFlushPending_Pre_Count_NA
|
||||
} RtemsMessageReqFlushPending_Pre_Count;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Pre_Id_Valid,
|
||||
RtemsMessageReqFlushPending_Pre_Id_Invalid,
|
||||
RtemsMessageReqFlushPending_Pre_Id_NA
|
||||
} RtemsMessageReqFlushPending_Pre_Id;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Pre_MsgQueue_Empty,
|
||||
RtemsMessageReqFlushPending_Pre_MsgQueue_Several,
|
||||
RtemsMessageReqFlushPending_Pre_MsgQueue_NA
|
||||
} RtemsMessageReqFlushPending_Pre_MsgQueue;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Pre_Receivers_Waiting,
|
||||
RtemsMessageReqFlushPending_Pre_Receivers_None,
|
||||
RtemsMessageReqFlushPending_Pre_Receivers_NA
|
||||
} RtemsMessageReqFlushPending_Pre_Receivers;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Pre_Directive_Flush,
|
||||
RtemsMessageReqFlushPending_Pre_Directive_Pending,
|
||||
RtemsMessageReqFlushPending_Pre_Directive_NA
|
||||
} RtemsMessageReqFlushPending_Pre_Directive;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Pre_Storage_Nop,
|
||||
RtemsMessageReqFlushPending_Pre_Storage_NA
|
||||
} RtemsMessageReqFlushPending_Pre_Storage;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Post_Status_Ok,
|
||||
RtemsMessageReqFlushPending_Post_Status_InvId,
|
||||
RtemsMessageReqFlushPending_Post_Status_InvAddr,
|
||||
RtemsMessageReqFlushPending_Post_Status_NA
|
||||
} RtemsMessageReqFlushPending_Post_Status;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Post_Count_Zero,
|
||||
RtemsMessageReqFlushPending_Post_Count_Set,
|
||||
RtemsMessageReqFlushPending_Post_Count_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Count_NA
|
||||
} RtemsMessageReqFlushPending_Post_Count;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Empty,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Nop,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_NA
|
||||
} RtemsMessageReqFlushPending_Post_MsgQueue;
|
||||
|
||||
typedef enum {
|
||||
RtemsMessageReqFlushPending_Post_Receivers_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_NA
|
||||
} RtemsMessageReqFlushPending_Post_Receivers;
|
||||
|
||||
typedef struct {
|
||||
uint16_t Skip : 1;
|
||||
uint16_t Pre_Count_NA : 1;
|
||||
uint16_t Pre_Id_NA : 1;
|
||||
uint16_t Pre_MsgQueue_NA : 1;
|
||||
uint16_t Pre_Receivers_NA : 1;
|
||||
uint16_t Pre_Directive_NA : 1;
|
||||
uint16_t Pre_Storage_NA : 1;
|
||||
uint16_t Post_Status : 2;
|
||||
uint16_t Post_Count : 2;
|
||||
uint16_t Post_MsgQueue : 2;
|
||||
uint16_t Post_Receivers : 1;
|
||||
} RtemsMessageReqFlushPending_Entry;
|
||||
|
||||
#define MAXIMUM_PENDING_MESSAGES 3
|
||||
#define MAXIMUM_MESSAGE_SIZE 5
|
||||
#define NUMBER_OF_WORKERS 3
|
||||
|
||||
/**
|
||||
* @brief Test context for spec:/rtems/message/req/flush-pending test case.
|
||||
*/
|
||||
typedef struct {
|
||||
/**
|
||||
* @brief This member contains a valid ID of a message queue.
|
||||
*/
|
||||
rtems_id message_queue_id;
|
||||
|
||||
/**
|
||||
* @brief This member is used as storage area for the message queue.
|
||||
*/
|
||||
RTEMS_MESSAGE_QUEUE_BUFFER( MAXIMUM_MESSAGE_SIZE )
|
||||
storage_area[ MAXIMUM_PENDING_MESSAGES ];
|
||||
|
||||
/**
|
||||
* @brief This member contains the returned status codes of the receivers.
|
||||
*/
|
||||
rtems_status_code receive_status[ NUMBER_OF_WORKERS ];
|
||||
|
||||
/**
|
||||
* @brief This member specifies the directive to be called as action.
|
||||
*
|
||||
* This is either rtems_message_queue_flush() or
|
||||
* rtems_message_queue_get_number_pending().
|
||||
*/
|
||||
rtems_status_code (*action)( rtems_id id, uint32_t *count );
|
||||
|
||||
/**
|
||||
* @brief This member specifies the ``id`` parameter of the action.
|
||||
*/
|
||||
rtems_id id_param;
|
||||
|
||||
/**
|
||||
* @brief This member specifies the ``count`` parameter of the action.
|
||||
*/
|
||||
uint32_t *count_param;
|
||||
|
||||
/**
|
||||
* @brief This member contains the returned status code of the action.
|
||||
*/
|
||||
rtems_status_code status;
|
||||
|
||||
/**
|
||||
* @brief This member contains the value returned in parameter ``count`` of
|
||||
* the action.
|
||||
*/
|
||||
uint32_t count;
|
||||
|
||||
/**
|
||||
* @brief This member contains the task identifiers of the worker tasks.
|
||||
*/
|
||||
rtems_id worker_id[ NUMBER_OF_WORKERS ];
|
||||
|
||||
/**
|
||||
* @brief This member contains a pointer to a function which is executed to
|
||||
* check that the action has not changed the content of the message queue.
|
||||
*/
|
||||
void (*check_msgq_unchanged)( void *ctx_in );
|
||||
|
||||
struct {
|
||||
/**
|
||||
* @brief This member defines the pre-condition states for the next action.
|
||||
*/
|
||||
size_t pcs[ 6 ];
|
||||
|
||||
/**
|
||||
* @brief If this member is true, then the test action loop is executed.
|
||||
*/
|
||||
bool in_action_loop;
|
||||
|
||||
/**
|
||||
* @brief This member contains the next transition map index.
|
||||
*/
|
||||
size_t index;
|
||||
|
||||
/**
|
||||
* @brief This member contains the current transition map entry.
|
||||
*/
|
||||
RtemsMessageReqFlushPending_Entry entry;
|
||||
|
||||
/**
|
||||
* @brief If this member is true, then the current transition variant
|
||||
* should be skipped.
|
||||
*/
|
||||
bool skip;
|
||||
} Map;
|
||||
} RtemsMessageReqFlushPending_Context;
|
||||
|
||||
static RtemsMessageReqFlushPending_Context
|
||||
RtemsMessageReqFlushPending_Instance;
|
||||
|
||||
static const char * const RtemsMessageReqFlushPending_PreDesc_Count[] = {
|
||||
"Valid",
|
||||
"Null",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqFlushPending_PreDesc_Id[] = {
|
||||
"Valid",
|
||||
"Invalid",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqFlushPending_PreDesc_MsgQueue[] = {
|
||||
"Empty",
|
||||
"Several",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqFlushPending_PreDesc_Receivers[] = {
|
||||
"Waiting",
|
||||
"None",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqFlushPending_PreDesc_Directive[] = {
|
||||
"Flush",
|
||||
"Pending",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const RtemsMessageReqFlushPending_PreDesc_Storage[] = {
|
||||
"Nop",
|
||||
"NA"
|
||||
};
|
||||
|
||||
static const char * const * const RtemsMessageReqFlushPending_PreDesc[] = {
|
||||
RtemsMessageReqFlushPending_PreDesc_Count,
|
||||
RtemsMessageReqFlushPending_PreDesc_Id,
|
||||
RtemsMessageReqFlushPending_PreDesc_MsgQueue,
|
||||
RtemsMessageReqFlushPending_PreDesc_Receivers,
|
||||
RtemsMessageReqFlushPending_PreDesc_Directive,
|
||||
RtemsMessageReqFlushPending_PreDesc_Storage,
|
||||
NULL
|
||||
};
|
||||
|
||||
typedef RtemsMessageReqFlushPending_Context Context;
|
||||
static const uint32_t NUMBER_OF_PENDING_MESSAGES = 2;
|
||||
static const rtems_interval TIMEOUT_TICKS = 1;
|
||||
static const rtems_event_set EVENT_RECEIVE = RTEMS_EVENT_17;
|
||||
static const uint8_t queued_message[] = { 200, 201, 202 };
|
||||
|
||||
static void Receive( Context *ctx, size_t worker_index )
|
||||
{
|
||||
size_t size;
|
||||
uint8_t buffer[ MAXIMUM_MESSAGE_SIZE ];
|
||||
|
||||
ctx->receive_status[worker_index] = rtems_message_queue_receive(
|
||||
ctx->message_queue_id,
|
||||
buffer,
|
||||
&size,
|
||||
RTEMS_WAIT,
|
||||
TIMEOUT_TICKS
|
||||
);
|
||||
}
|
||||
|
||||
static void WorkerTask( rtems_task_argument argument )
|
||||
{
|
||||
static size_t worker_number = 0;
|
||||
size_t worker_index = worker_number++;
|
||||
Context *ctx = (Context *) argument;
|
||||
|
||||
while ( true ) {
|
||||
ReceiveAnyEvents();
|
||||
Receive( ctx, worker_index );
|
||||
}
|
||||
}
|
||||
|
||||
static void CheckForNoMessage(
|
||||
Context *ctx,
|
||||
rtems_status_code status,
|
||||
uint8_t *message_buffer,
|
||||
size_t message_size
|
||||
)
|
||||
{
|
||||
(void) ctx;
|
||||
(void) message_buffer;
|
||||
(void) message_size;
|
||||
T_rsc( status, RTEMS_UNSATISFIED );
|
||||
}
|
||||
|
||||
static void CheckForQueuedMessage(
|
||||
Context *ctx,
|
||||
rtems_status_code status,
|
||||
uint8_t *message_buffer,
|
||||
size_t message_size
|
||||
)
|
||||
{
|
||||
(void) ctx;
|
||||
T_rsc_success( status );
|
||||
T_eq_u32( message_size, sizeof( queued_message ) );
|
||||
T_eq_mem( message_buffer, queued_message, sizeof( queued_message ) );
|
||||
}
|
||||
|
||||
static void PopMessage(
|
||||
Context *ctx,
|
||||
void (*check_fn)(
|
||||
Context *ctx,
|
||||
rtems_status_code status,
|
||||
uint8_t *message_buffer,
|
||||
size_t message_size
|
||||
)
|
||||
)
|
||||
{
|
||||
rtems_status_code status;
|
||||
uint8_t message_buffer[ MAXIMUM_MESSAGE_SIZE ];
|
||||
size_t message_size;
|
||||
|
||||
status = rtems_message_queue_receive(
|
||||
ctx->message_queue_id,
|
||||
&message_buffer,
|
||||
&message_size,
|
||||
RTEMS_LOCAL | RTEMS_NO_WAIT,
|
||||
RTEMS_NO_TIMEOUT
|
||||
);
|
||||
|
||||
check_fn( ctx, status, message_buffer, message_size );
|
||||
}
|
||||
|
||||
static void CheckForNoMessageInQueue( void *ctx_in )
|
||||
{
|
||||
Context *ctx = ctx_in;
|
||||
PopMessage( ctx, CheckForNoMessage );
|
||||
}
|
||||
|
||||
static void CheckForSeveralMessagesInQueue( void *ctx_in )
|
||||
{
|
||||
Context *ctx = ctx_in;
|
||||
uint32_t i;
|
||||
for ( i = 0; i < NUMBER_OF_PENDING_MESSAGES; ++i ) {
|
||||
PopMessage( ctx, CheckForQueuedMessage );
|
||||
}
|
||||
PopMessage( ctx, CheckForNoMessage );
|
||||
}
|
||||
|
||||
static void SendMsg( Context *ctx )
|
||||
{
|
||||
rtems_status_code status;
|
||||
|
||||
status = rtems_message_queue_send(
|
||||
ctx->message_queue_id,
|
||||
queued_message,
|
||||
sizeof( queued_message )
|
||||
);
|
||||
T_rsc_success( status );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Pre_Count_Prepare(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Pre_Count state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Pre_Count_Valid: {
|
||||
/*
|
||||
* While the ``count`` parameter references an ``uint32_t`` object.
|
||||
*/
|
||||
ctx->count_param = &ctx->count;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Count_Null: {
|
||||
/*
|
||||
* While the ``count`` parameter is NULL.
|
||||
*/
|
||||
ctx->count_param = NULL;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Count_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Pre_Id_Prepare(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Pre_Id state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Pre_Id_Valid: {
|
||||
/*
|
||||
* While the ``id`` parameter is valid.
|
||||
*/
|
||||
ctx->id_param = ctx->message_queue_id;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Id_Invalid: {
|
||||
/*
|
||||
* While the ``id`` parameter is invalid.
|
||||
*/
|
||||
ctx->id_param = RTEMS_ID_NONE;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Id_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Pre_MsgQueue_Prepare(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Pre_MsgQueue state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Pre_MsgQueue_Empty: {
|
||||
/*
|
||||
* While there is no message in the message queue.
|
||||
*/
|
||||
/* Message queue is already empty. */
|
||||
ctx->check_msgq_unchanged = CheckForNoMessageInQueue;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_MsgQueue_Several: {
|
||||
/*
|
||||
* While there are messages in the message queue.
|
||||
*/
|
||||
uint32_t i;
|
||||
for ( i = 0; i < NUMBER_OF_PENDING_MESSAGES; ++i ) {
|
||||
SendMsg( ctx );
|
||||
}
|
||||
ctx->check_msgq_unchanged = CheckForSeveralMessagesInQueue;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_MsgQueue_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Pre_Receivers_Prepare(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Pre_Receivers state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Pre_Receivers_Waiting: {
|
||||
/*
|
||||
* While one or more receivers are waiting to receive a message.
|
||||
*/
|
||||
size_t i;
|
||||
for ( i = 0; i < NUMBER_OF_WORKERS; ++i ) {
|
||||
SendEvents( ctx->worker_id[i], EVENT_RECEIVE );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Receivers_None: {
|
||||
/*
|
||||
* While no receiver is waiting to receive a message.
|
||||
*/
|
||||
/* There is already no receiver waiting. */
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Receivers_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Pre_Directive_Prepare(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Pre_Directive state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Pre_Directive_Flush: {
|
||||
/*
|
||||
* While the directive rtems_message_queue_flush() is called.
|
||||
*/
|
||||
ctx->action = rtems_message_queue_flush;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Directive_Pending: {
|
||||
/*
|
||||
* While the directive rtems_message_queue_get_number_pending() is
|
||||
* called.
|
||||
*/
|
||||
ctx->action = rtems_message_queue_get_number_pending;
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Directive_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Pre_Storage_Prepare(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Pre_Storage state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Pre_Storage_Nop: {
|
||||
/*
|
||||
* While the memory area to which a pointer is provided as member
|
||||
* storage_area of type rtems_message_queue_config when the message queue
|
||||
* is constructed by rtems_message_queue_construct() is altered only by
|
||||
* the RTEMS operating system.
|
||||
*/
|
||||
/* Only a requirement text. */
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Pre_Storage_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Post_Status_Check(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Post_Status state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Post_Status_Ok: {
|
||||
/*
|
||||
* The return status of the called directive (rtems_message_queue_flush()
|
||||
* or rtems_message_queue_get_number_pending()) shall be RTEMS_SUCCESSFUL
|
||||
*/
|
||||
T_rsc_success( ctx->status );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_Status_InvId: {
|
||||
/*
|
||||
* The return status of the called directive (rtems_message_queue_flush()
|
||||
* or rtems_message_queue_get_number_pending()) shall be
|
||||
* RTEMS_INVALID_ID.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_INVALID_ID );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_Status_InvAddr: {
|
||||
/*
|
||||
* The return status of the called directive (rtems_message_queue_flush()
|
||||
* or rtems_message_queue_get_number_pending()) shall be
|
||||
* RTEMS_INVALID_ADDRESS.
|
||||
*/
|
||||
T_rsc( ctx->status, RTEMS_INVALID_ADDRESS );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_Status_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Post_Count_Check(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Post_Count state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Post_Count_Zero: {
|
||||
/*
|
||||
* The value of the object referenced by the ``count`` parameter shall be
|
||||
* 0 after the return of the rtems_message_queue_flush() or
|
||||
* rtems_message_queue_get_number_pending() call.
|
||||
*/
|
||||
T_eq_u32( ctx->count, 0 );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_Count_Set: {
|
||||
/*
|
||||
* The rtems_message_queue_get_number_pending() directive shall set the
|
||||
* value of the object referenced by the ``count`` parameter to the
|
||||
* number of messages present in the message queue at a point in time
|
||||
* during the single execution of the
|
||||
* rtems_message_queue_get_number_pending() directive.
|
||||
*
|
||||
* The rtems_message_queue_flush() directive shall set the value of the
|
||||
* object referenced by the ``count`` parameter to the number of messages
|
||||
* it removed from the message queue during the single execution of the
|
||||
* rtems_message_queue_flush() directive.
|
||||
*/
|
||||
T_eq_u32( ctx->count, NUMBER_OF_PENDING_MESSAGES );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_Count_Nop: {
|
||||
/*
|
||||
* The value of the object referenced by the ``count`` parameter in past
|
||||
* call to rtems_message_queue_flush() or
|
||||
* rtems_message_queue_get_number_pending() shall not be accessed by the
|
||||
* rtems_message_queue_flush() or
|
||||
* rtems_message_queue_get_number_pending() call (see also Nop).
|
||||
*/
|
||||
T_eq_u32( ctx->count, UINT8_MAX );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_Count_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Post_MsgQueue_Check(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Post_MsgQueue_Empty: {
|
||||
/*
|
||||
* The message queue shall contain no messages after the last call to
|
||||
* ``id``.
|
||||
*/
|
||||
PopMessage( ctx, CheckForNoMessage );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_MsgQueue_Nop: {
|
||||
/*
|
||||
* Objects referenced by the ``id`` parameter in the past call to
|
||||
* rtems_message_queue_flush() or
|
||||
* rtems_message_queue_get_number_pending() shall not be changed by that
|
||||
* call (see also Nop).
|
||||
*/
|
||||
ctx->check_msgq_unchanged( ctx );
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_MsgQueue_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Post_Receivers_Check(
|
||||
RtemsMessageReqFlushPending_Context *ctx,
|
||||
RtemsMessageReqFlushPending_Post_Receivers state
|
||||
)
|
||||
{
|
||||
switch ( state ) {
|
||||
case RtemsMessageReqFlushPending_Post_Receivers_Nop: {
|
||||
/*
|
||||
* The receivers waiting for a message at the message queue shall not be
|
||||
* affected by the call to the rtems_message_queue_flush() or
|
||||
* rtems_message_queue_get_number_pending() directive.
|
||||
*/
|
||||
size_t i;
|
||||
for ( i = 0; i < NUMBER_OF_WORKERS; ++i ) {
|
||||
T_rsc( ctx->receive_status[i], RTEMS_TIMEOUT );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case RtemsMessageReqFlushPending_Post_Receivers_NA:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Setup(
|
||||
RtemsMessageReqFlushPending_Context *ctx
|
||||
)
|
||||
{
|
||||
size_t i;
|
||||
SetSelfPriority( PRIO_NORMAL );
|
||||
|
||||
for ( i = 0; i < NUMBER_OF_WORKERS; ++i ) {
|
||||
ctx->worker_id[i] = CreateTask( "WORK", PRIO_HIGH );
|
||||
StartTask( ctx->worker_id[i], WorkerTask, ctx );
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Setup_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageReqFlushPending_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
ctx->Map.in_action_loop = false;
|
||||
RtemsMessageReqFlushPending_Setup( ctx );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Teardown(
|
||||
RtemsMessageReqFlushPending_Context *ctx
|
||||
)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
for ( i = 0; i < NUMBER_OF_WORKERS; ++i ) {
|
||||
DeleteTask( ctx->worker_id[i] );
|
||||
}
|
||||
RestoreRunnerPriority();
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Teardown_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageReqFlushPending_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
ctx->Map.in_action_loop = false;
|
||||
RtemsMessageReqFlushPending_Teardown( ctx );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Prepare(
|
||||
RtemsMessageReqFlushPending_Context *ctx
|
||||
)
|
||||
{
|
||||
rtems_status_code status;
|
||||
|
||||
rtems_message_queue_config config = {
|
||||
.name = rtems_build_name( 'M', 'S', 'G', 'Q' ),
|
||||
.maximum_pending_messages = MAXIMUM_PENDING_MESSAGES,
|
||||
.maximum_message_size = MAXIMUM_MESSAGE_SIZE,
|
||||
.storage_area = ctx->storage_area,
|
||||
.storage_size = sizeof( ctx->storage_area ),
|
||||
.storage_free = NULL,
|
||||
.attributes = RTEMS_DEFAULT_ATTRIBUTES
|
||||
};
|
||||
|
||||
status = rtems_message_queue_construct(
|
||||
&config,
|
||||
&ctx->message_queue_id
|
||||
);
|
||||
T_rsc_success( status );
|
||||
|
||||
ctx->count = UINT8_MAX;
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Action(
|
||||
RtemsMessageReqFlushPending_Context *ctx
|
||||
)
|
||||
{
|
||||
ctx->status = (ctx->action)(
|
||||
ctx->id_param,
|
||||
ctx->count_param
|
||||
);
|
||||
|
||||
FinalClockTick();
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_Cleanup(
|
||||
RtemsMessageReqFlushPending_Context *ctx
|
||||
)
|
||||
{
|
||||
T_rsc_success( rtems_message_queue_delete( ctx->message_queue_id ) );
|
||||
}
|
||||
|
||||
static const RtemsMessageReqFlushPending_Entry
|
||||
RtemsMessageReqFlushPending_Entries[] = {
|
||||
{ 1, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_NA,
|
||||
RtemsMessageReqFlushPending_Post_Count_NA,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_NA,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_NA },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_InvAddr,
|
||||
RtemsMessageReqFlushPending_Post_Count_Nop,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_NA },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_InvId,
|
||||
RtemsMessageReqFlushPending_Post_Count_Nop,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_NA },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_InvAddr,
|
||||
RtemsMessageReqFlushPending_Post_Count_Nop,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_InvId,
|
||||
RtemsMessageReqFlushPending_Post_Count_Nop,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_Ok,
|
||||
RtemsMessageReqFlushPending_Post_Count_Zero,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Empty,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_Ok,
|
||||
RtemsMessageReqFlushPending_Post_Count_Zero,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_Nop },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_Ok,
|
||||
RtemsMessageReqFlushPending_Post_Count_Zero,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Empty,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_NA },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_Ok,
|
||||
RtemsMessageReqFlushPending_Post_Count_Zero,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_NA },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_Ok,
|
||||
RtemsMessageReqFlushPending_Post_Count_Set,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Empty,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_NA },
|
||||
{ 0, 0, 0, 0, 0, 0, 0, RtemsMessageReqFlushPending_Post_Status_Ok,
|
||||
RtemsMessageReqFlushPending_Post_Count_Set,
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Nop,
|
||||
RtemsMessageReqFlushPending_Post_Receivers_NA }
|
||||
};
|
||||
|
||||
static const uint8_t
|
||||
RtemsMessageReqFlushPending_Map[] = {
|
||||
5, 6, 7, 8, 0, 0, 9, 10, 4, 4, 2, 2, 0, 0, 2, 2, 3, 3, 1, 1, 0, 0, 1, 1, 3,
|
||||
3, 1, 1, 0, 0, 1, 1
|
||||
};
|
||||
|
||||
static size_t RtemsMessageReqFlushPending_Scope(
|
||||
void *arg,
|
||||
char *buf,
|
||||
size_t n
|
||||
)
|
||||
{
|
||||
RtemsMessageReqFlushPending_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
|
||||
if ( ctx->Map.in_action_loop ) {
|
||||
return T_get_scope(
|
||||
RtemsMessageReqFlushPending_PreDesc,
|
||||
buf,
|
||||
n,
|
||||
ctx->Map.pcs
|
||||
);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static T_fixture RtemsMessageReqFlushPending_Fixture = {
|
||||
.setup = RtemsMessageReqFlushPending_Setup_Wrap,
|
||||
.stop = NULL,
|
||||
.teardown = RtemsMessageReqFlushPending_Teardown_Wrap,
|
||||
.scope = RtemsMessageReqFlushPending_Scope,
|
||||
.initial_context = &RtemsMessageReqFlushPending_Instance
|
||||
};
|
||||
|
||||
static inline RtemsMessageReqFlushPending_Entry
|
||||
RtemsMessageReqFlushPending_PopEntry(
|
||||
RtemsMessageReqFlushPending_Context *ctx
|
||||
)
|
||||
{
|
||||
size_t index;
|
||||
|
||||
index = ctx->Map.index;
|
||||
ctx->Map.index = index + 1;
|
||||
return RtemsMessageReqFlushPending_Entries[
|
||||
RtemsMessageReqFlushPending_Map[ index ]
|
||||
];
|
||||
}
|
||||
|
||||
static void RtemsMessageReqFlushPending_TestVariant(
|
||||
RtemsMessageReqFlushPending_Context *ctx
|
||||
)
|
||||
{
|
||||
RtemsMessageReqFlushPending_Pre_Count_Prepare( ctx, ctx->Map.pcs[ 0 ] );
|
||||
RtemsMessageReqFlushPending_Pre_Id_Prepare( ctx, ctx->Map.pcs[ 1 ] );
|
||||
RtemsMessageReqFlushPending_Pre_MsgQueue_Prepare( ctx, ctx->Map.pcs[ 2 ] );
|
||||
RtemsMessageReqFlushPending_Pre_Receivers_Prepare( ctx, ctx->Map.pcs[ 3 ] );
|
||||
RtemsMessageReqFlushPending_Pre_Directive_Prepare( ctx, ctx->Map.pcs[ 4 ] );
|
||||
RtemsMessageReqFlushPending_Pre_Storage_Prepare( ctx, ctx->Map.pcs[ 5 ] );
|
||||
RtemsMessageReqFlushPending_Action( ctx );
|
||||
RtemsMessageReqFlushPending_Post_Status_Check(
|
||||
ctx,
|
||||
ctx->Map.entry.Post_Status
|
||||
);
|
||||
RtemsMessageReqFlushPending_Post_Count_Check(
|
||||
ctx,
|
||||
ctx->Map.entry.Post_Count
|
||||
);
|
||||
RtemsMessageReqFlushPending_Post_MsgQueue_Check(
|
||||
ctx,
|
||||
ctx->Map.entry.Post_MsgQueue
|
||||
);
|
||||
RtemsMessageReqFlushPending_Post_Receivers_Check(
|
||||
ctx,
|
||||
ctx->Map.entry.Post_Receivers
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @fn void T_case_body_RtemsMessageReqFlushPending( void )
|
||||
*/
|
||||
T_TEST_CASE_FIXTURE(
|
||||
RtemsMessageReqFlushPending,
|
||||
&RtemsMessageReqFlushPending_Fixture
|
||||
)
|
||||
{
|
||||
RtemsMessageReqFlushPending_Context *ctx;
|
||||
|
||||
ctx = T_fixture_context();
|
||||
ctx->Map.in_action_loop = true;
|
||||
ctx->Map.index = 0;
|
||||
|
||||
for (
|
||||
ctx->Map.pcs[ 0 ] = RtemsMessageReqFlushPending_Pre_Count_Valid;
|
||||
ctx->Map.pcs[ 0 ] < RtemsMessageReqFlushPending_Pre_Count_NA;
|
||||
++ctx->Map.pcs[ 0 ]
|
||||
) {
|
||||
for (
|
||||
ctx->Map.pcs[ 1 ] = RtemsMessageReqFlushPending_Pre_Id_Valid;
|
||||
ctx->Map.pcs[ 1 ] < RtemsMessageReqFlushPending_Pre_Id_NA;
|
||||
++ctx->Map.pcs[ 1 ]
|
||||
) {
|
||||
for (
|
||||
ctx->Map.pcs[ 2 ] = RtemsMessageReqFlushPending_Pre_MsgQueue_Empty;
|
||||
ctx->Map.pcs[ 2 ] < RtemsMessageReqFlushPending_Pre_MsgQueue_NA;
|
||||
++ctx->Map.pcs[ 2 ]
|
||||
) {
|
||||
for (
|
||||
ctx->Map.pcs[ 3 ] = RtemsMessageReqFlushPending_Pre_Receivers_Waiting;
|
||||
ctx->Map.pcs[ 3 ] < RtemsMessageReqFlushPending_Pre_Receivers_NA;
|
||||
++ctx->Map.pcs[ 3 ]
|
||||
) {
|
||||
for (
|
||||
ctx->Map.pcs[ 4 ] = RtemsMessageReqFlushPending_Pre_Directive_Flush;
|
||||
ctx->Map.pcs[ 4 ] < RtemsMessageReqFlushPending_Pre_Directive_NA;
|
||||
++ctx->Map.pcs[ 4 ]
|
||||
) {
|
||||
for (
|
||||
ctx->Map.pcs[ 5 ] = RtemsMessageReqFlushPending_Pre_Storage_Nop;
|
||||
ctx->Map.pcs[ 5 ] < RtemsMessageReqFlushPending_Pre_Storage_NA;
|
||||
++ctx->Map.pcs[ 5 ]
|
||||
) {
|
||||
ctx->Map.entry = RtemsMessageReqFlushPending_PopEntry( ctx );
|
||||
|
||||
if ( ctx->Map.entry.Skip ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
RtemsMessageReqFlushPending_Prepare( ctx );
|
||||
RtemsMessageReqFlushPending_TestVariant( ctx );
|
||||
RtemsMessageReqFlushPending_Cleanup( ctx );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** @} */
|
||||
126
testsuites/validation/tc-message-ident.c
Normal file
126
testsuites/validation/tc-message-ident.c
Normal file
@@ -0,0 +1,126 @@
|
||||
/* SPDX-License-Identifier: BSD-2-Clause */
|
||||
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* @ingroup RTEMSTestCaseRtemsMessageValIdent
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file is part of the RTEMS quality process and was automatically
|
||||
* generated. If you find something that needs to be fixed or
|
||||
* worded better please post a report or patch to an RTEMS mailing list
|
||||
* or raise a bug report:
|
||||
*
|
||||
* https://www.rtems.org/bugs.html
|
||||
*
|
||||
* For information on updating and regenerating please refer to the How-To
|
||||
* section in the Software Requirements Engineering chapter of the
|
||||
* RTEMS Software Engineering manual. The manual is provided as a part of
|
||||
* a release. For development sources please refer to the online
|
||||
* documentation at:
|
||||
*
|
||||
* https://docs.rtems.org
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "tr-object-ident.h"
|
||||
|
||||
#include <rtems/test.h>
|
||||
|
||||
/**
|
||||
* @defgroup RTEMSTestCaseRtemsMessageValIdent spec:/rtems/message/val/ident
|
||||
*
|
||||
* @ingroup RTEMSTestSuiteTestsuitesValidationNoClock0
|
||||
*
|
||||
* @brief Test the rtems_message_queue_ident() directive.
|
||||
*
|
||||
* This test case performs the following actions:
|
||||
*
|
||||
* - Run the generic object identification tests for Classic API message queue
|
||||
* class objects defined by /rtems/req/ident.
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
static RTEMS_MESSAGE_QUEUE_BUFFER( 1 ) ClassicMessageIdentBuffers[ 1 ];
|
||||
|
||||
static rtems_message_queue_config ClassicObjectIdentConfig = {
|
||||
.name = ClassicObjectIdentName,
|
||||
.maximum_pending_messages = RTEMS_ARRAY_SIZE( ClassicMessageIdentBuffers ),
|
||||
.maximum_message_size = 1,
|
||||
.storage_area = ClassicMessageIdentBuffers,
|
||||
.storage_size = sizeof( ClassicMessageIdentBuffers ),
|
||||
.attributes = RTEMS_DEFAULT_ATTRIBUTES
|
||||
};
|
||||
|
||||
static rtems_status_code ClassicMessageIdentAction(
|
||||
rtems_name name,
|
||||
uint32_t node,
|
||||
rtems_id *id
|
||||
)
|
||||
{
|
||||
return rtems_message_queue_ident( name, node, id );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Run the generic object identification tests for Classic API message
|
||||
* queue class objects defined by /rtems/req/ident.
|
||||
*/
|
||||
static void RtemsMessageValIdent_Action_0( void )
|
||||
{
|
||||
rtems_status_code sc;
|
||||
rtems_id id_local_object;
|
||||
|
||||
sc = rtems_message_queue_construct(
|
||||
&ClassicObjectIdentConfig,
|
||||
&id_local_object
|
||||
);
|
||||
T_assert_rsc_success( sc );
|
||||
|
||||
RtemsReqIdent_Run(
|
||||
id_local_object,
|
||||
ClassicMessageIdentAction
|
||||
);
|
||||
|
||||
sc = rtems_message_queue_delete( id_local_object );
|
||||
T_rsc_success( sc );
|
||||
}
|
||||
|
||||
/**
|
||||
* @fn void T_case_body_RtemsMessageValIdent( void )
|
||||
*/
|
||||
T_TEST_CASE( RtemsMessageValIdent )
|
||||
{
|
||||
RtemsMessageValIdent_Action_0();
|
||||
}
|
||||
|
||||
/** @} */
|
||||
147
testsuites/validation/tc-message-macros.c
Normal file
147
testsuites/validation/tc-message-macros.c
Normal file
@@ -0,0 +1,147 @@
|
||||
/* SPDX-License-Identifier: BSD-2-Clause */
|
||||
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* @ingroup RTEMSTestCaseRtemsMessageValMessageMacros
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file is part of the RTEMS quality process and was automatically
|
||||
* generated. If you find something that needs to be fixed or
|
||||
* worded better please post a report or patch to an RTEMS mailing list
|
||||
* or raise a bug report:
|
||||
*
|
||||
* https://www.rtems.org/bugs.html
|
||||
*
|
||||
* For information on updating and regenerating please refer to the How-To
|
||||
* section in the Software Requirements Engineering chapter of the
|
||||
* RTEMS Software Engineering manual. The manual is provided as a part of
|
||||
* a release. For development sources please refer to the online
|
||||
* documentation at:
|
||||
*
|
||||
* https://docs.rtems.org
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <rtems.h>
|
||||
|
||||
#include <rtems/test.h>
|
||||
|
||||
/**
|
||||
* @defgroup RTEMSTestCaseRtemsMessageValMessageMacros \
|
||||
* spec:/rtems/message/val/message-macros
|
||||
*
|
||||
* @ingroup RTEMSTestSuiteTestsuitesValidationNoClock0
|
||||
*
|
||||
* @brief Tests the macros of the @ref RTEMSAPIClassicMessage.
|
||||
*
|
||||
* This test case performs the following actions:
|
||||
*
|
||||
* - Check the RTEMS_MESSAGE_QUEUE_BUFFER() macro.
|
||||
*
|
||||
* - Check that the object defined by the RTEMS_MESSAGE_QUEUE_BUFFER()
|
||||
* expression has the desired size. rtems_message_queue_construct() will
|
||||
* return RTEMS_UNSATISFIED instead of RTEMS_SUCCESSFUL if the object
|
||||
* defined by the RTEMS_MESSAGE_QUEUE_BUFFER() expression has incorrect
|
||||
* size.
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* @brief Check the RTEMS_MESSAGE_QUEUE_BUFFER() macro.
|
||||
*/
|
||||
static void RtemsMessageValMessageMacros_Action_0( void )
|
||||
{
|
||||
rtems_status_code status;
|
||||
rtems_id id;
|
||||
|
||||
static const uint32_t maximum_pending_messages_0 = 1;
|
||||
static const size_t maximum_message_size_0 = 1;
|
||||
RTEMS_MESSAGE_QUEUE_BUFFER( maximum_message_size_0 )
|
||||
storage_area_0[ maximum_pending_messages_0 ];
|
||||
rtems_message_queue_config config_0 = {
|
||||
.name = rtems_build_name( 'M', 'S', 'G', '0' ),
|
||||
.maximum_pending_messages = maximum_pending_messages_0,
|
||||
.maximum_message_size = maximum_message_size_0,
|
||||
.storage_area = storage_area_0,
|
||||
.storage_size = sizeof( storage_area_0 ),
|
||||
.storage_free = NULL,
|
||||
.attributes = RTEMS_DEFAULT_OPTIONS
|
||||
};
|
||||
|
||||
static const uint32_t maximum_pending_messages_1 = 3;
|
||||
static const size_t maximum_message_size_1 = 5;
|
||||
RTEMS_MESSAGE_QUEUE_BUFFER( maximum_message_size_1 )
|
||||
storage_area_1[ maximum_pending_messages_1 ];
|
||||
rtems_message_queue_config config_1 = {
|
||||
.name = rtems_build_name( 'M', 'S', 'G', '1' ),
|
||||
.maximum_pending_messages = maximum_pending_messages_1,
|
||||
.maximum_message_size = maximum_message_size_1,
|
||||
.storage_area = storage_area_1,
|
||||
.storage_size = sizeof( storage_area_1 ),
|
||||
.storage_free = NULL,
|
||||
.attributes = RTEMS_DEFAULT_OPTIONS
|
||||
};
|
||||
|
||||
/*
|
||||
* Check that the object defined by the RTEMS_MESSAGE_QUEUE_BUFFER()
|
||||
* expression has the desired size. rtems_message_queue_construct() will
|
||||
* return RTEMS_UNSATISFIED instead of RTEMS_SUCCESSFUL if the object defined
|
||||
* by the RTEMS_MESSAGE_QUEUE_BUFFER() expression has incorrect size.
|
||||
*/
|
||||
status = rtems_message_queue_construct(
|
||||
&config_0,
|
||||
&id
|
||||
);
|
||||
T_step_rsc_success( 0, status );
|
||||
T_step_rsc_success( 1, rtems_message_queue_delete( id ) );
|
||||
|
||||
status = rtems_message_queue_construct(
|
||||
&config_1,
|
||||
&id
|
||||
);
|
||||
T_step_rsc_success( 2, status );
|
||||
T_step_rsc_success( 3, rtems_message_queue_delete( id ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* @fn void T_case_body_RtemsMessageValMessageMacros( void )
|
||||
*/
|
||||
T_TEST_CASE( RtemsMessageValMessageMacros )
|
||||
{
|
||||
T_plan( 4 );
|
||||
|
||||
RtemsMessageValMessageMacros_Action_0();
|
||||
}
|
||||
|
||||
/** @} */
|
||||
886
testsuites/validation/tc-message-performance.c
Normal file
886
testsuites/validation/tc-message-performance.c
Normal file
@@ -0,0 +1,886 @@
|
||||
/* SPDX-License-Identifier: BSD-2-Clause */
|
||||
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* @ingroup RTEMSTestCaseRtemsMessageValPerf
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2021 embedded brains GmbH (http://www.embedded-brains.de)
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file is part of the RTEMS quality process and was automatically
|
||||
* generated. If you find something that needs to be fixed or
|
||||
* worded better please post a report or patch to an RTEMS mailing list
|
||||
* or raise a bug report:
|
||||
*
|
||||
* https://www.rtems.org/bugs.html
|
||||
*
|
||||
* For information on updating and regenerating please refer to the How-To
|
||||
* section in the Software Requirements Engineering chapter of the
|
||||
* RTEMS Software Engineering manual. The manual is provided as a part of
|
||||
* a release. For development sources please refer to the online
|
||||
* documentation at:
|
||||
*
|
||||
* https://docs.rtems.org
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <rtems.h>
|
||||
|
||||
#include "tx-support.h"
|
||||
|
||||
#include <rtems/test.h>
|
||||
|
||||
/**
|
||||
* @defgroup RTEMSTestCaseRtemsMessageValPerf spec:/rtems/message/val/perf
|
||||
*
|
||||
* @ingroup RTEMSTestSuiteTestsuitesPerformanceNoClock0
|
||||
*
|
||||
* @brief This test case provides a context to run @ref RTEMSAPIClassicMessage
|
||||
* performance tests.
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* @brief Test context for spec:/rtems/message/val/perf test case.
|
||||
*/
|
||||
typedef struct {
|
||||
/**
|
||||
* @brief This member provides a message queue identifier.
|
||||
*/
|
||||
rtems_id queue_id;
|
||||
|
||||
/**
|
||||
* @brief This member provides a worker identifier.
|
||||
*/
|
||||
rtems_id worker_id;
|
||||
|
||||
/**
|
||||
* @brief This member provides a status code.
|
||||
*/
|
||||
rtems_status_code status;
|
||||
|
||||
/**
|
||||
* @brief This member references the measure runtime context.
|
||||
*/
|
||||
T_measure_runtime_context *context;
|
||||
|
||||
/**
|
||||
* @brief This member provides the measure runtime request.
|
||||
*/
|
||||
T_measure_runtime_request request;
|
||||
|
||||
/**
|
||||
* @brief This member provides an optional measurement begin time point.
|
||||
*/
|
||||
T_ticks begin;
|
||||
|
||||
/**
|
||||
* @brief This member provides an optional measurement end time point.
|
||||
*/
|
||||
T_ticks end;
|
||||
} RtemsMessageValPerf_Context;
|
||||
|
||||
static RtemsMessageValPerf_Context
|
||||
RtemsMessageValPerf_Instance;
|
||||
|
||||
#define MAXIMUM_PENDING_MESSAGES 1
|
||||
|
||||
#define MAXIMUM_MESSAGE_SIZE 8
|
||||
|
||||
typedef RtemsMessageValPerf_Context Context;
|
||||
|
||||
typedef enum {
|
||||
EVENT_END = RTEMS_EVENT_0,
|
||||
EVENT_SEND = RTEMS_EVENT_1,
|
||||
EVENT_SEND_END = RTEMS_EVENT_2,
|
||||
EVENT_RECEIVE = RTEMS_EVENT_3,
|
||||
EVENT_RECEIVE_END = RTEMS_EVENT_4
|
||||
} Event;
|
||||
|
||||
static RTEMS_MESSAGE_QUEUE_BUFFER( MAXIMUM_MESSAGE_SIZE )
|
||||
storage_area[ MAXIMUM_PENDING_MESSAGES ];
|
||||
|
||||
rtems_message_queue_config config = {
|
||||
.name = OBJECT_NAME,
|
||||
.maximum_pending_messages = MAXIMUM_PENDING_MESSAGES,
|
||||
.maximum_message_size = MAXIMUM_MESSAGE_SIZE,
|
||||
.storage_area = storage_area,
|
||||
.storage_size = sizeof( storage_area )
|
||||
};
|
||||
|
||||
static void Send( const Context *ctx, rtems_event_set events )
|
||||
{
|
||||
SendEvents( ctx->worker_id, events );
|
||||
}
|
||||
|
||||
static void Worker( rtems_task_argument arg )
|
||||
{
|
||||
Context *ctx;
|
||||
|
||||
ctx = (Context *) arg;
|
||||
|
||||
while ( true ) {
|
||||
rtems_event_set events;
|
||||
rtems_status_code sc;
|
||||
T_ticks ticks;
|
||||
uint64_t message;
|
||||
|
||||
sc = rtems_event_receive(
|
||||
RTEMS_ALL_EVENTS,
|
||||
RTEMS_EVENT_ANY | RTEMS_WAIT,
|
||||
RTEMS_NO_TIMEOUT,
|
||||
&events
|
||||
);
|
||||
ticks = T_tick();
|
||||
T_quiet_rsc_success( sc );
|
||||
|
||||
if ( ( events & EVENT_END ) != 0 ) {
|
||||
ctx->end = ticks;
|
||||
}
|
||||
|
||||
if ( ( events & EVENT_SEND ) != 0 ) {
|
||||
message = 0;
|
||||
sc = rtems_message_queue_send(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
sizeof( message )
|
||||
);
|
||||
ticks = T_tick();
|
||||
T_quiet_rsc_success( sc );
|
||||
|
||||
if ( ( events & EVENT_SEND_END ) != 0 ) {
|
||||
ctx->end = ticks;
|
||||
}
|
||||
}
|
||||
|
||||
if ( ( events & EVENT_RECEIVE ) != 0 ) {
|
||||
size_t size;
|
||||
|
||||
sc = rtems_message_queue_receive(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
&size,
|
||||
RTEMS_WAIT,
|
||||
RTEMS_NO_TIMEOUT
|
||||
);
|
||||
ticks = T_tick();
|
||||
T_quiet_rsc_success( sc );
|
||||
|
||||
if ( ( events & EVENT_RECEIVE_END ) != 0 ) {
|
||||
ctx->end = ticks;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void RtemsMessageValPerf_Setup_Context(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
T_measure_runtime_config config;
|
||||
|
||||
memset( &config, 0, sizeof( config ) );
|
||||
config.sample_count = 100;
|
||||
ctx->request.arg = ctx;
|
||||
ctx->request.flags = T_MEASURE_RUNTIME_REPORT_SAMPLES;
|
||||
ctx->context = T_measure_runtime_create( &config );
|
||||
T_assert_not_null( ctx->context );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Create a message queue and a worker task.
|
||||
*/
|
||||
static void RtemsMessageValPerf_Setup( RtemsMessageValPerf_Context *ctx )
|
||||
{
|
||||
rtems_status_code sc;
|
||||
|
||||
SetSelfPriority( PRIO_NORMAL );
|
||||
|
||||
sc = rtems_message_queue_construct( &config, &ctx->queue_id );
|
||||
T_rsc_success( sc );
|
||||
|
||||
ctx->worker_id = CreateTask( "WORK", PRIO_HIGH );
|
||||
StartTask( ctx->worker_id, Worker, ctx );
|
||||
}
|
||||
|
||||
static void RtemsMessageValPerf_Setup_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageValPerf_Setup_Context( ctx );
|
||||
RtemsMessageValPerf_Setup( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Delete the worker task and the message queue.
|
||||
*/
|
||||
static void RtemsMessageValPerf_Teardown( RtemsMessageValPerf_Context *ctx )
|
||||
{
|
||||
rtems_status_code sc;
|
||||
|
||||
DeleteTask( ctx->worker_id );
|
||||
|
||||
sc = rtems_message_queue_delete( ctx->queue_id );
|
||||
T_rsc_success( sc );
|
||||
|
||||
RestoreRunnerPriority();
|
||||
}
|
||||
|
||||
static void RtemsMessageValPerf_Teardown_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageValPerf_Teardown( ctx );
|
||||
}
|
||||
|
||||
static T_fixture RtemsMessageValPerf_Fixture = {
|
||||
.setup = RtemsMessageValPerf_Setup_Wrap,
|
||||
.stop = NULL,
|
||||
.teardown = RtemsMessageValPerf_Teardown_Wrap,
|
||||
.scope = NULL,
|
||||
.initial_context = &RtemsMessageValPerf_Instance
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Try to receive a message.
|
||||
*/
|
||||
static void RtemsMessageReqPerfReceiveTry_Body(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
uint64_t message;
|
||||
size_t size;
|
||||
|
||||
ctx->status = rtems_message_queue_receive(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
&size,
|
||||
RTEMS_NO_WAIT,
|
||||
0
|
||||
);
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfReceiveTry_Body_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfReceiveTry_Body( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Discard samples interrupted by a clock tick.
|
||||
*/
|
||||
static bool RtemsMessageReqPerfReceiveTry_Teardown(
|
||||
RtemsMessageValPerf_Context *ctx,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
T_quiet_rsc( ctx->status, RTEMS_UNSATISFIED );
|
||||
|
||||
return tic == toc;
|
||||
}
|
||||
|
||||
static bool RtemsMessageReqPerfReceiveTry_Teardown_Wrap(
|
||||
void *arg,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
return RtemsMessageReqPerfReceiveTry_Teardown( ctx, delta, tic, toc, retry );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Schedule a message send.
|
||||
*/
|
||||
static void RtemsMessageReqPerfReceiveWaitForever_Setup(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
SetPriority( ctx->worker_id, PRIO_LOW );
|
||||
Send( ctx, EVENT_END | EVENT_SEND );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfReceiveWaitForever_Setup_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfReceiveWaitForever_Setup( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Receive a message. Wait forever.
|
||||
*/
|
||||
static void RtemsMessageReqPerfReceiveWaitForever_Body(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
uint64_t message;
|
||||
size_t size;
|
||||
|
||||
ctx->begin = T_tick();
|
||||
ctx->status = rtems_message_queue_receive(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
&size,
|
||||
RTEMS_WAIT,
|
||||
RTEMS_NO_TIMEOUT
|
||||
);
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfReceiveWaitForever_Body_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfReceiveWaitForever_Body( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Set the measured runtime. Restore the worker priority. Discard
|
||||
* samples interrupted by a clock tick.
|
||||
*/
|
||||
static bool RtemsMessageReqPerfReceiveWaitForever_Teardown(
|
||||
RtemsMessageValPerf_Context *ctx,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
T_quiet_rsc_success( ctx->status );
|
||||
|
||||
*delta = ctx->end - ctx->begin;
|
||||
SetPriority( ctx->worker_id, PRIO_HIGH );
|
||||
|
||||
return tic == toc;
|
||||
}
|
||||
|
||||
static bool RtemsMessageReqPerfReceiveWaitForever_Teardown_Wrap(
|
||||
void *arg,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
return RtemsMessageReqPerfReceiveWaitForever_Teardown(
|
||||
ctx,
|
||||
delta,
|
||||
tic,
|
||||
toc,
|
||||
retry
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Schedule a message send.
|
||||
*/
|
||||
static void RtemsMessageReqPerfReceiveWaitTimed_Setup(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
SetPriority( ctx->worker_id, PRIO_LOW );
|
||||
Send( ctx, EVENT_END | EVENT_SEND );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfReceiveWaitTimed_Setup_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfReceiveWaitTimed_Setup( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Receive a message. Wait with a timeout.
|
||||
*/
|
||||
static void RtemsMessageReqPerfReceiveWaitTimed_Body(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
uint64_t message;
|
||||
size_t size;
|
||||
|
||||
ctx->begin = T_tick();
|
||||
ctx->status = rtems_message_queue_receive(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
&size,
|
||||
RTEMS_WAIT,
|
||||
UINT32_MAX
|
||||
);
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfReceiveWaitTimed_Body_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfReceiveWaitTimed_Body( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Set the measured runtime. Restore the worker priority. Discard
|
||||
* samples interrupted by a clock tick.
|
||||
*/
|
||||
static bool RtemsMessageReqPerfReceiveWaitTimed_Teardown(
|
||||
RtemsMessageValPerf_Context *ctx,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
T_quiet_rsc_success( ctx->status );
|
||||
|
||||
*delta = ctx->end - ctx->begin;
|
||||
SetPriority( ctx->worker_id, PRIO_HIGH );
|
||||
|
||||
return tic == toc;
|
||||
}
|
||||
|
||||
static bool RtemsMessageReqPerfReceiveWaitTimed_Teardown_Wrap(
|
||||
void *arg,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
return RtemsMessageReqPerfReceiveWaitTimed_Teardown(
|
||||
ctx,
|
||||
delta,
|
||||
tic,
|
||||
toc,
|
||||
retry
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Send a message.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSend_Body( RtemsMessageValPerf_Context *ctx )
|
||||
{
|
||||
uint64_t message;
|
||||
|
||||
ctx->status = rtems_message_queue_send(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
sizeof( message )
|
||||
);
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfSend_Body_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfSend_Body( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Flush the message queue. Discard samples interrupted by a clock
|
||||
* tick.
|
||||
*/
|
||||
static bool RtemsMessageReqPerfSend_Teardown(
|
||||
RtemsMessageValPerf_Context *ctx,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
rtems_status_code sc;
|
||||
uint32_t count;
|
||||
|
||||
T_quiet_rsc_success( ctx->status );
|
||||
|
||||
sc = rtems_message_queue_flush( ctx->queue_id, &count );
|
||||
T_quiet_rsc_success( sc );
|
||||
T_quiet_eq_u32( count, 1 );
|
||||
|
||||
return tic == toc;
|
||||
}
|
||||
|
||||
static bool RtemsMessageReqPerfSend_Teardown_Wrap(
|
||||
void *arg,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
return RtemsMessageReqPerfSend_Teardown( ctx, delta, tic, toc, retry );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Let the worker wait on the message queue.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSendOther_Setup(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
Send( ctx, EVENT_RECEIVE );
|
||||
SetPriority( ctx->worker_id, PRIO_LOW );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfSendOther_Setup_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfSendOther_Setup( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Send a message.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSendOther_Body(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
uint64_t message;
|
||||
|
||||
ctx->status = rtems_message_queue_send(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
sizeof( message )
|
||||
);
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfSendOther_Body_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfSendOther_Body( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Restore the worker priority. Discard samples interrupted by a clock
|
||||
* tick.
|
||||
*/
|
||||
static bool RtemsMessageReqPerfSendOther_Teardown(
|
||||
RtemsMessageValPerf_Context *ctx,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
T_quiet_rsc_success( ctx->status );
|
||||
|
||||
SetPriority( ctx->worker_id, PRIO_HIGH );
|
||||
|
||||
return tic == toc;
|
||||
}
|
||||
|
||||
static bool RtemsMessageReqPerfSendOther_Teardown_Wrap(
|
||||
void *arg,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
return RtemsMessageReqPerfSendOther_Teardown( ctx, delta, tic, toc, retry );
|
||||
}
|
||||
|
||||
#if defined(RTEMS_SMP)
|
||||
/**
|
||||
* @brief Move worker to scheduler B.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSendOtherCpu_Prepare(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
SetScheduler( ctx->worker_id, SCHEDULER_B_ID, PRIO_NORMAL );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Let the worker wait on the message queue.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSendOtherCpu_Setup(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
Send( ctx, EVENT_RECEIVE | EVENT_RECEIVE_END );
|
||||
WaitForNextTask( 1, ctx->worker_id );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfSendOtherCpu_Setup_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfSendOtherCpu_Setup( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Send a message.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSendOtherCpu_Body(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
uint64_t message;
|
||||
|
||||
ctx->begin = T_tick();
|
||||
ctx->status = rtems_message_queue_send(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
sizeof( message )
|
||||
);
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfSendOtherCpu_Body_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfSendOtherCpu_Body( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Make sure the worker waits for the next event. Set the measured
|
||||
* runtime. Discard samples interrupted by a clock tick.
|
||||
*/
|
||||
static bool RtemsMessageReqPerfSendOtherCpu_Teardown(
|
||||
RtemsMessageValPerf_Context *ctx,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
T_quiet_rsc_success( ctx->status );
|
||||
|
||||
WaitForNextTask( 1, ctx->worker_id );
|
||||
*delta = ctx->end - ctx->begin;
|
||||
|
||||
return tic == toc;
|
||||
}
|
||||
|
||||
static bool RtemsMessageReqPerfSendOtherCpu_Teardown_Wrap(
|
||||
void *arg,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
return RtemsMessageReqPerfSendOtherCpu_Teardown(
|
||||
ctx,
|
||||
delta,
|
||||
tic,
|
||||
toc,
|
||||
retry
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Move worker to scheduler A.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSendOtherCpu_Cleanup(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
SetScheduler( ctx->worker_id, SCHEDULER_A_ID, PRIO_HIGH );
|
||||
}
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Let the worker wait on the message queue.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSendPreempt_Setup(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
Send( ctx, EVENT_RECEIVE | EVENT_RECEIVE_END );
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfSendPreempt_Setup_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfSendPreempt_Setup( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Send a message.
|
||||
*/
|
||||
static void RtemsMessageReqPerfSendPreempt_Body(
|
||||
RtemsMessageValPerf_Context *ctx
|
||||
)
|
||||
{
|
||||
uint64_t message;
|
||||
|
||||
ctx->begin = T_tick();
|
||||
ctx->status = rtems_message_queue_send(
|
||||
ctx->queue_id,
|
||||
&message,
|
||||
sizeof( message )
|
||||
);
|
||||
}
|
||||
|
||||
static void RtemsMessageReqPerfSendPreempt_Body_Wrap( void *arg )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
RtemsMessageReqPerfSendPreempt_Body( ctx );
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Set the measured runtime. Discard samples interrupted by a clock
|
||||
* tick.
|
||||
*/
|
||||
static bool RtemsMessageReqPerfSendPreempt_Teardown(
|
||||
RtemsMessageValPerf_Context *ctx,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
T_quiet_rsc_success( ctx->status );
|
||||
|
||||
*delta = ctx->end - ctx->begin;
|
||||
|
||||
return tic == toc;
|
||||
}
|
||||
|
||||
static bool RtemsMessageReqPerfSendPreempt_Teardown_Wrap(
|
||||
void *arg,
|
||||
T_ticks *delta,
|
||||
uint32_t tic,
|
||||
uint32_t toc,
|
||||
unsigned int retry
|
||||
)
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = arg;
|
||||
return RtemsMessageReqPerfSendPreempt_Teardown(
|
||||
ctx,
|
||||
delta,
|
||||
tic,
|
||||
toc,
|
||||
retry
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @fn void T_case_body_RtemsMessageValPerf( void )
|
||||
*/
|
||||
T_TEST_CASE_FIXTURE( RtemsMessageValPerf, &RtemsMessageValPerf_Fixture )
|
||||
{
|
||||
RtemsMessageValPerf_Context *ctx;
|
||||
|
||||
ctx = T_fixture_context();
|
||||
|
||||
ctx->request.name = "RtemsMessageReqPerfReceiveTry";
|
||||
ctx->request.setup = NULL;
|
||||
ctx->request.body = RtemsMessageReqPerfReceiveTry_Body_Wrap;
|
||||
ctx->request.teardown = RtemsMessageReqPerfReceiveTry_Teardown_Wrap;
|
||||
T_measure_runtime( ctx->context, &ctx->request );
|
||||
|
||||
ctx->request.name = "RtemsMessageReqPerfReceiveWaitForever";
|
||||
ctx->request.setup = RtemsMessageReqPerfReceiveWaitForever_Setup_Wrap;
|
||||
ctx->request.body = RtemsMessageReqPerfReceiveWaitForever_Body_Wrap;
|
||||
ctx->request.teardown = RtemsMessageReqPerfReceiveWaitForever_Teardown_Wrap;
|
||||
T_measure_runtime( ctx->context, &ctx->request );
|
||||
|
||||
ctx->request.name = "RtemsMessageReqPerfReceiveWaitTimed";
|
||||
ctx->request.setup = RtemsMessageReqPerfReceiveWaitTimed_Setup_Wrap;
|
||||
ctx->request.body = RtemsMessageReqPerfReceiveWaitTimed_Body_Wrap;
|
||||
ctx->request.teardown = RtemsMessageReqPerfReceiveWaitTimed_Teardown_Wrap;
|
||||
T_measure_runtime( ctx->context, &ctx->request );
|
||||
|
||||
ctx->request.name = "RtemsMessageReqPerfSend";
|
||||
ctx->request.setup = NULL;
|
||||
ctx->request.body = RtemsMessageReqPerfSend_Body_Wrap;
|
||||
ctx->request.teardown = RtemsMessageReqPerfSend_Teardown_Wrap;
|
||||
T_measure_runtime( ctx->context, &ctx->request );
|
||||
|
||||
ctx->request.name = "RtemsMessageReqPerfSendOther";
|
||||
ctx->request.setup = RtemsMessageReqPerfSendOther_Setup_Wrap;
|
||||
ctx->request.body = RtemsMessageReqPerfSendOther_Body_Wrap;
|
||||
ctx->request.teardown = RtemsMessageReqPerfSendOther_Teardown_Wrap;
|
||||
T_measure_runtime( ctx->context, &ctx->request );
|
||||
|
||||
#if defined(RTEMS_SMP)
|
||||
RtemsMessageReqPerfSendOtherCpu_Prepare( ctx );
|
||||
ctx->request.name = "RtemsMessageReqPerfSendOtherCpu";
|
||||
ctx->request.setup = RtemsMessageReqPerfSendOtherCpu_Setup_Wrap;
|
||||
ctx->request.body = RtemsMessageReqPerfSendOtherCpu_Body_Wrap;
|
||||
ctx->request.teardown = RtemsMessageReqPerfSendOtherCpu_Teardown_Wrap;
|
||||
T_measure_runtime( ctx->context, &ctx->request );
|
||||
RtemsMessageReqPerfSendOtherCpu_Cleanup( ctx );
|
||||
#endif
|
||||
|
||||
ctx->request.name = "RtemsMessageReqPerfSendPreempt";
|
||||
ctx->request.setup = RtemsMessageReqPerfSendPreempt_Setup_Wrap;
|
||||
ctx->request.body = RtemsMessageReqPerfSendPreempt_Body_Wrap;
|
||||
ctx->request.teardown = RtemsMessageReqPerfSendPreempt_Teardown_Wrap;
|
||||
T_measure_runtime( ctx->context, &ctx->request );
|
||||
}
|
||||
|
||||
/** @} */
|
||||
1474
testsuites/validation/tc-message-receive.c
Normal file
1474
testsuites/validation/tc-message-receive.c
Normal file
File diff suppressed because it is too large
Load Diff
1167
testsuites/validation/tc-message-urgent-send.c
Normal file
1167
testsuites/validation/tc-message-urgent-send.c
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user