Commit b95a55be authored by kinuthia's avatar kinuthia
Browse files

fix typo

parent 57f59458
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1137,7 +1137,7 @@ test-be-to-release:
    - if: $CI_PIPELINE_SOURCE == 'web' && $MANUAL_PIPELINE_TYPE == 'test-be-release'
  script:

    - git checkout $REF_RELEASE_TAG
    - ("& git checkout $REF_RELEASE_TAG") | Invoke-Expression
    - echo "REF_RELEASE_TAG $REF_RELEASE_TAG"
    - MSBuild.exe .\Workspace_msvc\Workspace_msvc.sln /property:Configuration=Debug /p:Platform=win32 /m

@@ -1145,7 +1145,7 @@ test-be-to-release:
    - mv IVAS_dec.exe IVAS_dec_ref.exe
    - mv IVAS_rend.exe IVAS_rend_ref.exe 

    - git checkout $DUT_RELEASE_TAG
    - ("& git checkout $DUT_RELEASE_TAG") | Invoke-Expression
    - echo "DUT_RELEASE_TAG $DUT_RELEASE_TAG"
    - MSBuild.exe .\Workspace_msvc\Workspace_msvc.sln /property:Configuration=Debug /p:Platform=win32 /m

@@ -1160,7 +1160,7 @@ test-be-to-release:

    # encoder, constant brate
    - $zero_errors_enc_const_br_ref=0
    - ("& python -m pytest .\tests\codec_be_to_accepted_release\encoder\test_encoder_constant_bitrate.py --update_ref 1 --html=logs/report-enc-const_br-ref.html --self-contained-html --junit-xml=logs/report-junit-enc-const_br-ref.xml --ref_encoder_path IVAS_cod_ref.exe --ref_decoder_path IVAS_dec.exe --testcase_timeout 40 -n $NPROC | out-null") | Invoke-Expression
    - ("& python -m pytest .\tests\codec_be_to_accepted_release\encoder\test_encoder_constant_bitrate.py --update_ref 1 --html=logs/report-enc-const_br-ref.html --self-contained-html --junit-xml=logs/report-junit-enc-const_br-ref.xml --ref_encoder_path IVAS_cod_ref.exe --ref_decoder_path IVAS_dec_ref.exe --testcase_timeout 40 -n $NPROC | out-null") | Invoke-Expression
    - IF (!(Select-String logs/report-junit-enc-const_br-ref.xml -Pattern 'errors="0"')){$zero_errors_enc_const_br_ref=1; echo "Errors encountered"}

    - $zero_errors_enc_const_br_dut=0