changeset 17862:2142691be14f stable

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.
author Adrian Buehlmann <adrian@cadifra.com>
date Wed, 24 Oct 2012 11:51:24 +0200
parents 3125af2d99d2
children 034e55bbf7c0
files tests/test-remove.t
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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