test-remove: adapt to differing error message on Windows stable
authorAdrian Buehlmann <adrian@cadifra.com>
Wed, 24 Oct 2012 11:51:24 +0200
branchstable
changeset 17862 2142691be14f
parent 17861 3125af2d99d2
child 17863 034e55bbf7c0
test-remove: adapt to differing error message on Windows On Windows, this part of the test failed with $ hg rm --after nosuch - nosuch: No such file or directory + nosuch: The system cannot find the file specified [1] Fixed by glob-ing away the error message if the test is run on Windows (see for example test-bad-pull.t line 3 for precedent). test-remove.t now passes on Windows.
tests/test-remove.t
--- a/tests/test-remove.t	Wed Oct 24 11:38:31 2012 +0200
+++ b/tests/test-remove.t	Wed Oct 24 11:51:24 2012 +0200
@@ -276,6 +276,12 @@
   $ rm d1/a
   $ hg rm --after d1
   removing d1/a (glob)
+#if windows
+  $ hg rm --after nosuch
+  nosuch: * (glob)
+  [1]
+#else
   $ hg rm --after nosuch
   nosuch: No such file or directory
   [1]
+#endif