Compare two log files line by line and print difference












0















I have to compare two different log files line by line (in each line data between two symbols (: and ;) is to be checked) and print all lines of log 1 that are not in log 2.



If two or more lines have same set of info in log 1 then print just single line in output. I want to compare data of every line (data starting from first colon to appearance of a semicolon) irrespective whether it is a set of alphabet, numbers or special characters



Log 1



INFO @0 digrf_0_drv: Constructing a digrf Driver: digrf_0_drv; T=0
INFO @603845 mcPWM_CYC: ----- SV is waiting for FLAG 4 -----; T=603845
INFO @1116033 mcPWM_CYC: ----- SV is waiting for FLAG 0 -----; T=1116033
INFO @1145215 mcPWM_CYC: ----- Flag 0 OK SV STARTED -----; T=1145215
INFO @1145215 mcPWM_CYC: PORT STIM started !!!; T=1145215
INFO @1145287 mcPWM_CYC: ----- SV is waiting for FLAG 2 -----; T=1145287
INFO @1146281 mcPWM_CYC: ----- Flag 0 OK : SV STARTED -----; T=1146281
INFO @1146281 mcPWM_CYC: PORT STIM started !!!; T=1146281
INFO @1190554 mcPWM_CYC: C-Code exit execution. code=<aa>; T=1190554
INFO @1190554 mti_lane1_bw_mon: total bytes = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane1_bw_mon: time window = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane1_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane2_bw_mon: total bytes = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane2_bw_mon: time window = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane2_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane3_bw_mon: total bytes = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane3_bw_mon: time window = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane3_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane4_bw_mon: total bytes = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane4_bw_mon: time window = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane4_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane5_bw_mon: total bytes = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane5_bw_mon: time window = 0, at time = 1190554; T=1190554
INFO @1190554 mti_lane5_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
INFO: Report(s) of this encapsulation run can be found under:


Log2:



UVM_INFO @1353514 reporter [Z7_COREA]: mcPWM0_ExtSig: *** START Syncronization with Verilog Stimulus ***; T=1353514
UVM_INFO @1353578 reporter [Z7_COREA]: C FLAG_SET: Setting flag 0; T=1353578
UVM_INFO @1353578 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 0; T=1353578
UVM_INFO @1353578 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- Flag 0 OK SV STARTED -----; T=1353578
UVM_INFO @1353578 reporter [testbench.top_level_module.mcPWM_CYC::main ]: PORT STIM started !!!; T=1353578
UVM_INFO @1353642 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 1, status is 0; T=1353642
UVM_INFO @1353650 reporter [Z7_COREA]: V FLAG_SET: Setting flag 1; T=1353650
UVM_INFO @1353650 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- SV is waiting for FLAG 2 -----; T=1353650
UVM_INFO @1353650 reporter [Z4_COREA]: V FLAG_WAIT: Checking flag 2, status is 0; T=1353650
UVM_INFO @1353743 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 1, status is 1; T=1353743
UVM_INFO @1354063 reporter [Z7_COREA]: REM16: A=fbc00086 R=0007 E=0007 M=ffff; T=1354063
UVM_INFO @1354336 reporter [Z7_COREA]: REM16: A=fbc00080 R=048e E=048e M=ffff; T=1354336
UVM_INFO @1354532 reporter [Z7_COREA]: W16: A=fbc00080 W=008d; T=1354532
UVM_INFO @1354597 reporter [Z7_COREA]: C FLAG_SET: Setting flag 2; T=1354597
UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354597
UVM_INFO @1354597 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- Flag 0 OK SV STARTED -----; T=1354597
UVM_INFO @1354597 reporter [testbench.top_level_module.mcPWM_CYC::main ]: PORT STIM started !!!; T=1354597
UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354597
UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Checking flag 2, status is 1; T=1354597
UVM_INFO @1354661 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 2, status is 1; T=1354661
UVM_INFO @1354741 reporter [Z7_COREA]: V FLAG_CLEAR: Clearing flag 2; T=1354741
UVM_INFO @1354741 reporter [Z4_COREA]: V FLAG_SET: Setting flag 5; T=1354741
UVM_INFO @1354741 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354741


Expected Output:



Constructing a digrf Driver: digrf_0_drv
----- SV is waiting for FLAG 4 -----
----- SV is waiting for FLAG 0 -----
C-Code exit execution. code=<aa>
total bytes = 0, at time = 1190554
time window = 0, at time = 1190554
BW in Mbps = 0, at time = 1190554
Report(s) of this encapsulation run can be found under








share







New contributor




Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    I have to compare two different log files line by line (in each line data between two symbols (: and ;) is to be checked) and print all lines of log 1 that are not in log 2.



    If two or more lines have same set of info in log 1 then print just single line in output. I want to compare data of every line (data starting from first colon to appearance of a semicolon) irrespective whether it is a set of alphabet, numbers or special characters



    Log 1



    INFO @0 digrf_0_drv: Constructing a digrf Driver: digrf_0_drv; T=0
    INFO @603845 mcPWM_CYC: ----- SV is waiting for FLAG 4 -----; T=603845
    INFO @1116033 mcPWM_CYC: ----- SV is waiting for FLAG 0 -----; T=1116033
    INFO @1145215 mcPWM_CYC: ----- Flag 0 OK SV STARTED -----; T=1145215
    INFO @1145215 mcPWM_CYC: PORT STIM started !!!; T=1145215
    INFO @1145287 mcPWM_CYC: ----- SV is waiting for FLAG 2 -----; T=1145287
    INFO @1146281 mcPWM_CYC: ----- Flag 0 OK : SV STARTED -----; T=1146281
    INFO @1146281 mcPWM_CYC: PORT STIM started !!!; T=1146281
    INFO @1190554 mcPWM_CYC: C-Code exit execution. code=<aa>; T=1190554
    INFO @1190554 mti_lane1_bw_mon: total bytes = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane1_bw_mon: time window = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane1_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane2_bw_mon: total bytes = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane2_bw_mon: time window = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane2_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane3_bw_mon: total bytes = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane3_bw_mon: time window = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane3_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane4_bw_mon: total bytes = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane4_bw_mon: time window = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane4_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane5_bw_mon: total bytes = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane5_bw_mon: time window = 0, at time = 1190554; T=1190554
    INFO @1190554 mti_lane5_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
    INFO: Report(s) of this encapsulation run can be found under:


    Log2:



    UVM_INFO @1353514 reporter [Z7_COREA]: mcPWM0_ExtSig: *** START Syncronization with Verilog Stimulus ***; T=1353514
    UVM_INFO @1353578 reporter [Z7_COREA]: C FLAG_SET: Setting flag 0; T=1353578
    UVM_INFO @1353578 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 0; T=1353578
    UVM_INFO @1353578 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- Flag 0 OK SV STARTED -----; T=1353578
    UVM_INFO @1353578 reporter [testbench.top_level_module.mcPWM_CYC::main ]: PORT STIM started !!!; T=1353578
    UVM_INFO @1353642 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 1, status is 0; T=1353642
    UVM_INFO @1353650 reporter [Z7_COREA]: V FLAG_SET: Setting flag 1; T=1353650
    UVM_INFO @1353650 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- SV is waiting for FLAG 2 -----; T=1353650
    UVM_INFO @1353650 reporter [Z4_COREA]: V FLAG_WAIT: Checking flag 2, status is 0; T=1353650
    UVM_INFO @1353743 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 1, status is 1; T=1353743
    UVM_INFO @1354063 reporter [Z7_COREA]: REM16: A=fbc00086 R=0007 E=0007 M=ffff; T=1354063
    UVM_INFO @1354336 reporter [Z7_COREA]: REM16: A=fbc00080 R=048e E=048e M=ffff; T=1354336
    UVM_INFO @1354532 reporter [Z7_COREA]: W16: A=fbc00080 W=008d; T=1354532
    UVM_INFO @1354597 reporter [Z7_COREA]: C FLAG_SET: Setting flag 2; T=1354597
    UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354597
    UVM_INFO @1354597 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- Flag 0 OK SV STARTED -----; T=1354597
    UVM_INFO @1354597 reporter [testbench.top_level_module.mcPWM_CYC::main ]: PORT STIM started !!!; T=1354597
    UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354597
    UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Checking flag 2, status is 1; T=1354597
    UVM_INFO @1354661 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 2, status is 1; T=1354661
    UVM_INFO @1354741 reporter [Z7_COREA]: V FLAG_CLEAR: Clearing flag 2; T=1354741
    UVM_INFO @1354741 reporter [Z4_COREA]: V FLAG_SET: Setting flag 5; T=1354741
    UVM_INFO @1354741 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354741


    Expected Output:



    Constructing a digrf Driver: digrf_0_drv
    ----- SV is waiting for FLAG 4 -----
    ----- SV is waiting for FLAG 0 -----
    C-Code exit execution. code=<aa>
    total bytes = 0, at time = 1190554
    time window = 0, at time = 1190554
    BW in Mbps = 0, at time = 1190554
    Report(s) of this encapsulation run can be found under








    share







    New contributor




    Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      I have to compare two different log files line by line (in each line data between two symbols (: and ;) is to be checked) and print all lines of log 1 that are not in log 2.



      If two or more lines have same set of info in log 1 then print just single line in output. I want to compare data of every line (data starting from first colon to appearance of a semicolon) irrespective whether it is a set of alphabet, numbers or special characters



      Log 1



      INFO @0 digrf_0_drv: Constructing a digrf Driver: digrf_0_drv; T=0
      INFO @603845 mcPWM_CYC: ----- SV is waiting for FLAG 4 -----; T=603845
      INFO @1116033 mcPWM_CYC: ----- SV is waiting for FLAG 0 -----; T=1116033
      INFO @1145215 mcPWM_CYC: ----- Flag 0 OK SV STARTED -----; T=1145215
      INFO @1145215 mcPWM_CYC: PORT STIM started !!!; T=1145215
      INFO @1145287 mcPWM_CYC: ----- SV is waiting for FLAG 2 -----; T=1145287
      INFO @1146281 mcPWM_CYC: ----- Flag 0 OK : SV STARTED -----; T=1146281
      INFO @1146281 mcPWM_CYC: PORT STIM started !!!; T=1146281
      INFO @1190554 mcPWM_CYC: C-Code exit execution. code=<aa>; T=1190554
      INFO @1190554 mti_lane1_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane1_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane1_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane2_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane2_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane2_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane3_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane3_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane3_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane4_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane4_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane4_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane5_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane5_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane5_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO: Report(s) of this encapsulation run can be found under:


      Log2:



      UVM_INFO @1353514 reporter [Z7_COREA]: mcPWM0_ExtSig: *** START Syncronization with Verilog Stimulus ***; T=1353514
      UVM_INFO @1353578 reporter [Z7_COREA]: C FLAG_SET: Setting flag 0; T=1353578
      UVM_INFO @1353578 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 0; T=1353578
      UVM_INFO @1353578 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- Flag 0 OK SV STARTED -----; T=1353578
      UVM_INFO @1353578 reporter [testbench.top_level_module.mcPWM_CYC::main ]: PORT STIM started !!!; T=1353578
      UVM_INFO @1353642 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 1, status is 0; T=1353642
      UVM_INFO @1353650 reporter [Z7_COREA]: V FLAG_SET: Setting flag 1; T=1353650
      UVM_INFO @1353650 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- SV is waiting for FLAG 2 -----; T=1353650
      UVM_INFO @1353650 reporter [Z4_COREA]: V FLAG_WAIT: Checking flag 2, status is 0; T=1353650
      UVM_INFO @1353743 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 1, status is 1; T=1353743
      UVM_INFO @1354063 reporter [Z7_COREA]: REM16: A=fbc00086 R=0007 E=0007 M=ffff; T=1354063
      UVM_INFO @1354336 reporter [Z7_COREA]: REM16: A=fbc00080 R=048e E=048e M=ffff; T=1354336
      UVM_INFO @1354532 reporter [Z7_COREA]: W16: A=fbc00080 W=008d; T=1354532
      UVM_INFO @1354597 reporter [Z7_COREA]: C FLAG_SET: Setting flag 2; T=1354597
      UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354597
      UVM_INFO @1354597 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- Flag 0 OK SV STARTED -----; T=1354597
      UVM_INFO @1354597 reporter [testbench.top_level_module.mcPWM_CYC::main ]: PORT STIM started !!!; T=1354597
      UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354597
      UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Checking flag 2, status is 1; T=1354597
      UVM_INFO @1354661 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 2, status is 1; T=1354661
      UVM_INFO @1354741 reporter [Z7_COREA]: V FLAG_CLEAR: Clearing flag 2; T=1354741
      UVM_INFO @1354741 reporter [Z4_COREA]: V FLAG_SET: Setting flag 5; T=1354741
      UVM_INFO @1354741 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354741


      Expected Output:



      Constructing a digrf Driver: digrf_0_drv
      ----- SV is waiting for FLAG 4 -----
      ----- SV is waiting for FLAG 0 -----
      C-Code exit execution. code=<aa>
      total bytes = 0, at time = 1190554
      time window = 0, at time = 1190554
      BW in Mbps = 0, at time = 1190554
      Report(s) of this encapsulation run can be found under








      share







      New contributor




      Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I have to compare two different log files line by line (in each line data between two symbols (: and ;) is to be checked) and print all lines of log 1 that are not in log 2.



      If two or more lines have same set of info in log 1 then print just single line in output. I want to compare data of every line (data starting from first colon to appearance of a semicolon) irrespective whether it is a set of alphabet, numbers or special characters



      Log 1



      INFO @0 digrf_0_drv: Constructing a digrf Driver: digrf_0_drv; T=0
      INFO @603845 mcPWM_CYC: ----- SV is waiting for FLAG 4 -----; T=603845
      INFO @1116033 mcPWM_CYC: ----- SV is waiting for FLAG 0 -----; T=1116033
      INFO @1145215 mcPWM_CYC: ----- Flag 0 OK SV STARTED -----; T=1145215
      INFO @1145215 mcPWM_CYC: PORT STIM started !!!; T=1145215
      INFO @1145287 mcPWM_CYC: ----- SV is waiting for FLAG 2 -----; T=1145287
      INFO @1146281 mcPWM_CYC: ----- Flag 0 OK : SV STARTED -----; T=1146281
      INFO @1146281 mcPWM_CYC: PORT STIM started !!!; T=1146281
      INFO @1190554 mcPWM_CYC: C-Code exit execution. code=<aa>; T=1190554
      INFO @1190554 mti_lane1_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane1_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane1_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane2_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane2_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane2_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane3_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane3_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane3_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane4_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane4_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane4_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane5_bw_mon: total bytes = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane5_bw_mon: time window = 0, at time = 1190554; T=1190554
      INFO @1190554 mti_lane5_bw_mon: BW in Mbps = 0, at time = 1190554; T=1190554
      INFO: Report(s) of this encapsulation run can be found under:


      Log2:



      UVM_INFO @1353514 reporter [Z7_COREA]: mcPWM0_ExtSig: *** START Syncronization with Verilog Stimulus ***; T=1353514
      UVM_INFO @1353578 reporter [Z7_COREA]: C FLAG_SET: Setting flag 0; T=1353578
      UVM_INFO @1353578 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 0; T=1353578
      UVM_INFO @1353578 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- Flag 0 OK SV STARTED -----; T=1353578
      UVM_INFO @1353578 reporter [testbench.top_level_module.mcPWM_CYC::main ]: PORT STIM started !!!; T=1353578
      UVM_INFO @1353642 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 1, status is 0; T=1353642
      UVM_INFO @1353650 reporter [Z7_COREA]: V FLAG_SET: Setting flag 1; T=1353650
      UVM_INFO @1353650 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- SV is waiting for FLAG 2 -----; T=1353650
      UVM_INFO @1353650 reporter [Z4_COREA]: V FLAG_WAIT: Checking flag 2, status is 0; T=1353650
      UVM_INFO @1353743 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 1, status is 1; T=1353743
      UVM_INFO @1354063 reporter [Z7_COREA]: REM16: A=fbc00086 R=0007 E=0007 M=ffff; T=1354063
      UVM_INFO @1354336 reporter [Z7_COREA]: REM16: A=fbc00080 R=048e E=048e M=ffff; T=1354336
      UVM_INFO @1354532 reporter [Z7_COREA]: W16: A=fbc00080 W=008d; T=1354532
      UVM_INFO @1354597 reporter [Z7_COREA]: C FLAG_SET: Setting flag 2; T=1354597
      UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354597
      UVM_INFO @1354597 reporter [testbench.top_level_module.mcPWM_CYC::main ]: ----- Flag 0 OK SV STARTED -----; T=1354597
      UVM_INFO @1354597 reporter [testbench.top_level_module.mcPWM_CYC::main ]: PORT STIM started !!!; T=1354597
      UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354597
      UVM_INFO @1354597 reporter [Z7_COREA]: V FLAG_WAIT: Checking flag 2, status is 1; T=1354597
      UVM_INFO @1354661 reporter [Z7_COREA]: C FLAG_WAIT: Checking flag 2, status is 1; T=1354661
      UVM_INFO @1354741 reporter [Z7_COREA]: V FLAG_CLEAR: Clearing flag 2; T=1354741
      UVM_INFO @1354741 reporter [Z4_COREA]: V FLAG_SET: Setting flag 5; T=1354741
      UVM_INFO @1354741 reporter [Z7_COREA]: V FLAG_WAIT: Received flag 2; T=1354741


      Expected Output:



      Constructing a digrf Driver: digrf_0_drv
      ----- SV is waiting for FLAG 4 -----
      ----- SV is waiting for FLAG 0 -----
      C-Code exit execution. code=<aa>
      total bytes = 0, at time = 1190554
      time window = 0, at time = 1190554
      BW in Mbps = 0, at time = 1190554
      Report(s) of this encapsulation run can be found under






      perl





      share







      New contributor




      Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share







      New contributor




      Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share






      New contributor




      Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 6 mins ago









      Rahul AgarwalRahul Agarwal

      1




      1




      New contributor




      Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Rahul Agarwal is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "106"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          Rahul Agarwal is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f504846%2fcompare-two-log-files-line-by-line-and-print-difference%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Rahul Agarwal is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          Rahul Agarwal is a new contributor. Be nice, and check out our Code of Conduct.













          Rahul Agarwal is a new contributor. Be nice, and check out our Code of Conduct.












          Rahul Agarwal is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f504846%2fcompare-two-log-files-line-by-line-and-print-difference%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          サソリ

          広島県道265号伴広島線

          Setup Asymptote in Texstudio