mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
87747a44b4
.parallelrc is now read along with .parallel/config. Passes testsuite.
8 lines
224 B
Bash
8 lines
224 B
Bash
#!/bin/bash
|
|
|
|
echo '### Test too slow spawning'
|
|
(sleep 0.3; seq 1 10 | parallel -j50 burnP6) &
|
|
seq 1 500 | nice nice stdout timeout 10 \
|
|
parallel -j500 "killall -9 burnP6 2>/dev/null ; echo {} >/dev/null"
|
|
killall -9 burnP6
|