pcu: TC_stat_pdch_avail_occ: enable 4 TRX

Enable multiple TRX to verify that counters work as expected if the
allocator spreads TBFs over multiple TRX.

Related: SYS#4878
Change-Id: Ibde5be120e893fcecceb72a888483d5a6bb8ce50
This commit is contained in:
Oliver Smith 2021-09-14 09:26:55 +02:00 committed by osmith
parent f28fd080fc
commit edcded2d81
1 changed files with 6 additions and 3 deletions

View File

@ -6023,9 +6023,12 @@ testcase TC_stat_pdch_avail_occ() runs on RAW_PCU_Test_CT {
/* Initialize NS/BSSGP side */
f_init_bssgp();
/* Only 1 TRX with 8 PDCH */
f_PCUIF_PDCHMask_set(info_ind, '11111111'B, 0);
f_PCUIF_PDCHMask_set(info_ind, '00000000'B, (1 .. 7));
/* Only the 4 first TRX are enabled, each with 2 PDCHs. */
f_PCUIF_PDCHMask_set(info_ind, '00000011'B, 0);
f_PCUIF_PDCHMask_set(info_ind, '00001100'B, 1);
f_PCUIF_PDCHMask_set(info_ind, '11000000'B, 2);
f_PCUIF_PDCHMask_set(info_ind, '00110000'B, 3);
f_PCUIF_PDCHMask_set(info_ind, '00000000'B, (4 .. 7));
/* Allocate 4 GprsMS instances */
f_init_gprs_ms(4);