Skip to content

Commit 8370e3c

Browse files
committed
Test new version of test reporter
Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com>
1 parent 6ea0408 commit 8370e3c

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/reusable-ubuntu-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126

127127

128128
- name: Test Report
129-
uses: eProsima/eProsima-CI/external/test-reporter@v0
129+
uses: eProsima/eProsima-CI/external/test-reporter@feature/upgrade-test-reporter
130130
if: success() || failure()
131131
with:
132132
name: "Report: ASAN "
@@ -173,7 +173,7 @@ jobs:
173173
test_report_artifact: test_report_tsan${{ inputs.dependencies_artifact_postfix }}_${{ inputs.custom_version_build }}
174174

175175
- name: Test Report
176-
uses: eProsima/eProsima-CI/external/test-reporter@v0
176+
uses: eProsima/eProsima-CI/external/test-reporter@feature/upgrade-test-reporter
177177
if: success() || failure()
178178
with:
179179
name: "Report: TSAN "
@@ -277,7 +277,7 @@ jobs:
277277
test_report_artifact: test_report_flaky${{ inputs.dependencies_artifact_postfix }}_${{ inputs.custom_version_build }}
278278

279279
- name: Test Report
280-
uses: eProsima/eProsima-CI/external/test-reporter@v0
280+
uses: eProsima/eProsima-CI/external/test-reporter@feature/upgrade-test-reporter
281281
if: success() || failure()
282282
with:
283283
name: "Report: Flaky "

.github/workflows/reusable-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676

7777
- name: Compile and run tests
7878
id: compile_and_test
79-
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@main
79+
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@v0
8080
with:
8181
packages_names: ${{ env.code_packages_names }}
8282
cmake_args: -DBUILD_TESTS=ON -DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }}
@@ -87,7 +87,7 @@ jobs:
8787

8888

8989
- name: Test Report
90-
uses: eProsima/eProsima-CI/external/test-reporter@main
90+
uses: eProsima/eProsima-CI/external/test-reporter@feature/upgrade-test-reporter
9191
if: success() || failure()
9292
with:
9393
name: "Report: ${{ inputs.os }} | ${{ matrix.cmake_build_type }} "

ddsrouter_core/test/unittest/ParticipantFactoryTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ TEST(ParticipantFactoryTest, create_echo_participant)
128128

129129
ASSERT_TRUE(echo_participant) << "Failed to create Echo Participant";
130130

131-
ASSERT_EQ(echo_participant->configuration_->app_id, "DDS_ROUTER");
131+
ASSERT_EQ(echo_participant->configuration_->app_id, "DDS_ROUTER_FAIL");
132132
ASSERT_EQ(echo_participant->configuration_->app_metadata, "");
133133
}
134134
}

0 commit comments

Comments
 (0)