tree: 8107d074caefeb69169ff6206f2df6d1ce1458b8 [path history] [tgz]
  1. integration_tests/
  2. third_party/
  3. .gn
  4. BUILD.gn
  5. README.md
src/test_driver/tizen/README.md

CHIP Tests on QEMU

Tizen runs mostly on ARM architecture. In order to run tests on Tizen, we need to use QEMU. This document describes how to build and run CHIP tests on QEMU.

Obtaining Tizen QEMU Docker Image

All tools and dependencies required to build and run tests on Tizen on QEMU are included in the chip-build-tizen-qemu docker image. One can pull the docker image from hub.docker.com or build it locally using the provided Dockerfile in integrations/docker/images/chip-build-tizen-qemu directory.

# Pull the image from hub.docker.com
docker pull connectedhomeip/chip-build-tizen-qemu:latest

Building and Running Tests on QEMU

All steps described below should be done inside the docker container.

docker run -it --rm --name chip-tizen-qemu \
    connectedhomeip/chip-build-tizen-qemu:latest /bin/bash

Clone the connectedhomeip repository

git clone https://github.com/project-chip/connectedhomeip.git

Activate the environment

cd connectedhomeip
source scripts/activate.sh

Generate and run test target

As for now, Tizen QEMU-based test driver does not support BLE. In order to disable BLE, one needs to pass chip_config_network_layer_ble=false to the args argument of the gn gen command.

# Generate test target
gn gen --check --fail-on-unused-args \
    --root="$PWD/src/test_driver/tizen" \
    --args="target_os=\"tizen\" target_cpu=\"arm\" \
        tizen_sdk_root=\"$TIZEN_SDK_ROOT\" \
        tizen_sdk_sysroot=\"$TIZEN_SDK_SYSROOT\"
        chip_config_network_layer_ble=false" \
    out/tizen-check
# Run Tizen QEMU-based tests
ninja -C out/tizen-check check