dev/chroot-test/action/test2
author David Douard <david.douard@logilab.fr>
Mon, 03 Nov 2014 11:12:45 +0100
changeset 372 80f78674c56e
parent 275 2e781d52f76e
permissions -rwxr-xr-x
Add support for phases This adds a "publish" permission level (between "init" and "write") required to be able to change the phase of a changeset from "draft" to "public". Update documentation accordingly. This is meant to be used for using the changeset evolution feature of mercurial, see http://evolution.experimentalworks.net/doc/

#!/bin/sh

set -e

cd

cat > .ssh/config <<__END__
Host chroothg
Hostname localhost
User hg
Port 2222
__END__

echo "Pulling real project"
hg clone ssh://chroothg/real/project
cd project
[ -e nested/content ]
echo "and I'm adding something" >> content
hg commit -u test2 -m "Added something to the file"
echo "This push should succeed"
hg push
echo "And it did"
echo "This should fail" >> denied/cantwrite
hg commit -u test2 -m "WONTPUSH"
# Fail only if this succeeds
echo "About to do bad push"
hg push && false
echo "really checking now"
hg outgoing --template '{desc}' | grep -q WONTPUSH
echo "done"