Commit c229a8a0 authored by BOHMRR's avatar BOHMRR
Browse files

Merge branch 'main' into 4-migrate-to-pytest-framework

parents a770935c fbcebe16
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ scripts/c-code_instrument/
scripts/ifdef_instrument.list
scripts/ref/
scripts/test/
scripts/out/
scripts/self_test_summary.txt

# Python files that pop up when running scripts
+28 −0
Original line number Diff line number Diff line
variables:
  TESTV_DIR: "/usr/local/testv"
  BUILD_OUTPUT: "build_output.txt"
  EVS_BE_TEST_DIR: "/usr/local/be_2_evs_test"
  EXIT_CODE_NON_BE: 123
  EXIT_CODE_FAIL: 1

@@ -319,6 +320,33 @@ pytest-on-merge-request:
# Test jobs for main branch
# ---------------------------------------------------------------

# check bitexactness to EVS
be-2-evs-linux:
  extends:
    - .test-job-linux
    - .rules-main-push
  tags:
    - be-2-evs-temp
  stage: test
  needs: [ "build-codec-linux-cmake" ]
  script:
    - *print-common-info

    - mkdir build
    - cd build
    - cmake ..
    - make -j
    - cd ..

    # copy over to never change the testvector dir
    - cp -r $EVS_BE_TEST_DIR ./evs_be_test
    - cp build/IVAS_cod ./evs_be_test/bin/EVS_cod
    - cp build/IVAS_dec ./evs_be_test/bin/EVS_dec

    - cd evs_be_test
    - python3 ../ci/run_evs_be_test.py


codec-comparison-on-main-push:
  extends:
    - .test-job-linux
+19 −0
Original line number Diff line number Diff line
### Basic info

- Commit SHA: 
- Platform: 

### Bug description


### Ways to reproduce

(Clear steps or refer to a failing automated test, e.g. with a pipeline link)



<!--- Below are labels that will be added but are not shown in description. This is a template to help fill them.
      Add further information to the first row and remove and add labels as necessary.  -->

/label ~Priority:: ~Company: ~Subpart:
/label ~Type:Bug ~Status::ToDo
+7 −0
Original line number Diff line number Diff line
(Generic issue template)

<!--- Below are labels that will be added but are not shown in description. This is a template to help fill them.
      Add further information to the first row and remove and add labels as necessary.  -->

/label ~Priority:: ~Company: ~Subpart: ~Type:
/label ~Status::ToDo
+12 −0
Original line number Diff line number Diff line
<!--- Basic information that is useful -->
- Related issues:
- Requested reviewers: 

### Description


<!--- Labels that are added. Fill as necessary. -->
/label ~Priority:: ~Company: ~Subpart: ~Type: ~Status::

<!--- Alternatively to labels, you can use "/copy_metadata #number" to get labels from an issue -->
Loading