]> git.ipfire.org Git - thirdparty/zstd.git/commit
made playTests.sh more compatible with older versions of grep 3877/head
authorYann Collet <cyan@fb.com>
Tue, 16 Jan 2024 20:14:35 +0000 (12:14 -0800)
committerYann Collet <cyan@fb.com>
Tue, 16 Jan 2024 20:14:35 +0000 (12:14 -0800)
commit81f444f4f92b561278552c00d1d764caea1cff05
tree02ae31a13577bac7379b1e5060fafa08f9b9c046
parent050fec5c378d676fede8b2171ec5e84f6afa1504
made playTests.sh more compatible with older versions of grep

replaced `\+` by `*`.
`\+` means `[1-N]`,
while `*` means `[0-N]`,
so it's not strictly equivalent
but `\+` happens to be badly supported on some flavors of grep,
and for the purpose of these tests, `*` is good enough.
tests/playTests.sh