9aedfdd4f7
gcov.c:61:6: warning: 'path' may be used uninitialized [-Wmaybe-uninitialized] 61 | if (path == NULL || access(path, F_OK) != 0 || atoi(strip) <= 0) | ^ gcov.c: In function 'gcov_main': gcov.c:79:19: note: 'path' was declared here 79 | FAR const char *path; Signed-off-by: wangmingrong1 <wangmingrong1@xiaomi.com>
116 lines
3.5 KiB
C
116 lines
3.5 KiB
C
/****************************************************************************
|
|
* apps/system/gcov/gcov.c
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: show_usage
|
|
****************************************************************************/
|
|
|
|
static void show_usage(FAR const char *progname)
|
|
{
|
|
printf("\nUsage: %s [-d path] [-t strip] [-r] [-h]\n", progname);
|
|
printf("\nWhere:\n");
|
|
printf(" -d dump the coverage, path is the path to the coverage file\n");
|
|
printf(" -t strip the path prefix number\n");
|
|
printf(" -r reset the coverage\n");
|
|
printf(" -h show this text and exits.\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Function Prototypes
|
|
****************************************************************************/
|
|
|
|
void __gcov_dump(void);
|
|
void __gcov_reset(void);
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
static void gcov_dump(FAR const char * path, FAR const char *strip)
|
|
{
|
|
if (path == NULL || access(path, F_OK) != 0 || atoi(strip) <= 0)
|
|
{
|
|
fprintf(stderr, "ERROR: Invalid parameter\n");
|
|
return;
|
|
}
|
|
|
|
setenv("GCOV_PREFIX_STRIP", strip, 1);
|
|
setenv("GCOV_PREFIX", path, 1);
|
|
__gcov_dump();
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
int main(int argc, FAR char *argv[])
|
|
{
|
|
FAR const char *strip = "99";
|
|
FAR const char *path = NULL;
|
|
int option;
|
|
|
|
if (argc < 2)
|
|
{
|
|
show_usage(argv[0]);
|
|
}
|
|
|
|
while ((option = getopt(argc, argv, "d:t:rh")) != ERROR)
|
|
{
|
|
switch (option)
|
|
{
|
|
case 'd':
|
|
path = optarg;
|
|
break;
|
|
|
|
case 't':
|
|
strip = optarg;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
__gcov_reset();
|
|
break;
|
|
|
|
case '?':
|
|
default:
|
|
fprintf(stderr, "ERROR: Unrecognized option\n");
|
|
|
|
case 'h':
|
|
show_usage(argv[0]);
|
|
}
|
|
}
|
|
|
|
gcov_dump(path, strip);
|
|
return 0;
|
|
}
|