Skip to content

Commit 770abef

Browse files
committed
Update compatibility tests list in CI
1 parent 9ba4d62 commit 770abef

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/reusable_compatibility.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,16 +385,22 @@ jobs:
385385
UMF_LOG: level:warning;flush:debug;output:stderr;pid:no
386386
LD_LIBRARY_PATH: ${{github.workspace}}/latest_version/build/lib/
387387
run: |
388-
ctest --verbose -E "test_memoryProvider|test_disjoint_pool"
388+
ctest --verbose -E "test_memoryProvider|test_disjoint_pool|test_provider_level_zero|test_provider_level_zero_dlopen_global|test_provider_level_zero_dlopen_local"
389389
390390
- name: Run disabled tests individually with latest UMF libs (warnings enabled)
391391
working-directory: ${{github.workspace}}/tag_version/build
392392
env:
393393
UMF_LOG: level:warning;flush:debug;output:stderr;pid:no
394394
LD_LIBRARY_PATH: ${{github.workspace}}/latest_version/build/lib/
395+
MATRIX_PROVIDER: ${{matrix.provider}}
395396
run: |
396397
test/test_memoryProvider --gtest_filter="-*Trace"
397398
test/test_disjoint_pool --gtest_filter="-test.internals"
399+
if [[ "$MATRIX_PROVIDER" == "LEVEL_ZERO" ]]; then
400+
test/test_provider_level_zero --gtest_filter="-*allocInvalidSize/2"
401+
test/test_provider_level_zero_dlopen_global --gtest_filter="-*allocInvalidSize/2"
402+
test/test_provider_level_zero_dlopen_local --gtest_filter="-*allocInvalidSize/2"
403+
fi
398404
399405
# Browse all folders in the examples directory, build them using the
400406
# latest UMF version, and run them, excluding those in the exclude list.

0 commit comments

Comments
 (0)