Skip to content
Snippets Groups Projects

integration_2023_w08

Merged Robert Schmidt requested to merge integration_2023_w08 into develop
1 unresolved thread
Edited by Robert Schmidt

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
99 #parse results looking for Decoding values
100 runResultsT1=[]
101 with open(self.__runLogFile) as g:
102 for line in g:
103 if 'decoding time' in line:
104 runResultsT1.append(line)
105 info = runResultsT1[0][15:-13]
106 result = int(''.join(filter(str.isdigit, info)))/100
107 #once parsed move the local logfile to its folder for tidiness
108 os.system('mv '+self.__runLogFile+' '+ self.__runLogPath+'/.')
109 #updating the HTML with results
110 html_cell = '<pre style="background-color:white">' + info + '</pre>'
111 html_queue=SimpleQueue()
112 html_queue.put(html_cell)
113 if result < thrs_NOK:
114 HTML.CreateHtmlTestRowQueue(self.runargs, 'OK', 1, html_queue)
  • Author Maintainer
    		html_cell = '<pre style="background-color:white">' + info + '</pre>'
    		html_queue=SimpleQueue()
    		html_queue.put(html_cell)
    		if result < thrs_NOK:
    			HTML.CreateHtmlTestRowQueue(self.runargs, 'OK', 1, html_queue)
    
    		if result < thrs_NOK:
    			HTML.CreateHtmlTestRowQueue(self.runargs, 'OK', [info])
  • Author Maintainer

    this is for follow-up work, i.e., as soon as !1751 (merged) is merged

  • Please register or sign in to reply
  • added 4G-LTE 5G-NR labels

  • Robert Schmidt changed title from integration_2023_w08 to WIP: integration_2023_w08

    changed title from integration_2023_w08 to WIP: integration_2023_w08

  • Robert Schmidt changed title from WIP: integration_2023_w08 to integration_2023_w08

    changed title from WIP: integration_2023_w08 to integration_2023_w08

  • Robert Schmidt changed the description

    changed the description

  • Robert Schmidt added 13 commits

    added 13 commits

    • 9dc22822 - Remove 4G F1
    • c94ba6ec - CI test for T1 LDPC offload on caracal
    • ddea2be3 - Remove ocp-enb/split73
    • bfdd111f - Remove unused backtrace function
    • 983bcd87 - Telnet: softmodem exit cmd: do not stop config module
    • 1793943f - Clean up CMakeLists.txt
    • 926aa623 - CONFIG_LIB needs dlsym and LOG (in UTIL)
    • de0254e9 - fixup for backtrace removal
    • bc058419 - Fix warning: Correctly indent line
    • 11ac735e - Fix: Fix command end detection in Build_eNB
    • 1613e12d - Merge remote-tracking branch 'origin/remove-4g-f1' into integration_2023_w08
    • 1c641e53 - Merge remote-tracking branch 'origin/ocp-enb-cmake' into integration_2023_w08
    • 2baf410e - Merge remote-tracking branch 'origin/ci-t1-offload-test' into integration_2023_w08

    Compare with previous version

  • @schmidtr we still have 1 warning while building nr-softmodem, it is one less than last integration branch, but still one more than 2 integration branches ago:

    /home/user/openairinterface5g/openair2/RRC/LTE/rrc_eNB.c: In function ‘rrc_enb_process_itti_msg’:
    /home/user/openairinterface5g/openair2/RRC/LTE/rrc_eNB.c:7916:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation]
     7916 |         else
          |         ^~~~
    In file included from /home/user/openairinterface5g/common/utils/config.h:49,
                     from /home/user/openairinterface5g/cmake_targets/ran_build/build/openair2/F1AP/MESSAGES/asn_system.h:12,
                     from /home/user/openairinterface5g/cmake_targets/ran_build/build/openair2/F1AP/MESSAGES/asn_application.h:11,
                     from /home/user/openairinterface5g/cmake_targets/ran_build/build/openair2/F1AP/MESSAGES/OCTET_STRING.h:8,
                     from /home/user/openairinterface5g/cmake_targets/ran_build/build/openair2/F1AP/MESSAGES/BIT_STRING.h:8,
                     from /home/user/openairinterface5g/common/utils/oai_asn1.h:25,
                     from /home/user/openairinterface5g/openair2/RRC/LTE/rrc_eNB.c:32:
    /home/user/openairinterface5g/common/utils/LOG/log.h:418:28: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’
      418 | #    define LOG_W(c, x...) do { if (T_stdout) { if( g_log->log_component[c].level >= OAILOG_WARNING) logRecord_mt(__FILE__, __FUNCTION__, __LINE__,c, OAILOG_WARNING, x) ;} else { T(T_LEGACY_ ## c ## _WARNING, T_PRINTF(x)) ;}} while (0)
          |                            ^~
    /home/user/openairinterface5g/openair2/RRC/LTE/rrc_eNB.c:7919:11: note: in expansion of macro ‘LOG_W’
     7919 |           LOG_W(RRC, "[eNB %ld] cannot process (%s) X2 HANDOVER CANCEL for rnti %x, cause %s, ignoring\n", instance, failure_cause, X2AP_HANDOVER_CANCEL(msg_p).rnti, cause);
          |           ^~~~~
  • Robert Schmidt added 2 commits

    added 2 commits

    • 194e61cf - Merge remote-tracking branch 'origin/ci-t1-offload-test' into integration_2023_w08
    • e87f1238 - Fix indentation to remove warning

    Compare with previous version

  • @schmidtr on my setup, at this point, this integration branch is performing as expected, so it is OK to be merged.

  • Robert Schmidt changed the description

    changed the description

  • Robert Schmidt mentioned in commit 646cec27

    mentioned in commit 646cec27

  • Please register or sign in to reply
    Loading