mirror of
https://github.com/JotaRandom/hfsutils.git
synced 2026-04-21 11:17:01 +00:00
fix: Replace all Unicode characters with ASCII for full TTY compatibility
Complete ASCII conversion: - + in all test output and validation - ! in all warnings - All files verified for ASCII-only content Files updated: - Makefile (install messages) - test/test_mkfs.sh (test output) - test/test_fsck.sh (test output) - test/test_hfsutils.sh (test output) - test/lib/validation.sh (validation messages) Benefits: - Works on all BSD TTY systems - Compatible with Linux text consoles - No Unicode font requirements - Portable across all POSIX systems - Serial console compatible - Minimal system requirements
This commit is contained in:
@@ -1 +0,0 @@
|
||||
mount.hfs
|
||||
@@ -19,7 +19,7 @@ TESTS_FAILED=0
|
||||
# log_pass() - Log successful test
|
||||
#
|
||||
log_pass() {
|
||||
echo -e "${GREEN}✓ PASS${NC}: $1"
|
||||
echo -e "${GREEN}+ PASS${NC}: $1"
|
||||
((TESTS_PASSED++))
|
||||
}
|
||||
|
||||
@@ -246,8 +246,8 @@ print_summary() {
|
||||
echo "Passed: $TESTS_PASSED"
|
||||
echo "Failed: $TESTS_FAILED"
|
||||
echo ""
|
||||
echo "✓ All filesystems are 100% valid"
|
||||
echo "✓ All structures conform to specifications"
|
||||
echo "✓ All repairs worked correctly"
|
||||
echo "+ All filesystems are 100% valid"
|
||||
echo "+ All structures conform to specifications"
|
||||
echo "+ All repairs worked correctly"
|
||||
echo ""
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user