LCOV - differential code coverage report
Current view: top level - src/interfaces/ecpg/test/compat_informix - intoasc.pgc (source / functions) Coverage Total Hit GNC CBC DCB
Current: 380a8b2ea024c33a35e7abc8628e7c4f52f9f9f9 vs db5ed03217b9c238703df8b4b286115d6e940488 Lines: 100.0 % 8 8 1 7 1
Current Date: 2026-05-29 21:51:00 -0400 Functions: 100.0 % 1 1 1 1
Baseline: lcov-20260530-034037-baseline Line coverage date bins:
Baseline Date: 2026-05-29 14:39:03 -0700 (30,360] days: 100.0 % 1 1 1
Legend: Lines:     hit not hit (360..) days: 100.0 % 7 7 7
Function coverage date bins:
(30,360] days: 100.0 % 1 1 1

 Age         Owner                  TLA  Line data    Source code
                                  1                 : #include <stdio.h>
                                  2                 : #include <stdlib.h>
                                  3                 : 
                                  4                 : #include "pgtypes_interval.h"
                                  5                 : 
                                  6                 : EXEC SQL BEGIN DECLARE SECTION;
                                  7                 :     char dirty_str[100] = "aaaaaaaaa_bbbbbbbb_ccccccccc_ddddddddd_";
                                  8                 :     interval *interval_ptr;
                                  9                 : EXEC SQL END DECLARE SECTION;
                                 10                 : 
   75 peter@eisentraut.org       11 GNC           1 : int main(void)
                                 12                 : {
  831 michael@paquier.xyz        13 CBC           1 :     interval_ptr = (interval *) malloc(sizeof(interval));
                                 14               1 :     interval_ptr->time = 100000000;
                                 15               1 :     interval_ptr->month = 240;
                                 16                 : 
                                 17               1 :     printf("dirty_str contents before intoasc: %s\n", dirty_str);
                                 18               1 :     intoasc(interval_ptr, dirty_str);
                                 19               1 :     printf("dirty_str contents after intoasc: %s\n", dirty_str);
                                 20               1 :     return 0;
                                 21                 : }
        

Generated by: LCOV version 2.5.0-beta