File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -106,25 +106,21 @@ jobs:
106
106
UMF_TESTS_FSDAX_PATH_2=${{env.UMF_TESTS_FSDAX_PATH_2}}
107
107
ctest -C ${{matrix.build_type}} -V -R "file|fsdax"
108
108
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
111
109
- name : Run the DEVDAX tests with the proxy library
112
110
working-directory : ${{env.BUILD_DIR}}
113
111
run : >
114
112
LD_PRELOAD=./lib/libumf_proxy.so
115
113
UMF_TESTS_DEVDAX_PATH="/dev/dax${{env.DEVDAX_NAMESPACE}}"
116
114
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
118
116
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
121
117
- name : Run the FSDAX tests with the proxy library
122
118
working-directory : ${{env.BUILD_DIR}}
123
119
run : >
124
120
LD_PRELOAD=./lib/libumf_proxy.so
125
121
UMF_TESTS_FSDAX_PATH=${{env.UMF_TESTS_FSDAX_PATH}}
126
122
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"
128
124
129
125
- name : Check coverage
130
126
if : ${{ matrix.build_type == 'Debug' }}
Original file line number Diff line number Diff line change 59
59
- name : Build UMF
60
60
run : cmake --build ${{env.BUILD_DIR}} -j $(nproc)
61
61
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
64
62
- name : Run "ctest --output-on-failure" with proxy library
65
63
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
67
65
68
66
- name : Run "./test/umf_test-memoryPool" with proxy library
69
67
working-directory : ${{env.BUILD_DIR}}
You can’t perform that action at this time.
0 commit comments