Rtos API example

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers unity_handler.cpp Source File

unity_handler.cpp

00001 /****************************************************************************
00002  * Copyright (c) 2015, ARM Limited, All Rights Reserved
00003  * SPDX-License-Identifier: Apache-2.0
00004  *
00005  * Licensed under the Apache License, Version 2.0 (the "License"); you may
00006  * not use this file except in compliance with the License.
00007  * You may obtain a copy of the License at
00008  *
00009  * http://www.apache.org/licenses/LICENSE-2.0
00010  *
00011  * Unless required by applicable law or agreed to in writing, software
00012  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
00013  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  * See the License for the specific language governing permissions and
00015  * limitations under the License.
00016  ****************************************************************************
00017  */
00018 
00019 #include "utest/utest_harness.h"
00020 #include "utest/utest_stack_trace.h"
00021 #include "utest/unity_handler.h"
00022 #include "greentea-client/greentea_serial.h"
00023 
00024 void utest_unity_assert_failure(void)
00025 {
00026     UTEST_LOG_FUNCTION();
00027     utest::v1::Harness::raise_failure(utest::v1::REASON_ASSERTION);
00028 }
00029 
00030 void utest_unity_ignore_failure(void)
00031 {
00032     UTEST_LOG_FUNCTION();
00033     utest::v1::Harness::raise_failure(utest::v1::failure_reason_t(utest::v1::REASON_ASSERTION | utest::v1::REASON_IGNORE));
00034 }
00035 
00036 void utest_safe_putc(int chr)
00037 {
00038     greentea_serial->putc(chr);
00039 }    
00040 
00041