LCOV - code coverage report
Current view: top level - libsystemd/sd-bus - test-bus-creds.c (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 15 16 93.8 %
Date: 2019-08-23 13:36:53 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 6 12 50.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : 
       3                 :            : #include "sd-bus.h"
       4                 :            : 
       5                 :            : #include "bus-dump.h"
       6                 :            : #include "bus-util.h"
       7                 :            : #include "cgroup-util.h"
       8                 :            : #include "tests.h"
       9                 :            : 
      10                 :          4 : int main(int argc, char *argv[]) {
      11                 :          4 :         _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
      12                 :            :         int r;
      13                 :            : 
      14                 :          4 :         test_setup_logging(LOG_DEBUG);
      15                 :            : 
      16         [ -  + ]:          4 :         if (cg_unified_flush() == -ENOMEDIUM)
      17                 :          0 :                 return log_tests_skipped("/sys/fs/cgroup/ not available");
      18                 :            : 
      19                 :          4 :         r = sd_bus_creds_new_from_pid(&creds, 0, _SD_BUS_CREDS_ALL);
      20   [ -  +  +  - ]:          4 :         log_full_errno(r < 0 ? LOG_ERR : LOG_DEBUG, r, "sd_bus_creds_new_from_pid: %m");
      21         [ -  + ]:          4 :         assert_se(r >= 0);
      22                 :            : 
      23                 :          4 :         bus_creds_dump(creds, NULL, true);
      24                 :            : 
      25                 :          4 :         creds = sd_bus_creds_unref(creds);
      26                 :            : 
      27                 :          4 :         r = sd_bus_creds_new_from_pid(&creds, 1, _SD_BUS_CREDS_ALL);
      28         [ +  - ]:          4 :         if (r != -EACCES) {
      29         [ -  + ]:          4 :                 assert_se(r >= 0);
      30                 :          4 :                 putchar('\n');
      31                 :          4 :                 bus_creds_dump(creds, NULL, true);
      32                 :            :         }
      33                 :            : 
      34                 :          4 :         return 0;
      35                 :            : }

Generated by: LCOV version 1.14