Add a test for an idiotic checksum bug

This commit is contained in:
Vitaliy Filippov
2026-01-16 01:07:39 +03:00
parent 34d0a6d9b1
commit 819f5b7ec9
3 changed files with 37 additions and 0 deletions
+18
View File
@@ -1818,6 +1818,24 @@ jobs:
echo ""
done
test_old_partwr_csum:
runs-on: ubuntu-latest
needs: build
container: ${{env.TEST_IMAGE}}:${{github.sha}}
steps:
- name: Run test
id: test
timeout-minutes: 3
run: OLD=1 /root/vitastor/tests/test_partwr_csum.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
test_heal_old_csum_32k_dmj:
runs-on: ubuntu-latest
needs: build