This commit is contained in:
Nick Bebout 2011-03-12 02:44:20 +00:00
parent 00a0bc81fd
commit ab8d0b0cf7
8 changed files with 167 additions and 44 deletions

View file

@ -1,6 +1,6 @@
#!/bin/sh
# $Id: tests.sh,v 1.44 2005/11/28 01:27:44 gilles Exp $
# $Id: tests.sh,v 1.45 2006/02/17 02:51:12 gilles Exp gilles $
#### Shell pragmas
@ -266,17 +266,32 @@ lp_justconnect()
{
if test X`hostname` = X"plume"; then
echo3 Here is plume
./imapsync \
--host2 plume --user2 tata@est.belle \
--passfile2 /var/tmp/secret.tata \
--host1 loul --user1 tata \
--passfile1 /var/tmp/secret.tata \
./imapsync \
--host2 plume \
--host1 loul \
--justconnect
else
:
fi
}
lp_justfoldersizes()
{
if test X`hostname` = X"plume"; then
echo3 Here is plume
./imapsync \
--host2 plume --user2 tata@est.belle \
--passfile2 /var/tmp/secret.tata \
--host1 loul --user1 tata \
--passfile1 /var/tmp/secret.tata \
--justfoldersizes
else
:
fi
}
lp_authmd5()
{
if test X`hostname` = X"plume"; then
@ -705,6 +720,7 @@ test $# -eq 0 && run_tests \
lp_subscribed \
lp_subscribe \
lp_justconnect \
lp_justfoldersizes \
lp_authmd5 \
lp_maxage \
lp_maxsize \