@@ -8,7 +8,7 @@
#include "odp_cunit_common.h"
#include "errno.h"
-static void errno_test_odp_errno_sunny_day(void)
+void errno_test_odp_errno_sunny_day(void)
{
int my_errno;
@@ -7,6 +7,18 @@
#ifndef _ODP_TEST_ERRNO_H_
#define _ODP_TEST_ERRNO_H_
+#include <CUnit/Basic.h>
+
+/* test functions: */
+void errno_test_odp_errno_sunny_day(void);
+
+/* test arrays: */
+extern CU_TestInfo errno_suite[];
+
+/* test registry: */
+extern CU_SuiteInfo errno_suites[];
+
+/* main test program: */
int errno_main(void);
#endif
Signed-off-by: Christophe Milard <christophe.milard@linaro.org> --- test/validation/errno/errno.c | 2 +- test/validation/errno/errno.h | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-)