mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
79 lines
4.2 KiB
Plaintext
79 lines
4.2 KiB
Plaintext
echo "### bug #43518: GNU Parallel doesn't obey servers' jobs capacity when an ssh login file is reloaded"
|
||
### bug #43518: GNU Parallel doesn't obey servers' jobs capacity when an ssh login file is reloaded
|
||
# Pre-20141106 Would reset the number of jobs run on all sshlogin if --slf changed
|
||
# Thus must take at least 25 sec to run
|
||
echo -e '1/lo\n1/csh@lo\n1/tcsh@lo\n1/parallel@lo\n' > /tmp/parallel.bug43518; parallel --delay 0.1 -N0 echo 1/: '>>' /tmp/parallel.bug43518 ::: {1..100} & seq 30 | stdout /usr/bin/time -f %e parallel --slf /tmp/parallel.bug43518 'sleep {=$_=$_%3?0:10=}.{%}' | perl -ne '$_ > 25 and print "OK\n"'
|
||
OK
|
||
echo '### --filter-hosts --slf <()'
|
||
### --filter-hosts --slf <()
|
||
parallel --nonall --filter-hosts --slf <(echo localhost) echo OK
|
||
OK
|
||
echo '### --wd no-such-dir - csh'
|
||
### --wd no-such-dir - csh
|
||
stdout parallel --wd /no-such-dir -S csh@localhost echo ::: "ERROR IF PRINTED"; echo Exit code $?
|
||
mkdir: cannot create directory ‘/no-such-dir’: Permission denied
|
||
/no-such-dir: No such file or directory.
|
||
Exit code 1
|
||
echo '### --wd no-such-dir - tcsh'
|
||
### --wd no-such-dir - tcsh
|
||
stdout parallel --wd /no-such-dir -S tcsh@localhost echo ::: "ERROR IF PRINTED"; echo Exit code $?
|
||
mkdir: cannot create directory ‘/no-such-dir’: Permission denied
|
||
/no-such-dir: No such file or directory.
|
||
Exit code 1
|
||
echo '### --wd no-such-dir - bash'
|
||
### --wd no-such-dir - bash
|
||
stdout parallel --wd /no-such-dir -S parallel@localhost echo ::: "ERROR IF PRINTED"; echo Exit code $?
|
||
mkdir: cannot create directory ‘/no-such-dir’: Permission denied
|
||
bash: line 0: cd: /no-such-dir: No such file or directory
|
||
Exit code 1
|
||
echo '### bug #42725: csh with \n in variables'
|
||
### bug #42725: csh with \n in variables
|
||
not_csh() { echo This is not csh/tcsh; }; export -f not_csh; parallel --env not_csh -S csh@lo not_csh ::: 1; parallel --env not_csh -S tcsh@lo not_csh ::: 1; parallel --env not_csh -S parallel@lo not_csh ::: 1
|
||
CSH/TCSH DO NOT SUPPORT newlines IN VARIABLES/FUNCTIONS. Unset not_csh
|
||
CSH/TCSH DO NOT SUPPORT newlines IN VARIABLES/FUNCTIONS. Unset not_csh
|
||
This is not csh/tcsh
|
||
Badly placed ()'s.
|
||
}: Command not found.
|
||
Badly placed ()'s.
|
||
}: Command not found.
|
||
echo '### bug #43358: shellshock breaks exporting functions using --env'
|
||
### bug #43358: shellshock breaks exporting functions using --env
|
||
echo shellshock-hardened to shellshock-hardened; funky() { echo Function $1; }; export -f funky; parallel --env funky -S parallel@localhost funky ::: shellshock-hardened
|
||
shellshock-hardened to shellshock-hardened
|
||
Function shellshock-hardened
|
||
echo '2bug #43358: shellshock breaks exporting functions using --env'
|
||
2bug #43358: shellshock breaks exporting functions using --env
|
||
echo shellshock-hardened to non-shellshock-hardened; funky() { echo Function $1; }; export -f funky; parallel --env funky -S centos3.tange.dk funky ::: non-shellshock-hardened
|
||
shellshock-hardened to non-shellshock-hardened
|
||
Function non-shellshock-hardened
|
||
echo '### bug #42999: --pipepart with remote does not work'
|
||
### bug #42999: --pipepart with remote does not work
|
||
seq 100 > /tmp/bug42999; chmod 600 /tmp/bug42999; parallel --sshdelay 0.3 --pipepart --block 31 -a /tmp/bug42999 -k -S parallel@lo wc | perl -pe s:/tmp/.........pip:/tmp/XXXX: ; parallel --sshdelay 0.2 --pipepart --block 31 -a /tmp/bug42999 -k --fifo -S parallel@lo wc | perl -pe s:/tmp/.........pip:/tmp/XXXX: ; parallel --sshdelay 0.1 --pipepart --block 31 -a /tmp/bug42999 -k --cat -S parallel@lo wc | perl -pe s:/tmp/.........pip:/tmp/XXXX: ;
|
||
13 14 32
|
||
11 11 33
|
||
11 11 33
|
||
11 11 33
|
||
11 11 33
|
||
11 11 33
|
||
11 11 33
|
||
11 11 33
|
||
10 9 29
|
||
13 14 32 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
10 9 29 /tmp/XXXX
|
||
13 14 32 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
11 11 33 /tmp/XXXX
|
||
10 9 29 /tmp/XXXX
|