git clone https://github.com/eclipse/kiso-testing-testapp.git
2. Run one of the following CMake generators from within the CMake build folder for the corresponding toolchain
mkdir build_gcc && cd build_gcc
cmake -G"Ninja" ../integration-testapp -DCMAKE_TOOLCHAIN_FILE=../integration-testapp/cmake/toolchains/GCC.cmake -DAPP_OSADAPTER=FreeRtosTestAdapter
mkdir build_arm && cd build_arm
cmake -G"Ninja" ../integration-testapp -DCMAKE_TOOLCHAIN_FILE=../integration-testapp/cmake/toolchains/stm32-arm-gcc-f401re.cmake -DAPP_OSADAPTER=FreeRtosAdapter
mkdir build_arm && cd build_arm
cmake -G"Ninja" ../integration-testapp -DCMAKE_TOOLCHAIN_FILE=../integration-testapp/cmake/toolchains/unittest-qemu-arm.cmake -DAPP_OSADAPTER=FreeRtosTestAdapter
ninja
Build-only all unitt tests:
ninja build-unit-tests-all
Build and Run all unit tests:
ninja run-unit-tests-all