|
94 | 94 |
|
95 | 95 | - name: Run "tag" UMF tests with latest UMF libs (warnings enabled) |
96 | 96 | working-directory: ${{github.workspace}}/tag_version/build |
| 97 | + # GTEST_FILTER is used below to skip test that is not compatible |
97 | 98 | run: > |
98 | 99 | UMF_LOG="level:warning;flush:debug;output:stderr;pid:no" |
99 | 100 | LD_LIBRARY_PATH=${{github.workspace}}/latest_version/build/lib/ |
| 101 | + GTEST_FILTER="-*umfIpcTest.GetPoolByOpenedHandle*" |
100 | 102 | ctest --verbose |
101 | 103 |
|
102 | 104 | windows: |
@@ -181,6 +183,7 @@ jobs: |
181 | 183 | working-directory: ${{github.workspace}}/tag_version/build |
182 | 184 | run: | |
183 | 185 | $env:UMF_LOG="level:warning;flush:debug;output:stderr;pid:no" |
| 186 | + $env:GTEST_FILTER="-*umfIpcTest.GetPoolByOpenedHandle*" |
184 | 187 | cp ${{github.workspace}}/latest_version/build/bin/Debug/umf.dll ${{github.workspace}}/tag_version/build/bin/Debug/umf.dll |
185 | 188 | ctest -C Debug --verbose |
186 | 189 |
|
@@ -228,8 +231,10 @@ jobs: |
228 | 231 |
|
229 | 232 | - name: Run "tag" UMF tests |
230 | 233 | working-directory: ${{github.workspace}}/tag_version/build |
231 | | - run: | |
232 | | - LD_LIBRARY_PATH=${{github.workspace}}/tag_version/build/lib/ ctest --output-on-failure |
| 234 | + run: > |
| 235 | + LD_LIBRARY_PATH=${{github.workspace}}/tag_version/build/lib/ |
| 236 | + GTEST_FILTER="-*umfIpcTest.GetPoolByOpenedHandle*" |
| 237 | + ctest --output-on-failure |
233 | 238 |
|
234 | 239 | - name: Checkout latest UMF version |
235 | 240 | uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 |
@@ -264,4 +269,5 @@ jobs: |
264 | 269 | run: > |
265 | 270 | UMF_LOG="level:warning;flush:debug;output:stderr;pid:no" |
266 | 271 | LD_LIBRARY_PATH=${{github.workspace}}/latest_version/build/lib/ |
| 272 | + GTEST_FILTER="-*umfIpcTest.GetPoolByOpenedHandle*" |
267 | 273 | ctest --verbose -E "not_impl" |
0 commit comments