diff --git a/.gitea/workflows/build_and_test.yml b/.gitea/workflows/build_and_test.yml index e943243e..be1b7c42 100644 --- a/.gitea/workflows/build_and_test.yml +++ b/.gitea/workflows/build_and_test.yml @@ -315,19 +315,19 @@ jobs: cd build cmake -G Ninja -DCMAKE_BUILD_TYPE=Release .. ninja -j48 jfjoch_test jfjoch_hdf5_test jfjoch_hdf5_enospc_test enospc_shim - - name: Run unit tests - shell: bash - run: | - cd build/tests - ./jfjoch_test - name: ENOSPC test shell: bash run: | cd build/tests ls -ltr *.so ldd enospc_shim.so - LD_PRELOAD=enospc_shim.so ./jfjoch_hdf5_enospc_test HDF5File_enospc - LD_PRELOAD=enospc_shim.so ./jfjoch_hdf5_enospc_test FileWriter_enospc + LD_PRELOAD=./enospc_shim.so ./jfjoch_hdf5_enospc_test HDF5File_enospc + LD_PRELOAD=./enospc_shim.so ./jfjoch_hdf5_enospc_test FileWriter_enospc + - name: Run unit tests + shell: bash + run: | + cd build/tests + ./jfjoch_test - name: Run hdf5 test shell: bash run: |