Message ID | 171150740360.3286541.8931841089205728326.stgit@frogsfrogsfrogs (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/4] xfs/270: fix rocompat regex | expand |
diff --git a/tests/xfs/270 b/tests/xfs/270 index 4e4f767dc1..16e508035a 100755 --- a/tests/xfs/270 +++ b/tests/xfs/270 @@ -30,8 +30,9 @@ _require_scratch_shutdown # change this case. set_bad_rocompat() { ro_compat=$(_scratch_xfs_get_metadata_field "features_ro_compat" "sb 0") - echo $ro_compat | grep -q -E '^0x[[:xdigit:]]$' + echo $ro_compat | grep -q -E '^0x[[:xdigit:]]+$' if [[ $? != 0 ]]; then + echo ":$ro_compat:" echo "features_ro_compat has an invalid value." return 1 fi