Commit e4d1ddd7 authored by Jan Kiene's avatar Jan Kiene
Browse files

use the DUT* vars in the sanitizer anchor, too

this is now consistent with the other anchor
parent 26a3ad8f
Loading
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
@@ -12,8 +12,6 @@ variables:
  TEST_SUITE: ""
  DUT_ENCODER_PATH: "./IVAS_cod"
  DUT_DECODER_PATH: "./IVAS_dec"
  REF_ENCODER_PATH: "./IVAS_cod_ref"
  REF_DECODER_PATH: "./IVAS_dec_ref"
  LEVEL_SCALING: "1.0"
  IVAS_PIPELINE_NAME: ''
  BASOP_CI_BRANCH_PC_REPO: "basop-ci-branch"
@@ -291,7 +289,7 @@ stages:
    - make -j CLANG=$CLANG_NUM
    - if [[ $CLANG_NUM == 3 ]]; then export UBSAN_OPTIONS="suppressions=scripts/ubsan.supp,report_error_type=1"; fi
    - testcase_timeout=$TESTCASE_TIMEOUT_STV
    - python3 -m pytest $SHORT_TEST_SUITE -v --tb=no --update_ref 1 -m create_ref --html=report.html --self-contained-html --junit-xml=report-junit.xml --testcase_timeout $testcase_timeout --ref_encoder_path $REF_ENCODER_PATH --ref_decoder_path $REF_DECODER_PATH
    - python3 -m pytest $SHORT_TEST_SUITE -v --tb=no --update_ref 1 -m create_ref --html=report.html --self-contained-html --junit-xml=report-junit.xml --testcase_timeout $testcase_timeout --ref_encoder_path $DUT_ENCODER_PATH --ref_decoder_path $DUT_DECODER_PATH
  artifacts:
    name: "$CI_JOB_NAME--sha-$CI_COMMIT_SHORT_SHA--results"
    when: always
@@ -438,7 +436,7 @@ ivas-pytest-enc-msan:
    - .test-job-linux
  before_script:
    - CLANG_NUM=1
    - REF_ENCODER_PATH=./IVAS_cod
    - DUT_DECODER_PATH=./IVAS_dec_ref
  <<: *ivas-pytest-sanitizers-anchor

ivas-pytest-enc-asan:
@@ -446,7 +444,7 @@ ivas-pytest-enc-asan:
    - .test-job-linux
  before_script:
    - CLANG_NUM=2
    - REF_ENCODER_PATH=./IVAS_cod
    - DUT_DECODER_PATH=./IVAS_dec_ref
  <<: *ivas-pytest-sanitizers-anchor

ivas-pytest-enc-usan:
@@ -454,7 +452,7 @@ ivas-pytest-enc-usan:
    - .test-job-linux
  before_script:
    - CLANG_NUM=3
    - REF_ENCODER_PATH=./IVAS_cod
    - DUT_DECODER_PATH=./IVAS_dec_ref
  <<: *ivas-pytest-sanitizers-anchor
  
### jobs that test flt encoder -> fx decoder
@@ -496,7 +494,7 @@ ivas-pytest-dec-msan:
    - .test-job-linux
  before_script:
    - CLANG_NUM=1
    - REF_DECODER_PATH=./IVAS_dec
    - DUT_ENCODER_PATH=./IVAS_cod_ref
  <<: *ivas-pytest-sanitizers-anchor

ivas-pytest-dec-asan:
@@ -504,7 +502,7 @@ ivas-pytest-dec-asan:
    - .test-job-linux
  before_script:
    - CLANG_NUM=2
    - REF_DECODER_PATH=./IVAS_dec
    - DUT_ENCODER_PATH=./IVAS_cod_ref
  <<: *ivas-pytest-sanitizers-anchor

ivas-pytest-dec-usan:
@@ -512,7 +510,7 @@ ivas-pytest-dec-usan:
    - .test-job-linux
  before_script:
    - CLANG_NUM=3
    - REF_DECODER_PATH=./IVAS_dec
    - DUT_ENCODER_PATH=./IVAS_cod_ref
  <<: *ivas-pytest-sanitizers-anchor

# ---------------------------------------------------------------