test-commit: stabilize for filesystems without symlink support stable
authorMatt Harbison <matt_harbison@yahoo.com>
Tue, 18 Jul 2017 20:34:22 -0400
branchstable
changeset 33576 a41e0f1c9b69
parent 33575 5b286cfe4fb0
child 33577 34a8ef358c93
test-commit: stabilize for filesystems without symlink support
tests/test-commit.t
--- a/tests/test-commit.t	Tue Jul 18 19:49:51 2017 -0400
+++ b/tests/test-commit.t	Tue Jul 18 20:34:22 2017 -0400
@@ -103,6 +103,7 @@
   $ hg commit -m commit-15 baz
   abort: baz: file not tracked!
   [255]
+  $ rm baz
 #endif
 
   $ touch quux
@@ -129,18 +130,16 @@
   $ echo "[extensions]" >> $HGRCPATH
   $ echo "commitextras=" >> $HGRCPATH
   $ hg status
-  ? baz
   ? quux
-  $ hg add baz
+  $ hg add quux
+  $ hg commit -m "adding internal used extras" --extra amend_source=hash
+  abort: key 'amend_source' is used internally, can't be set manually
+  [255]
   $ hg commit -m "adding extras" --extra sourcehash=foo --extra oldhash=bar
   $ hg log -r . -T '{extras % "{extra}\n"}'
   branch=default
   oldhash=bar
   sourcehash=foo
-  $ hg add quux
-  $ hg commit -m "adding internal used extras" --extra amend_source=hash
-  abort: key 'amend_source' is used internally, can't be set manually
-  [255]
 
 Make sure we do not obscure unknown requires file entries (issue2649)