mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
testsuite: Polarhome improved.
This commit is contained in:
parent
3d919c6cd4
commit
dd793cee9d
|
@ -219,9 +219,9 @@ cc:Tim Cuthbertson <tim3d.junk@gmail.com>,
|
|||
Ryoichiro Suzuki <ryoichiro.suzuki@gmail.com>,
|
||||
Jesse Alama <jesse.alama@gmail.com>
|
||||
|
||||
Subject: GNU Parallel 20160422 ('Gulshan-i-Iqbal') released <<[stable]>>
|
||||
Subject: GNU Parallel 20160422 ('PanamaPapers') released <<[stable]>>
|
||||
|
||||
GNU Parallel 20160422 ('Gulshan-i-Iqbal') <<[stable]>> has been released. It is available for download at: http://ftp.gnu.org/gnu/parallel/
|
||||
GNU Parallel 20160422 ('PanamaPapers') <<[stable]>> has been released. It is available for download at: http://ftp.gnu.org/gnu/parallel/
|
||||
|
||||
<<No new functionality was introduced so this is a good candidate for a stable release.>>
|
||||
|
||||
|
|
|
@ -16,6 +16,11 @@ mem: ../src/parallel tests-to-run/*mem* wanted-results/*mem* prereqlocal
|
|||
touch ~/.parallel/will-cite
|
||||
make stopvm
|
||||
|
||||
polar: ../src/parallel tests-to-run/*polar* wanted-results/*polar* prereqlocal
|
||||
make stopvm
|
||||
time bash Start.sh polar NONE || true
|
||||
touch ~/.parallel/will-cite
|
||||
|
||||
testdb: ../src/parallel tests-to-run/*sql* wanted-results/*sql* prereqdb
|
||||
time bash Start.sh sql NONE
|
||||
|
||||
|
|
|
@ -6,8 +6,8 @@ P_ALL="vax freebsd solaris openbsd netbsd debian alpha aix redhat hpux ultrix mi
|
|||
P_NOTWORKING="vax alpha openstep"
|
||||
P_NOTWORKING_YET="ultrix irix"
|
||||
|
||||
P_WORKING="freebsd solaris openbsd netbsd debian aix redhat hpux qnx openindiana suse solaris-x86 mandriva ubuntu scosysv unixware centos miros raspbian macosx hpux-ia64 pidora debian-ppc"
|
||||
P_TEMPORARILY_BROKEN="minix syllable tru64 hurd dragonfly"
|
||||
P_WORKING="pidora raspbian tru64 solaris openindiana aix hpux qnx debian-ppc suse solaris-x86 mandriva ubuntu scosysv dragonfly unixware centos miros macosx hpux-ia64 redhat netbsd openbsd freebsd debian"
|
||||
P_TEMPORARILY_BROKEN="minix syllable hurd dragonfly"
|
||||
|
||||
P="$P_WORKING"
|
||||
POLAR=`parallel -k echo {}.polarhome.com ::: $P`
|
||||
|
@ -21,10 +21,12 @@ RETRIES=2
|
|||
echo '### Tests on polarhome machines'
|
||||
echo 'Setup on polarhome machines'
|
||||
# Avoid the stupid /etc/issue.net banner at Polarhome: -oLogLevel=quiet
|
||||
stdout parallel -kj0 ssh -oLogLevel=quiet {} mkdir -p bin ::: $POLAR &
|
||||
#stdout parallel -kj0 ssh -oLogLevel=quiet {} mkdir -p bin ::: $POLAR &
|
||||
|
||||
test_empty_cmd() {
|
||||
echo
|
||||
echo '### Test if empty command in process list causes problems'
|
||||
echo
|
||||
perl -e '$0=" ";sleep 1' &
|
||||
bin/perl bin/parallel echo ::: OK_with_empty_cmd
|
||||
}
|
||||
|
@ -34,18 +36,34 @@ stdout parallel -j0 -k --retries $RETRIES --timeout $TIMEOUT --delay 0.1 --tag \
|
|||
|
||||
copy_and_test() {
|
||||
H=$1
|
||||
# scp to each polarhome machine do not work. Use cat
|
||||
# scp to each polarhome machine does not work. Use cat
|
||||
# Avoid the stupid /etc/issue.net banner with -oLogLevel=quiet
|
||||
echo '### Run the test on '$H
|
||||
cat `which parallel` |
|
||||
stdout ssh -oLogLevel=quiet $H 'cat > bin/p.tmp && chmod 755 bin/p.tmp && mv bin/p.tmp bin/parallel && bin/perl bin/parallel echo Works on {} ::: '$H'; bin/perl bin/parallel --tmpdir / echo ::: test read-only tmp' |
|
||||
perl -pe 's:/[a-z0-9_]+.arg:/XXXXXXXX.arg:gi; s/\d\d\d\d/0000/gi;'
|
||||
stdout ssh -oLogLevel=quiet $H 'cat > bin/p.tmp && chmod 755 bin/p.tmp && mv bin/p.tmp bin/parallel && bin/perl bin/parallel echo Works on {} ::: '$H &&
|
||||
stdout ssh -oLogLevel=quiet $H 'bin/perl bin/parallel --tmpdir / echo ::: test read-only tmp' |
|
||||
perl -pe '$exit += s:/[a-z0-9_]+.arg:/XXXXXXXX.arg:gi; $exit += s/\d\d\d\d/0000/gi; END { exit not $exit }' &&
|
||||
echo OK
|
||||
}
|
||||
export -f copy_and_test
|
||||
stdout parallel -j0 -k --retries $RETRIES --timeout $TIMEOUT --delay 0.1 --tag -v copy_and_test {} ::: $POLAR
|
||||
stdout parallel -j6 -k -r --retries $RETRIES --timeout $TIMEOUT --delay 0.1 --tag -v copy_and_test {} ::: $POLAR
|
||||
|
||||
# Test remote wrapper working on all platforms
|
||||
echo
|
||||
echo '### Test remote wrapper working on all platforms'
|
||||
echo
|
||||
parallel -j0 --nonall -k --timeout $TIMEOUT $S_POLAR hostname
|
||||
|
||||
cat /tmp/test_empty_cmd
|
||||
echo
|
||||
echo '### Does exporting a bash function kill parallel'
|
||||
echo
|
||||
# http://zmwangx.github.io/blog/2015-11-25-bash-function-exporting-fiasco.html
|
||||
parallel --onall -j0 -k --tag --timeout $TIMEOUT $S_POLAR 'func() { cat <(echo bash only A); };export -f func; bin/parallel func ::: ' ::: 1 2>&1
|
||||
|
||||
echo
|
||||
echo '### Does PARALLEL_SHELL help exporting a bash function not kill parallel'
|
||||
echo
|
||||
PARALLEL_SHELL=/bin/bash parallel --retries $RETRIES --onall -j0 -k --tag --timeout $TIMEOUT $S_POLAR 'func() { cat <(echo bash only B); };export -f func; bin/parallel func ::: ' ::: 1 2>&1
|
||||
|
||||
# Started earlier - therefore wait
|
||||
wait; cat /tmp/test_empty_cmd
|
||||
rm /tmp/test_empty_cmd
|
||||
|
|
|
@ -1,108 +1,142 @@
|
|||
### Tests on polarhome machines
|
||||
Setup on polarhome machines
|
||||
copy_and_test freebsd.polarhome.com
|
||||
freebsd.polarhome.com ### Run the test on freebsd.polarhome.com
|
||||
freebsd.polarhome.com Works on freebsd.polarhome.com
|
||||
freebsd.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
copy_and_test pidora.polarhome.com
|
||||
pidora.polarhome.com ### Run the test on pidora.polarhome.com
|
||||
pidora.polarhome.com Works on pidora.polarhome.com
|
||||
pidora.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
pidora.polarhome.com OK
|
||||
copy_and_test raspbian.polarhome.com
|
||||
raspbian.polarhome.com ### Run the test on raspbian.polarhome.com
|
||||
raspbian.polarhome.com Works on raspbian.polarhome.com
|
||||
raspbian.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
raspbian.polarhome.com OK
|
||||
copy_and_test tru64.polarhome.com
|
||||
tru64.polarhome.com ### Run the test on tru64.polarhome.com
|
||||
tru64.polarhome.com Works on tru64.polarhome.com
|
||||
copy_and_test solaris.polarhome.com
|
||||
solaris.polarhome.com ### Run the test on solaris.polarhome.com
|
||||
solaris.polarhome.com Works on solaris.polarhome.com
|
||||
solaris.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Parent directory (/) is not writable
|
||||
solaris.polarhome.com at bin/parallel line 0000
|
||||
copy_and_test openbsd.polarhome.com
|
||||
openbsd.polarhome.com ### Run the test on openbsd.polarhome.com
|
||||
openbsd.polarhome.com Works on openbsd.polarhome.com
|
||||
openbsd.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
copy_and_test netbsd.polarhome.com
|
||||
netbsd.polarhome.com ### Run the test on netbsd.polarhome.com
|
||||
netbsd.polarhome.com Works on netbsd.polarhome.com
|
||||
netbsd.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
copy_and_test debian.polarhome.com
|
||||
debian.polarhome.com ### Run the test on debian.polarhome.com
|
||||
debian.polarhome.com Works on debian.polarhome.com
|
||||
debian.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
solaris.polarhome.com OK
|
||||
copy_and_test openindiana.polarhome.com
|
||||
openindiana.polarhome.com ### Run the test on openindiana.polarhome.com
|
||||
openindiana.polarhome.com Works on openindiana.polarhome.com
|
||||
openindiana.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
openindiana.polarhome.com OK
|
||||
copy_and_test aix.polarhome.com
|
||||
aix.polarhome.com ### Run the test on aix.polarhome.com
|
||||
aix.polarhome.com Works on aix.polarhome.com
|
||||
aix.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: The file access permissions do not allow the specified action. at bin/parallel line 0000
|
||||
copy_and_test redhat.polarhome.com
|
||||
redhat.polarhome.com ### Run the test on redhat.polarhome.com
|
||||
redhat.polarhome.com Works on redhat.polarhome.com
|
||||
redhat.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
aix.polarhome.com OK
|
||||
copy_and_test hpux.polarhome.com
|
||||
hpux.polarhome.com ### Run the test on hpux.polarhome.com
|
||||
hpux.polarhome.com Works on hpux.polarhome.com
|
||||
hpux.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
hpux.polarhome.com OK
|
||||
copy_and_test qnx.polarhome.com
|
||||
qnx.polarhome.com ### Run the test on qnx.polarhome.com
|
||||
qnx.polarhome.com parallel: Warning: Cannot figure out number of CPU cores. Using 1.
|
||||
qnx.polarhome.com Works on qnx.polarhome.com
|
||||
qnx.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
copy_and_test openindiana.polarhome.com
|
||||
openindiana.polarhome.com ### Run the test on openindiana.polarhome.com
|
||||
openindiana.polarhome.com parallel: Warning: Cannot figure out number of CPU cores. Using 1.
|
||||
openindiana.polarhome.com Works on openindiana.polarhome.com
|
||||
openindiana.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
qnx.polarhome.com OK
|
||||
copy_and_test debian-ppc.polarhome.com
|
||||
debian-ppc.polarhome.com ### Run the test on debian-ppc.polarhome.com
|
||||
debian-ppc.polarhome.com Works on debian-ppc.polarhome.com
|
||||
debian-ppc.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
debian-ppc.polarhome.com OK
|
||||
copy_and_test suse.polarhome.com
|
||||
suse.polarhome.com ### Run the test on suse.polarhome.com
|
||||
suse.polarhome.com Works on suse.polarhome.com
|
||||
suse.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
suse.polarhome.com OK
|
||||
copy_and_test solaris-x86.polarhome.com
|
||||
solaris-x86.polarhome.com ### Run the test on solaris-x86.polarhome.com
|
||||
solaris-x86.polarhome.com Works on solaris-x86.polarhome.com
|
||||
solaris-x86.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
solaris-x86.polarhome.com OK
|
||||
copy_and_test mandriva.polarhome.com
|
||||
mandriva.polarhome.com ### Run the test on mandriva.polarhome.com
|
||||
mandriva.polarhome.com Works on mandriva.polarhome.com
|
||||
mandriva.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
mandriva.polarhome.com OK
|
||||
copy_and_test ubuntu.polarhome.com
|
||||
ubuntu.polarhome.com ### Run the test on ubuntu.polarhome.com
|
||||
ubuntu.polarhome.com Works on ubuntu.polarhome.com
|
||||
ubuntu.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
ubuntu.polarhome.com OK
|
||||
copy_and_test scosysv.polarhome.com
|
||||
scosysv.polarhome.com ### Run the test on scosysv.polarhome.com
|
||||
scosysv.polarhome.com Works on scosysv.polarhome.com
|
||||
scosysv.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Parent directory (/) is not writable
|
||||
scosysv.polarhome.com at bin/parallel line 0000
|
||||
scosysv.polarhome.com OK
|
||||
copy_and_test dragonfly.polarhome.com
|
||||
dragonfly.polarhome.com ### Run the test on dragonfly.polarhome.com
|
||||
dragonfly.polarhome.com Works on dragonfly.polarhome.com
|
||||
dragonfly.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
dragonfly.polarhome.com OK
|
||||
copy_and_test unixware.polarhome.com
|
||||
unixware.polarhome.com ### Run the test on unixware.polarhome.com
|
||||
unixware.polarhome.com Works on unixware.polarhome.com
|
||||
unixware.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
unixware.polarhome.com OK
|
||||
copy_and_test centos.polarhome.com
|
||||
centos.polarhome.com ### Run the test on centos.polarhome.com
|
||||
centos.polarhome.com Works on centos.polarhome.com
|
||||
centos.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Parent directory (/) is not writable
|
||||
centos.polarhome.com at bin/parallel line 0000
|
||||
centos.polarhome.com OK
|
||||
copy_and_test miros.polarhome.com
|
||||
miros.polarhome.com ### Run the test on miros.polarhome.com
|
||||
miros.polarhome.com Works on miros.polarhome.com
|
||||
miros.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Parent directory (/) is not writable
|
||||
miros.polarhome.com at bin/parallel line 0000
|
||||
copy_and_test raspbian.polarhome.com
|
||||
raspbian.polarhome.com ### Run the test on raspbian.polarhome.com
|
||||
raspbian.polarhome.com Works on raspbian.polarhome.com
|
||||
raspbian.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
miros.polarhome.com OK
|
||||
copy_and_test macosx.polarhome.com
|
||||
macosx.polarhome.com ### Run the test on macosx.polarhome.com
|
||||
macosx.polarhome.com Works on macosx.polarhome.com
|
||||
macosx.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
macosx.polarhome.com OK
|
||||
copy_and_test hpux-ia64.polarhome.com
|
||||
hpux-ia64.polarhome.com ### Run the test on hpux-ia64.polarhome.com
|
||||
hpux-ia64.polarhome.com Works on hpux-ia64.polarhome.com
|
||||
hpux-ia64.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Parent directory (/) is not writable
|
||||
hpux-ia64.polarhome.com at bin/parallel line 0000
|
||||
copy_and_test pidora.polarhome.com
|
||||
pidora.polarhome.com ### Run the test on pidora.polarhome.com
|
||||
pidora.polarhome.com Works on pidora.polarhome.com
|
||||
pidora.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
copy_and_test debian-ppc.polarhome.com
|
||||
debian-ppc.polarhome.com ### Run the test on debian-ppc.polarhome.com
|
||||
debian-ppc.polarhome.com Works on debian-ppc.polarhome.com
|
||||
debian-ppc.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
hpux-ia64.polarhome.com OK
|
||||
copy_and_test redhat.polarhome.com
|
||||
redhat.polarhome.com ### Run the test on redhat.polarhome.com
|
||||
redhat.polarhome.com Works on redhat.polarhome.com
|
||||
redhat.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
redhat.polarhome.com OK
|
||||
copy_and_test netbsd.polarhome.com
|
||||
netbsd.polarhome.com ### Run the test on netbsd.polarhome.com
|
||||
netbsd.polarhome.com Works on netbsd.polarhome.com
|
||||
netbsd.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
netbsd.polarhome.com OK
|
||||
copy_and_test openbsd.polarhome.com
|
||||
openbsd.polarhome.com ### Run the test on openbsd.polarhome.com
|
||||
openbsd.polarhome.com Works on openbsd.polarhome.com
|
||||
openbsd.polarhome.com Error in tempfile() using /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000
|
||||
openbsd.polarhome.com OK
|
||||
copy_and_test freebsd.polarhome.com
|
||||
freebsd.polarhome.com ### Run the test on freebsd.polarhome.com
|
||||
freebsd.polarhome.com Works on freebsd.polarhome.com
|
||||
freebsd.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
freebsd.polarhome.com OK
|
||||
copy_and_test debian.polarhome.com
|
||||
debian.polarhome.com ### Run the test on debian.polarhome.com
|
||||
debian.polarhome.com Works on debian.polarhome.com
|
||||
debian.polarhome.com Error in tempfile() using template /XXXXXXXX.arg: Could not create temp file /XXXXXXXX.arg: Permission denied at bin/parallel line 0000.
|
||||
debian.polarhome.com OK
|
||||
|
||||
### Test remote wrapper working on all platforms
|
||||
|
||||
aix7
|
||||
centos.polarhome.com
|
||||
debian-ppc
|
||||
debian
|
||||
dragonfly.polarhome.com
|
||||
freebsd.polarhome.com
|
||||
hpux-ia64
|
||||
hpux64
|
||||
|
@ -120,7 +154,60 @@ scosysv.polarhome.com
|
|||
solaris-x86
|
||||
solaris
|
||||
suse
|
||||
tru64.polarhome.com
|
||||
ubuntu
|
||||
unixware.polarhome.com
|
||||
|
||||
### Does exporting a bash function kill parallel
|
||||
|
||||
aix.polarhome.com bash only A
|
||||
centos.polarhome.com bash only A
|
||||
debian-ppc.polarhome.com bash only A
|
||||
debian.polarhome.com bash only A
|
||||
dragonfly.polarhome.com Syntax error: "(" unexpected
|
||||
freebsd.polarhome.com Syntax error: "(" unexpected (expecting word)
|
||||
hpux-ia64.polarhome.com bash only A
|
||||
hpux.polarhome.com bash only A
|
||||
macosx.polarhome.com bash only A
|
||||
mandriva.polarhome.com bash only A
|
||||
miros.polarhome.com bash only A
|
||||
netbsd.polarhome.com Missing name for redirect.
|
||||
openbsd.polarhome.com bash only A
|
||||
openindiana.polarhome.com bash only A
|
||||
pidora.polarhome.com bash only A
|
||||
qnx.polarhome.com /bin/sh: syntax error: `(' unexpected
|
||||
raspbian.polarhome.com bash only A
|
||||
redhat.polarhome.com bash only A
|
||||
scosysv.polarhome.com bash only A
|
||||
solaris-x86.polarhome.com bash only A
|
||||
solaris.polarhome.com bash only A
|
||||
suse.polarhome.com bash only A
|
||||
tru64.polarhome.com bash only A
|
||||
ubuntu.polarhome.com bash only A
|
||||
unixware.polarhome.com UX:sh (/bin/sh): ERROR: /bin/sh: Syntax error at line 1: `(' unexpected
|
||||
|
||||
### Does PARALLEL_SHELL help exporting a bash function not kill parallel
|
||||
|
||||
aix.polarhome.com bash only B
|
||||
centos.polarhome.com bash only B
|
||||
debian-ppc.polarhome.com bash only B
|
||||
debian.polarhome.com bash only B
|
||||
freebsd.polarhome.com bash only B
|
||||
macosx.polarhome.com bash only B
|
||||
mandriva.polarhome.com bash only B
|
||||
miros.polarhome.com bash only B
|
||||
netbsd.polarhome.com bash only B
|
||||
openbsd.polarhome.com bash only B
|
||||
openindiana.polarhome.com bash only B
|
||||
pidora.polarhome.com bash only B
|
||||
raspbian.polarhome.com bash only B
|
||||
redhat.polarhome.com bash only B
|
||||
scosysv.polarhome.com bash only B
|
||||
solaris-x86.polarhome.com bash only B
|
||||
solaris.polarhome.com bash only B
|
||||
suse.polarhome.com bash only B
|
||||
ubuntu.polarhome.com bash only B
|
||||
macosx.polarhome.com
|
||||
macosx.polarhome.com ### Test if empty command in process list causes problems
|
||||
macosx.polarhome.com
|
||||
macosx.polarhome.com OK_with_empty_cmd
|
||||
|
|
Loading…
Reference in a new issue