From 97eb2c2c74a4f1cc22620cb79e99bbe0aa18a1fa Mon Sep 17 00:00:00 2001 From: leonarski_f Date: Wed, 6 May 2026 12:43:38 +0200 Subject: [PATCH] Gitea: ENOSPC test - try again --- .gitea/workflows/build_and_test.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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: |