| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix full-test.sh exiting after first passed test | Craig Jennings | 2026-01-20 | 1 | -1/+1 |
| | | | | | | | | | Bug: ((TESTS_PASSED++)) returns exit code 1 when TESTS_PASSED is 0, because post-increment evaluates the old value (0) which is falsy. With set -e, this caused the script to exit after the first test passed. Fix: Use pre-increment ((++TESTS_PASSED)) which returns the new value. | ||||
| * | Add comprehensive installation tests and ZFS script deployment | Craig Jennings | 2026-01-19 | 1 | -0/+522 |
| - Add scripts/full-test.sh for automated install testing (single, mirror, raidz1) - Add --full-test option to build-release workflow - Install zfssnapshot and zfsrollback to target system during install - Simplify .gitignore to exclude entire vm/ directory | |||||
