LCOV - differential code coverage report
Current view: top level - src/interfaces/ecpg/test/compat_informix - intoasc.pgc (source / functions) Coverage Total Hit CBC
Current: c70b6db34ffeab48beef1fb4ce61bcad3772b8dd vs 06473f5a344df8c9594ead90a609b86f6724cff8 Lines: 100.0 % 8 8 8
Current Date: 2025-09-06 07:49:51 +0900 Functions: 100.0 % 1 1 1
Baseline: lcov-20250907-010129-baseline Line coverage date bins:
Baseline Date: 2025-09-05 08:21:35 +0100 (360..) days: 100.0 % 8 8 8
Legend: Lines:     hit not hit Function coverage date bins:
(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                 : 
  566 michael@paquier.xyz        11 CBC           1 : int main()
                                 12                 : {
                                 13               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.4-beta