testing/cmocka: forwarding cmocka log message to syslog channel

and ignore cmocka files in apps

Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
haopengxiang 2022-11-07 00:39:35 +08:00 committed by Petro Karashchenko
parent 248a9f772b
commit 1f4292c250
4 changed files with 43 additions and 3 deletions

1
testing/cmocka/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/cmocka

View File

@ -22,6 +22,8 @@ include $(APPDIR)/Make.defs
CSRCS += $(wildcard cmocka/src/*.c)
CFLAGS += -Dprint_error=nx_print_error
CFLAGS += -DCMOCKA_PLATFORM_INCLUDE
CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/testing/cmocka
PROGNAME = $(CONFIG_TESTING_CMOCKA_PROGNAME)
PRIORITY = $(CONFIG_TESTING_CMOCKA_PRIORITY)

View File

@ -48,9 +48,9 @@ int main(int argc, FAR char *argv[])
const char prefix[] = CONFIG_TESTING_CMOCKA_PROGNAME"_";
FAR const struct builtin_s *builtin;
int len = strlen(prefix);
FAR char *bypass[argc];
FAR char *cases[argc];
FAR char *skip[argc];
FAR char *bypass[argc + 1];
FAR char *cases[argc + 1];
FAR char *skip[argc + 1];
int num_bypass = 1;
int num_cases = 0;
int num_skip = 0;

View File

@ -0,0 +1,37 @@
/****************************************************************************
* apps/testing/cmocka/cmocka_platform.h
*
* 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.
*
****************************************************************************/
#ifndef __APPS_TESTING_CMOCKA_CMOCKA_PLATFORM_H
#define __APPS_TESTING_CMOCKA_CMOCKA_PLATFORM_H
/****************************************************************************
* Included Files
****************************************************************************/
#include <syslog.h>
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
#define cmocka_vprint_message(f,a) vsyslog(LOG_INFO,f,a)
#define cmocka_vprint_error(f,a) vsyslog(LOG_ERR,f,a)
#endif /* __APPS_TESTING_CMOCKA_CMOCKA_PLATFORM_H */