Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:

- name: Run Unit Tests
run: |
chmod +x ${{ github.workspace }}/build/test/FireboltClientUnitTests
chmod +x ${{ github.workspace }}/build/test/utApp
docker run --rm --user "$(id -u):$(id -g)" -v ${{ github.workspace }}:/workspace ${{ needs.build_docker.outputs.image_tag }} \
bash -c " \
set -e \
Expand Down Expand Up @@ -241,11 +241,11 @@ jobs:

- name: Run Component Tests
run: |
chmod +x ${{ github.workspace }}/build/test/FireboltClientComponentTests
chmod +x ${{ github.workspace }}/build/test/ctApp
docker run --rm --user "$(id -u):$(id -g)" -v ${{ github.workspace }}:/workspace -v ${{ env.MOCK_PATH }}:/mock ${{ needs.build_docker.outputs.image_tag }} \
./.github/scripts/run-component-tests.sh \
--mock /mock \
--config /workspace/.github/mock-firebolt/config.json \
--openrpc /workspace/docs/openrpc/the-spec/firebolt-open-rpc.json \
--app-openrpc /workspace/docs/openrpc/the-spec/firebolt-app-open-rpc.json \
--test-exe /workspace/build/test/FireboltClientComponentTests
--test-exe /workspace/build/test/ctApp
2 changes: 1 addition & 1 deletion demo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if (NOT CMAKE_PROJECT_NAME)
"${SYSROOT_PATH}/tools/cmake"
)
endif ()
set(DEMO_APP FireboltCoreDemo)
set(DEMO_APP demoApp)

message("Setup ${DEMO_APP}")

Expand Down
2 changes: 1 addition & 1 deletion demo/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ cmake --build $bdir

if $run; then
export LD_LIBRARY_PATH=$bdir/src:$SYSROOT_PATH/usr/lib:$LD_LIBRARY_PATH
$bdir/FireboltCoreDemo
$bdir/demoApp
fi

4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ enable_testing()

add_compile_definitions(UT_OPEN_RPC_FILE="firebolt-open-rpc.json")

set(UNIT_TESTS_APP FireboltClientUnitTests)
set(UNIT_TESTS_APP utApp)

message("Setup ${UNIT_TESTS_APP}")

Expand Down Expand Up @@ -80,7 +80,7 @@ if(DISCOVER_UT)
)
endif()

set(COMPONENT_TESTS_APP FireboltClientComponentTests)
set(COMPONENT_TESTS_APP ctApp)

message("Setup ${COMPONENT_TESTS_APP}")

Expand Down