# HG changeset patch # User Vadim Gelfer # Date 1154291359 25200 # Node ID 819485c43ce32cbafc9c15bdb4b61b5d26d66901 # Parent 8ce86d2c97371d17a5174c8cb46e4d24b1473fe0# Parent 51c296f61b6eb1e1276fd9cb22fce3db45721f83 merge with crew. diff -r 8ce86d2c9737 -r 819485c43ce3 tests/test-abort-checkin --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-abort-checkin Sun Jul 30 13:29:19 2006 -0700 @@ -0,0 +1,17 @@ +#!/bin/sh + +HGRCPATH=$HGTMP/.hgrc; export HGRCPATH +echo "[extensions]" >> $HGTMP/.hgrc +echo "mq=" >> $HGTMP/.hgrc + +hg init foo +cd foo +echo foo > foo +hg add foo + +# mq may keep a reference to the repository so __del__ will not be called +# and .hg/journal.dirstate will not be deleted: +HGEDITOR=false hg ci +HGEDITOR=false hg ci + +exit 0 diff -r 8ce86d2c9737 -r 819485c43ce3 tests/test-abort-checkin.out --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-abort-checkin.out Sun Jul 30 13:29:19 2006 -0700 @@ -0,0 +1,6 @@ +abort: edit failed: false exited with status 1 +transaction abort! +rollback completed +abort: edit failed: false exited with status 1 +transaction abort! +rollback completed