LCOV - differential code coverage report
Current view: top level - src/interfaces/ecpg/test/compat_informix - intoasc.pgc (source / functions) Coverage Total Hit CBC
Current: b45a8d7d8b306b43f31a002f1b3f1dddc8defeaf vs 8767b449a3a1e75626dfb08f24da54933171d4c5 Lines: 100.0 % 8 8 8
Current Date: 2025-10-28 08:26:42 +0900 Functions: 100.0 % 1 1 1
Baseline: lcov-20251028-005825-baseline Line coverage date bins:
Baseline Date: 2025-10-27 06:37:35 +0000 (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                 : 
  617 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