Add a test for parallel unaligned appends to a file

This commit is contained in:
Vitaliy Filippov
2025-12-20 18:34:08 +03:00
parent db5eaa2eee
commit 8b7fa3d3bc
3 changed files with 44 additions and 0 deletions
+18
View File
@@ -1944,3 +1944,21 @@ jobs:
echo ""
done
test_nfs_unaligned_append:
runs-on: ubuntu-latest
needs: build
container: ${{env.TEST_IMAGE}}:${{github.sha}}
steps:
- name: Run test
id: test
timeout-minutes: 3
run: /root/vitastor/tests/test_nfs_unaligned_append.sh
- name: Print logs
if: always() && steps.test.outcome == 'failure'
run: |
for i in /root/vitastor/testdata/*.log /root/vitastor/testdata/*.txt; do
echo "-------- $i --------"
cat $i
echo ""
done