mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
34 lines
2.3 KiB
Plaintext
34 lines
2.3 KiB
Plaintext
echo '### bug #42089: --results with arg > 256 chars (should be 1 char shorter)'
|
|
### bug #42089: --results with arg > 256 chars (should be 1 char shorter)
|
|
parallel --results parallel_test_dir echo ::: 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456; ls parallel_test_dir/1/
|
|
1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456
|
|
123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345
|
|
rm -rf parallel_test_dir
|
|
echo '**'
|
|
**
|
|
echo '### Test slow arguments generation - https://savannah.gnu.org/bugs/?32834'; seq 1 3 | parallel -j1 "sleep 2; echo {}" | parallel -kj2 echo
|
|
### Test slow arguments generation - https://savannah.gnu.org/bugs/?32834
|
|
1
|
|
2
|
|
3
|
|
echo '**'
|
|
**
|
|
echo '### Are children killed if GNU Parallel receives TERM twice? There should be no sleep at the end'
|
|
### Are children killed if GNU Parallel receives TERM twice? There should be no sleep at the end
|
|
parallel -q bash -c 'sleep 120 & pid=$!; wait $pid' ::: 1 & T=$!; sleep 5; pstree $$; kill -TERM $T; sleep 1; pstree $$; kill -TERM $T; sleep 1; pstree $$; echo '**'
|
|
bash-+-perl---bash---sleep
|
|
`-pstree
|
|
bash-+-perl---bash---sleep
|
|
`-pstree
|
|
bash---pstree
|
|
**
|
|
parallel: SIGTERM received. No new jobs will be started.
|
|
parallel: Waiting for these 1 jobs to finish. Send SIGTERM again to stop now.
|
|
parallel: bash -c sleep\ 120\ \&\ pid\=\$\!\;\ wait\ \$pid 1
|
|
echo '### Are children killed if GNU Parallel receives INT twice? There should be no sleep at the end'
|
|
### Are children killed if GNU Parallel receives INT twice? There should be no sleep at the end
|
|
parallel -q bash -c 'sleep 120 & pid=$!; wait $pid' ::: 1 & T=$!; sleep 5; pstree $$; kill -INT $T; sleep 1; pstree $$;
|
|
bash-+-perl---bash---sleep
|
|
`-pstree
|
|
bash---pstree
|