Skip to content

Commit 5f4336d

Browse files
committed
Skip umfIpcTest.GetPoolByOpenedHandle test in compatibility testing
1 parent 72f0255 commit 5f4336d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/reusable_compatibility.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,11 @@ jobs:
9494
9595
- name: Run "tag" UMF tests with latest UMF libs (warnings enabled)
9696
working-directory: ${{github.workspace}}/tag_version/build
97+
# GTEST_FILTER is used below to skip test that is not compatible
9798
run: >
9899
UMF_LOG="level:warning;flush:debug;output:stderr;pid:no"
99100
LD_LIBRARY_PATH=${{github.workspace}}/latest_version/build/lib/
101+
GTEST_FILTER="-*umfIpcTest.GetPoolByOpenedHandle*"
100102
ctest --verbose
101103
102104
windows:
@@ -181,6 +183,7 @@ jobs:
181183
working-directory: ${{github.workspace}}/tag_version/build
182184
run: |
183185
$env:UMF_LOG="level:warning;flush:debug;output:stderr;pid:no"
186+
$env:GTEST_FILTER="-*umfIpcTest.GetPoolByOpenedHandle*"
184187
cp ${{github.workspace}}/latest_version/build/bin/Debug/umf.dll ${{github.workspace}}/tag_version/build/bin/Debug/umf.dll
185188
ctest -C Debug --verbose
186189
@@ -230,8 +233,10 @@ jobs:
230233
231234
- name: Run "tag" UMF tests
232235
working-directory: ${{github.workspace}}/tag_version/build
233-
run: |
234-
LD_LIBRARY_PATH=${{github.workspace}}/tag_version/build/lib/ ctest --output-on-failure
236+
run: >
237+
LD_LIBRARY_PATH=${{github.workspace}}/tag_version/build/lib/
238+
GTEST_FILTER="-*umfIpcTest.GetPoolByOpenedHandle*"
239+
ctest --output-on-failure
235240
236241
- name: Checkout latest UMF version
237242
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
@@ -266,4 +271,5 @@ jobs:
266271
run: >
267272
UMF_LOG="level:warning;flush:debug;output:stderr;pid:no"
268273
LD_LIBRARY_PATH=${{github.workspace}}/latest_version/build/lib/
274+
GTEST_FILTER="-*umfIpcTest.GetPoolByOpenedHandle*"
269275
ctest --verbose -E "not_impl"

0 commit comments

Comments
 (0)