Skip to content

Commit 9f59845

Browse files
committed
Enable all IPC tests
Signed-off-by: Lukasz Dorau <[email protected]>
1 parent 4755b5f commit 9f59845

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/reusable_dax.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,25 +106,21 @@ jobs:
106106
UMF_TESTS_FSDAX_PATH_2=${{env.UMF_TESTS_FSDAX_PATH_2}}
107107
ctest -C ${{matrix.build_type}} -V -R "file|fsdax"
108108
109-
# TODO: enable the provider_devdax_memory_ipc test when the IPC tests with the proxy library are fixed
110-
# see the issue: https://github.com/oneapi-src/unified-memory-framework/issues/864
111109
- name: Run the DEVDAX tests with the proxy library
112110
working-directory: ${{env.BUILD_DIR}}
113111
run: >
114112
LD_PRELOAD=./lib/libumf_proxy.so
115113
UMF_TESTS_DEVDAX_PATH="/dev/dax${{env.DEVDAX_NAMESPACE}}"
116114
UMF_TESTS_DEVDAX_SIZE="$(ndctl list --namespace=namespace${{env.DEVDAX_NAMESPACE}} | grep size | cut -d':' -f2 | cut -d',' -f1)"
117-
ctest -C ${{matrix.build_type}} -V -R devdax -E provider_devdax_memory_ipc
115+
ctest -C ${{matrix.build_type}} -V -R devdax
118116
119-
# TODO: enable the provider_file_memory_ipc test when the IPC tests with the proxy library are fixed
120-
# see the issue: https://github.com/oneapi-src/unified-memory-framework/issues/864
121117
- name: Run the FSDAX tests with the proxy library
122118
working-directory: ${{env.BUILD_DIR}}
123119
run: >
124120
LD_PRELOAD=./lib/libumf_proxy.so
125121
UMF_TESTS_FSDAX_PATH=${{env.UMF_TESTS_FSDAX_PATH}}
126122
UMF_TESTS_FSDAX_PATH_2=${{env.UMF_TESTS_FSDAX_PATH_2}}
127-
ctest -C ${{matrix.build_type}} -V -R "file|fsdax" -E provider_file_memory_ipc
123+
ctest -C ${{matrix.build_type}} -V -R "file|fsdax"
128124
129125
- name: Check coverage
130126
if: ${{ matrix.build_type == 'Debug' }}

.github/workflows/reusable_proxy_lib.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,9 @@ jobs:
5959
- name: Build UMF
6060
run: cmake --build ${{env.BUILD_DIR}} -j $(nproc)
6161

62-
# TODO enable the provider_file_memory_ipc test when the IPC tests with the proxy library are fixed
63-
# see the issue: https://github.com/oneapi-src/unified-memory-framework/issues/864
6462
- name: Run "ctest --output-on-failure" with proxy library
6563
working-directory: ${{env.BUILD_DIR}}
66-
run: LD_PRELOAD=./lib/libumf_proxy.so ctest --output-on-failure -E provider_file_memory_ipc
64+
run: LD_PRELOAD=./lib/libumf_proxy.so ctest --output-on-failure
6765

6866
- name: Run "./test/umf_test-memoryPool" with proxy library
6967
working-directory: ${{env.BUILD_DIR}}

0 commit comments

Comments
 (0)