LCOV - code coverage report
Current view: top level - fuzz - fuzz-calendarspec.c (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 0 11 0.0 %
Date: 2019-08-23 13:36:53 Functions: 0 1 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 4 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : 
       3                 :            : #include "alloc-util.h"
       4                 :            : #include "calendarspec.h"
       5                 :            : #include "fd-util.h"
       6                 :            : #include "fuzz.h"
       7                 :            : 
       8                 :          0 : int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
       9                 :          0 :         _cleanup_(calendar_spec_freep) CalendarSpec *cspec = NULL;
      10                 :          0 :         _cleanup_free_ char *str = NULL, *p = NULL;
      11                 :            : 
      12         [ #  # ]:          0 :         if (!getenv("SYSTEMD_LOG_LEVEL"))
      13                 :          0 :                 log_set_max_level(LOG_CRIT);
      14                 :            : 
      15                 :          0 :         str = memdup_suffix0(data, size);
      16                 :            : 
      17         [ #  # ]:          0 :         if (calendar_spec_from_string(str, &cspec) >= 0) {
      18                 :          0 :                 (void) calendar_spec_valid(cspec);
      19                 :          0 :                 (void) calendar_spec_normalize(cspec);
      20                 :          0 :                 (void) calendar_spec_to_string(cspec, &p);
      21                 :            :         }
      22                 :            : 
      23                 :          0 :         return 0;
      24                 :            : }

Generated by: LCOV version 1.14