1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

gnu/rm: make the code reentrant

This commit is contained in:
Sylvestre Ledru 2021-06-03 22:49:47 +02:00
parent 6a8d15f92e
commit a85ee4386a

View file

@ -99,6 +99,9 @@ sed -i 's|seq \$|/usr/bin/timeout 0.1 seq \$|' tests/misc/seq-precision.sh tests
sed -i 's|cat |/usr/bin/timeout 0.1 cat |' tests/misc/cat-self.sh sed -i 's|cat |/usr/bin/timeout 0.1 cat |' tests/misc/cat-self.sh
# Remove dup of /usr/bin/ when executed several times
grep -rl '/usr/bin//usr/bin/' tests/* | xargs --no-run-if-empty sed -i 's|/usr/bin//usr/bin/|/usr/bin/|g'
#### Adjust tests to make them work with Rust/coreutils #### Adjust tests to make them work with Rust/coreutils
# in some cases, what we are doing in rust/coreutils is good (or better) # in some cases, what we are doing in rust/coreutils is good (or better)