2015-04-11 07:44:37 +08:00
|
|
|
/* tc_utilities.h - testcase utilities header file */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2012-2015 Wind River Systems, Inc.
|
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Licensed 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
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* 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.
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TC_UTIL_H__
|
|
|
|
#define __TC_UTIL_H__
|
|
|
|
|
2015-10-21 19:36:59 +08:00
|
|
|
#include <zephyr.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2016-06-23 21:47:00 +08:00
|
|
|
#if defined(CONFIG_STDOUT_CONSOLE)
|
|
|
|
#include <stdio.h>
|
|
|
|
#define PRINT_DATA(fmt, ...) printf(fmt, ##__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#include <misc/printk.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#define PRINT_DATA(fmt, ...) printk(fmt, ##__VA_ARGS__)
|
2016-06-23 21:47:00 +08:00
|
|
|
#endif /* CONFIG_STDOUT_CONSOLE */
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2016-05-25 12:02:02 +08:00
|
|
|
/**
|
|
|
|
* @def TC_PRINT_RUN_ID
|
|
|
|
* @brief Report a Run ID
|
|
|
|
*
|
|
|
|
* When the CPP symbol \c TC_RUNID is defined (for example, from the
|
|
|
|
* compile environment), print the defined string ``RunID:
|
|
|
|
* <TC_RUNID>`` when called (TC_END_REPORT() will also call it).
|
|
|
|
*
|
|
|
|
* This is used mainly when automating the execution and running of
|
|
|
|
* multiple test cases, to verify that the expected image is being
|
|
|
|
* executed (as sometimes the targets fail to flash or reset
|
|
|
|
* properly).
|
|
|
|
*
|
|
|
|
* TC_RUNID is any string, that will be converted to a string literal.
|
|
|
|
*/
|
|
|
|
#define __str(x) #x
|
|
|
|
#define _str(x) __str(x)
|
|
|
|
#ifdef TC_RUNID
|
|
|
|
#define TC_PRINT_RUNID PRINT_DATA("RunID: " _str(TC_RUNID) "\n")
|
|
|
|
#else
|
|
|
|
#define TC_PRINT_RUNID do {} while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PRINT_LINE \
|
2015-04-11 07:44:37 +08:00
|
|
|
PRINT_DATA( \
|
|
|
|
"============================================================" \
|
|
|
|
"=======\n")
|
|
|
|
|
|
|
|
/* stack size and priority for test suite task */
|
|
|
|
#define TASK_STACK_SIZE (1024 * 2)
|
|
|
|
|
|
|
|
#define FAIL "FAIL"
|
|
|
|
#define PASS "PASS"
|
|
|
|
#define FMT_ERROR "%s - %s@%d. "
|
|
|
|
|
|
|
|
#define TC_PASS 0
|
|
|
|
#define TC_FAIL 1
|
|
|
|
|
|
|
|
#define TC_ERROR(fmt, ...) \
|
|
|
|
do { \
|
|
|
|
PRINT_DATA(FMT_ERROR, FAIL, __func__, __LINE__); \
|
|
|
|
PRINT_DATA(fmt, ##__VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define TC_PRINT(fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__)
|
|
|
|
#define TC_START(name) PRINT_DATA("tc_start() - %s\n", name)
|
|
|
|
#define TC_END(result, fmt, ...) PRINT_DATA(fmt, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
/* prints result and the function name */
|
|
|
|
#define TC_END_RESULT(result) \
|
|
|
|
do { \
|
|
|
|
PRINT_LINE; \
|
|
|
|
TC_END(result, "%s - %s.\n", \
|
|
|
|
result == TC_PASS ? PASS : FAIL, __func__); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define TC_END_REPORT(result) \
|
|
|
|
do { \
|
|
|
|
PRINT_LINE; \
|
2016-05-25 12:02:02 +08:00
|
|
|
TC_PRINT_RUNID; \
|
2015-04-11 07:44:37 +08:00
|
|
|
TC_END(result, \
|
2015-06-05 20:24:47 +08:00
|
|
|
"PROJECT EXECUTION %s\n", \
|
2015-04-11 07:44:37 +08:00
|
|
|
result == TC_PASS ? "SUCCESSFUL" : "FAILED"); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#endif /* __TC_UTIL_H__ */
|