16 lines
335 B
C
16 lines
335 B
C
|
|
#ifndef _UT_CASE_H_
|
|
#define _UT_CASE_H_
|
|
|
|
void test_math(void);
|
|
void test_libc(void);
|
|
void test_time(void);
|
|
void test_multi_stage_in_stage1(void);
|
|
void test_multi_stage_in_stage2(void);
|
|
void test_submakefile1(void);
|
|
void test_reserved_mem(void);
|
|
int run_ut_in_stage1(void);
|
|
int run_ut_in_stage2(void);
|
|
|
|
#endif /* ifndef _UT_CASE_H_ */
|