Skip to content
Snippets Groups Projects
Commit a5f3f9b1 authored by kiilerix's avatar kiilerix
Browse files

test-rollback: Ignore hook exit code

Failing hooks returned 255 on Solaris
parent 6d4fa274
No related merge requests found
......@@ -33,7 +33,7 @@
echo '% rollback by pretxncommit saves commit message (issue 1635)'
echo a >> a
hg --config hooks.pretxncommit=false commit -m"precious commit message"
hg --config hooks.pretxncommit=false commit -m"precious commit message" 2>&1 | sed 's,exited with status .*,exited ...,g'
echo '.hg/last-message.txt:'
cat .hg/last-message.txt ; echo
......@@ -43,6 +43,6 @@
echo "another precious commit message" > "$1"
__EOF__
chmod +x $HGTMP/editor
HGEDITOR=$HGTMP/editor hg --config hooks.pretxncommit=false commit
HGEDITOR=$HGTMP/editor hg --config hooks.pretxncommit=false commit 2>&1 | sed 's,exited with status .*,exited ...,g'
echo '.hg/last-message.txt:'
cat .hg/last-message.txt
......@@ -31,10 +31,10 @@
% rollback by pretxncommit saves commit message (issue 1635)
transaction abort!
rollback completed
abort: pretxncommit hook exited with status 1
abort: pretxncommit hook exited ...
.hg/last-message.txt:
precious commit message
% same thing, but run $EDITOR
transaction abort!
rollback completed
note: commit message saved in .hg/last-message.txt
......@@ -35,9 +35,9 @@
.hg/last-message.txt:
precious commit message
% same thing, but run $EDITOR
transaction abort!
rollback completed
note: commit message saved in .hg/last-message.txt
abort: pretxncommit hook exited with status 1
abort: pretxncommit hook exited ...
.hg/last-message.txt:
another precious commit message
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment