mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-26 07:57:58 +00:00
0fbd1b2653
Race condition in sem fixed with setsid(). Passes unittest.
8 lines
194 B
Bash
8 lines
194 B
Bash
#!/bin/bash
|
|
|
|
echo '### Test of --eta'
|
|
seq 1 10 | stdout parallel --eta "sleep 1; echo {}" | wc -l
|
|
|
|
echo '### Test of --progress'
|
|
seq 1 10 | stdout parallel --progress "sleep 1; echo {}" | wc -l
|