From patchwork Mon Aug 11 18:39:47 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1,of,8] test-revert: drop useless comment From: Pierre-Yves David X-Patchwork-Id: 5343 Message-Id: <19b0133c70f71c940b64.1407782387@marginatus.alto.octopoid.net> To: mercurial-devel@selenic.com Cc: Pierre-Yves David Date: Mon, 11 Aug 2014 11:39:47 -0700 # HG changeset patch # User Pierre-Yves David # Date 1403708361 -3600 # Wed Jun 25 15:59:21 2014 +0100 # Node ID 19b0133c70f71c940b644573048321b4846e0ddc # Parent fff8e1cec90f64b356c66aa068d3810f7efea0ac test-revert: drop useless comment There is multiple comments explaining the expected output of commands. This is old relic of pre-unified test era. We remove them for uselessness. diff --git a/tests/test-revert.t b/tests/test-revert.t --- a/tests/test-revert.t +++ b/tests/test-revert.t @@ -17,91 +17,64 @@ nothing changed Introduce some changes and revert them -------------------------------------- $ echo 123 > b -should show b unknown - $ hg status ? b $ echo 12 > c -should show b unknown and c modified - $ hg status M c ? b $ hg add b -should show b added and c modified - $ hg status M c A b $ hg rm a -should show a removed, b added and c modified - $ hg status M c A b R a revert removal of a file $ hg revert a - -should show b added, copy saved, and c modified - $ hg status M c A b revert addition of a file $ hg revert b - -should show b unknown, and c modified - $ hg status M c ? b revert modification of a file (--no-backup) $ hg revert --no-backup c - -should show unknown: b - $ hg status ? b revert deletion (! status) of a added file ------------------------------------------ $ hg add b -should show b added - $ hg status b A b $ rm b - -should show b deleted - $ hg status b ! b $ hg revert -v b forgetting b - -should not find b - $ hg status b b: * (glob) -should show a c e - $ ls a c e @@ -185,24 +158,20 @@ revert of exec bit #if execbit $ chmod +x c $ hg revert --all reverting c -should print non-executable - $ test -x c || echo non-executable non-executable $ chmod +x c $ hg commit -m exe $ chmod -x c $ hg revert --all reverting c -should print executable - $ test -x c && echo executable executable #endif $ cd ..