mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
generic/45[34]: force UTF-8 codeset to enable utf-8 namer checks in xfs_scrub
The upcoming xfs_scrub tool will have the ability to warn about suspicious UTF-8 normalization collisions. We want generic/45[34] to be able to test this functionality, but to do that we have to forcibly set the codeset to UTF-8 via LC_ALL since the rest of xfstests only uses LC_ALL=C. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Eryu Guan <eguan@redhat.com> Signed-off-by: Eryu Guan <eguan@redhat.com>
This commit is contained in:
committed by
Eryu Guan
parent
148090c1c4
commit
a7ee21e5cb
+1
-1
@@ -157,7 +157,7 @@ check_xfs_scrub() {
|
||||
}
|
||||
|
||||
if check_xfs_scrub; then
|
||||
output="$(${XFS_SCRUB_PROG} -n "${SCRATCH_MNT}" 2>&1 | filter_scrub)"
|
||||
output="$(LC_ALL="C.UTF-8" ${XFS_SCRUB_PROG} -n "${SCRATCH_MNT}" 2>&1 | filter_scrub)"
|
||||
echo "${output}" | grep -q "french_" || echo "No complaints about french e accent?"
|
||||
echo "${output}" | grep -q "chinese_" || echo "No complaints about chinese width-different?"
|
||||
echo "${output}" | grep -q "greek_" || echo "No complaints about greek letter mess?"
|
||||
|
||||
+1
-1
@@ -153,7 +153,7 @@ check_xfs_scrub() {
|
||||
}
|
||||
|
||||
if check_xfs_scrub; then
|
||||
output="$(${XFS_SCRUB_PROG} -n "${SCRATCH_MNT}" 2>&1 | filter_scrub)"
|
||||
output="$(LC_ALL="C.UTF-8" ${XFS_SCRUB_PROG} -n "${SCRATCH_MNT}" 2>&1 | filter_scrub)"
|
||||
echo "${output}" | grep -q "french_" || echo "No complaints about french e accent?"
|
||||
echo "${output}" | grep -q "chinese_" || echo "No complaints about chinese width-different?"
|
||||
echo "${output}" | grep -q "greek_" || echo "No complaints about greek letter mess?"
|
||||
|
||||
Reference in New Issue
Block a user