blob: f2fae74278a5fc6e2c582ddec0caea1bc63356cb [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/mynewt.h"
#include "runtest/runtest.h"
#include "os_test_priv.h"
TEST_CASE(os_mutex_test_case_1)
{
int rc;
#if MYNEWT_VAL(SELFTEST)
sysinit();
#endif
g_mutex_test = 1;
g_task1_val = 0;
g_task2_val = 0;
g_task3_val = 0;
rc = os_mutex_init(&g_mutex1);
TEST_ASSERT(rc == 0);
rc = os_mutex_init(&g_mutex2);
TEST_ASSERT(rc == 0);
runtest_init_task(mutex_test1_task1_handler,
MYNEWT_VAL(OS_MAIN_TASK_PRIO) + 1);
runtest_init_task(mutex_task2_handler,
MYNEWT_VAL(OS_MAIN_TASK_PRIO) + 2);
runtest_init_task(mutex_task3_handler,
MYNEWT_VAL(OS_MAIN_TASK_PRIO) + 3);
}