blob: 605fcb29339129d69d6f00ff72b4df58349e9560 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "os_test_priv.h"
TEST_CASE(event_test_sr)
{
int i;
/* Initialize the task */
os_task_init(&eventq_task_s, "eventq_task_s", eventq_task_send, NULL,
SEND_TASK_PRIO, OS_WAIT_FOREVER, eventq_task_stack_s, MY_STACK_SIZE);
/* Receive events and check whether the eevnts are correctly received */
os_task_init(&eventq_task_r, "eventq_task_r", eventq_task_receive, NULL,
RECEIVE_TASK_PRIO, OS_WAIT_FOREVER, eventq_task_stack_r,
MY_STACK_SIZE);
os_eventq_init(&my_eventq);
for (i = 0; i < SIZE_MULTI_EVENT; i++){
os_eventq_init(&multi_eventq[i]);
}
}