--- a/tests/test-rollback.t Wed Dec 21 12:03:02 2022 +0100
+++ b/tests/test-rollback.t Mon May 02 17:47:38 2022 +0200
@@ -4,12 +4,7 @@
$ echo a > a
$ hg commit -Am'add a'
adding a
- $ hg verify
- checking changesets
- checking manifests
- crosschecking files in changesets and manifests
- checking files
- checked 1 changesets with 1 changes to 1 files
+ $ hg verify -q
$ hg parents
changeset: 0:1f0dee641bb7
tag: tip
@@ -23,12 +18,7 @@
$ hg rollback
repository tip rolled back to revision -1 (undo commit)
working directory now based on revision -1
- $ hg verify
- checking changesets
- checking manifests
- crosschecking files in changesets and manifests
- checking files
- checked 0 changesets with 0 changes to 0 files
+ $ hg verify -q
$ hg parents
$ hg status
A a
@@ -191,14 +181,8 @@
corrupt journal test
$ echo "foo" > .hg/store/journal
- $ hg recover --verify
- rolling back interrupted transaction
+ $ hg recover --verify -q
couldn't read journal entry 'foo\n'!
- checking changesets
- checking manifests
- crosschecking files in changesets and manifests
- checking files
- checked 2 changesets with 2 changes to 1 files
rollback disabled by config
$ cat >> $HGRCPATH <<EOF
@@ -433,12 +417,7 @@
abort: pretxncommit hook exited with status 1
[40]
- $ hg verify
- checking changesets
- checking manifests
- crosschecking files in changesets and manifests
- checking files
- checked 1 changesets with 1 changes to 1 files
+ $ hg verify -q
$ cd ..
@@ -458,11 +437,6 @@
$ hg --config ui.ioerrors=pretxncommit,pretxnclose,txnclose,txnabort,msgabort,msgrollback commit -m 'multiple errors'
- $ hg verify
- checking changesets
- checking manifests
- crosschecking files in changesets and manifests
- checking files
- checked 2 changesets with 2 changes to 1 files
+ $ hg verify -q
$ cd ..