Skip to content

Commit

Permalink
Add test multi-thread connectors to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Oct 22, 2024
1 parent 33c0011 commit fd172c1
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,25 @@ jobs:
run: |
valgrind ./test/API/api_tests
- name: API Tests with multithread test VOL
if: matrix.api_tests == '--enable-api-tests' && matrix.multi_thread == '--enable-multithread --disable-hl'
working-directory: ${{github.workspace}}
env:
HDF5_PLUGIN_PATH: ${{github.workspace}}/test/.libs
HDF5_VOL_CONNECTOR: "mt_test_vol_connector"
run: |
valgrind ./test/API/api_tests
- name: API Tests with passthrough multithread test VOL
if: matrix.api_tests == '--enable-api-tests' && matrix.multi_thread == '--enable-multithread --disable-hl'
working-directory: ${{github.workspace}}
env:
HDF5_PLUGIN_PATH: ${{github.workspace}}/test/.libs
HDF5_VOL_CONNECTOR: "mt_test_passthru_vol_connector under_vol=0\\;under_info={}"
run: |
valgrind ./test/API/api_tests
- name: Test HDF5
working-directory: ${{github.workspace}}
run: |
make check
make check

0 comments on commit fd172c1

Please sign in to comment.