Commit 4066b002 authored by Vladimir Malenovsky's avatar Vladimir Malenovsky
Browse files

change DUT to CUT

parent 896e9cf0
Loading
Loading
Loading
Loading
Loading
+16 −16
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ To run CUT binaries on the targeted platform, it is necessary to have the correc

The CUT build of the IVAS binaries should be made available in a selected folder and needed for the next step

To run IVAS DUT commands on the TARGET platform (may be different from ubuntu/linux)
To run IVAS CUT commands on the TARGET platform (may be different from ubuntu/linux)

```shell
PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --cut_build_path=CUT_BIN_DIR
@@ -249,91 +249,91 @@ MLD Corridor passed for ISAR with max MLD diff of 0.0

All CUT tests can be run specifically for IVAS Encoder,IVAS Decoder,IVAS Renderer, ISAR Encoder and ISAR Decoder only. The commandline allows for ```-test-mode=<PARAM>``` for this functionality, examples:

- Run DUT IVAS Encoder Tests Only (on Target Platform)
- Run CUT IVAS Encoder Tests Only (on Target Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --cut_build_path=CUT_BIN_DIR --test-mode=ENC
  ```

- Analyse BE conformance for DUT IVAS Encoder Outputs Only (on Reference Platform)
- Analyse BE conformance for CUT IVAS Encoder Outputs Only (on Reference Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --ref_build_path=testvec/bin --test-mode=ENC --analyse --be-test
  ```

- Analyse NON-BE conformance for DUT IVAS Encoder Outputs Only (on Reference Platform)
- Analyse NON-BE conformance for CUT IVAS Encoder Outputs Only (on Reference Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --ref_build_path=testvec/bin --test-mode=ENC --analyse
  ```

- Run DUT IVAS Decoder Tests Only (on Target Platform)
- Run CUT IVAS Decoder Tests Only (on Target Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --cut_build_path=CUT_BIN_DIR --test-mode=DEC
  ```

- Analyse BE conformance for DUT IVAS Decoder Outputs Only
- Analyse BE conformance for CUT IVAS Decoder Outputs Only

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --test-mode=DEC --analyse --be-test
  ```

- Analyse NON-BE conformance DUT IVAS Decoder Outputs Only (on Reference Platform)
- Analyse NON-BE conformance CUT IVAS Decoder Outputs Only (on Reference Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec  --test-mode=DEC --analyse
  ```

- Run DUT IVAS Renderer Tests Only (on Target Platform)
- Run CUT IVAS Renderer Tests Only (on Target Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --cut_build_path=CUT_BIN_DIR --test-mode=REND
  ```

- Analyse BE conformance for DUT Renderer Outputs Only 
- Analyse BE conformance for CUT Renderer Outputs Only 

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --test-mode=REND --analyse --be-test
  ```

- Analyse NON-BE conformance DUT Renderer Outputs Only 
- Analyse NON-BE conformance CUT Renderer Outputs Only 

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --test-mode=REND --analyse
  ```

- Run DUT ISAR Encoder Tests Only (on Target Platform)
- Run CUT ISAR Encoder Tests Only (on Target Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --cut_build_path=CUT_BIN_DIR --test-mode=ISAR_ENC
  ```

- Analyse BE conformance for DUT ISAR Encoder Outputs Only (on Reference Platform)
- Analyse BE conformance for CUT ISAR Encoder Outputs Only (on Reference Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --ref_build_path=testvec/bin --test-mode=ISAR_ENC --analyse --be-test
  ```

- Analyse NON-BE conformance for DUT ISAR Encoder Outputs Only (on Reference Platform)
- Analyse NON-BE conformance for CUT ISAR Encoder Outputs Only (on Reference Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --ref_build_path=testvec/bin --test-mode=ISAR_ENC --analyse
  ```

- Run DUT ISAR Decoder Tests Only (on Target Platform)
- Run CUT ISAR Decoder Tests Only (on Target Platform)

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec --cut_build_path=CUT_BIN_DIR --test-mode=ISAR
  ```

- Analyse BE conformance for DUT ISAR Decoder Outputs Only
- Analyse BE conformance for CUT ISAR Decoder Outputs Only

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec  --test-mode=ISAR --analyse --be-test
  ```

- Analyse NON-BE conformance DUT ISAR Decoder Outputs Only 
- Analyse NON-BE conformance CUT ISAR Decoder Outputs Only 

  ```shell
  PYTHONPATH=scripts python scripts/ivas_conformance/runConformance.py --testvecDir $PWD/testvec  --test-mode=ISAR --analyse