• ROBERT Benoit's avatar
    Add testing capabilities for OAI UE in autotest framework · c3744650
    ROBERT Benoit authored
    Autotest Framework modifications:
    -> paramiko.Transport((hostname, ports)) : issue on my configuration
    -> add --test-suite command line parameter to select a different test suite XML file (default is test_case_list.xml)
    -> add patch file functionnality when installing remote machine : required to add LOG printing for pass/fail evaluation
    -> add lte-softmodem-noS1 test class - fork of lte-softmodem with the following modification
    	- no EPC management on lte-softmodem-noS1 class
    	- add cell synchronization detection as a precondition for test results analysis
    	- add metric extraction for pass/fail criteria (metrics are defined in XML file)
    	- generate graphics for performances metrics (used in the HTML report -> not available in this delivery)
    
    Patch files:
    -> autotest_ue_cell_synch_event.patch : Add log for cell synchronization detection
    -> autotest_ue_dlsch_bitrate_metric.patch : Add log for DLSCH bitrate capture
    -> 3gpplte_turbo_decoder_sse_8bit.patch : hotfix for turbo decoder in autotest (issue followed in oai1B project)
    -> phy_test__target_dl_mcs.patch : hotfix for --phy-test configuration (MCS)
    c3744650
3gpplte_turbo_decoder_sse_8bit.patch 820 Bytes
diff --git a/openair1/PHY/CODING/3gpplte_turbo_decoder_sse_8bit.c b/openair1/PHY/CODING/3gpplte_turbo_decoder_sse_8bit.c
index d2c7ac6..0853373 100644
--- a/openair1/PHY/CODING/3gpplte_turbo_decoder_sse_8bit.c
+++ b/openair1/PHY/CODING/3gpplte_turbo_decoder_sse_8bit.c
@@ -493,7 +493,7 @@ void compute_beta8(llr_t* alpha,llr_t* beta,llr_t *m_11,llr_t* m_10,unsigned sho
 
 #endif
 
-  if (frame_length > 6143) {
+  if (frame_length > 6144) {
     LOG_E(PHY,"compute_beta: frame_length %d\n",frame_length);
     return;
   }
@@ -979,6 +979,11 @@ unsigned char phy_threegpplte_turbo_decoder8(short *y,
   } else
     n2 = n;
 
+   if(n2<256)
+    {
+        printf("phy_threegpplte_turbo_decoder8 : frame length < 256\n");
+        return 255;
+    }
 
   for (iind=0; iind < 188 && f1f2mat[iind].nb_bits != n; iind++);