- Nov 07, 2011
-
-
kiilerix authored
-
kiilerix authored
chmod of helper scripts is not included. tests that exercise the x bit in the file system uses 'hghave execbit'.
-
kiilerix authored
-
kiilerix authored
-
kiilerix authored
debugstate would always report files as mode 666 or 777 on Windows. umask is not used on Windows, but faking and using a defalt value of 022 matches what the test suite uses on Unix.
-
kiilerix authored
The exit code returned from a program to the shell is unsigned 8-bit, but Mercurial would sometimes try to exit with negative numbers or None. sys.exit on Unix will convert that to 8-bit exit codes, but on Windows negative values showed up as 0. The exit code is now explicitly converted to unsigned 8-bit.
-
kiilerix authored
Windows agree that it was Thu Jan 01 00:00:00 1970 +0000 but it also claims that it was Thu Dec 31 23:59:59 1969 -0000
-
kiilerix authored
Subrepo diffs would sometimes use backslash on windows.
-
kiilerix authored
-
kiilerix authored
The code for match on (esc) lines didn't work, and it would thus always end up emitting another suggestion ... which however would match the old one.
-
Matt Mackall authored
Normally changes in tests are reported like this in diffs: $ cat foo - a + b Using -i mode lets us update tests when the new results are correct and/or populate tests with their output. But with the standard doctest framework, inline Python sections in tests changes instead result in a big failure report that's unhelpful. So here, we replace the doctest calls with a simple compile/eval loop.
-
Matt Mackall authored
-
- Nov 04, 2011
-
-
Martin Geisler authored
-
Martin Geisler authored
-
Martin Geisler authored
-
David M. Carr authored
Add details on which commands are supported for Subversion subrepos.
-
David M. Carr authored
Add details on which commands are supported for git subrepos.
-
David M. Carr authored
Update the subrepo help to be consistent with the new default behavior, which is to abort if any subrepo is dirty.
-
- Nov 03, 2011
-
-
Martin Geisler authored
-
Wagner Bruna authored
This is just a stopgap until a proper solution is implemented.
-
- Nov 06, 2011
-
-
Matt Mackall authored
-
- Nov 03, 2011
-
-
Pierre-Yves David authored
Note that the expected output is wrong as is should be phase-1. But the machinery to plant new root is to come in later commit.
-
- Oct 09, 2011
-
-
Pierre-Yves David authored
-
- Oct 18, 2011
-
-
Pierre-Yves David authored
-
- Nov 03, 2011
-
-
Pierre-Yves David authored
-
- Nov 06, 2011
-
-
Matt Mackall authored
-
- Nov 03, 2011
-
-
Pierre-Yves David authored
Add function to read and write phase roots. Add a _phaseroots filecache on localrepo class to access the phaseroots data.
-
Pierre-Yves David authored
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
Tests with inline Python could turn '>>>' into their underlying python invocation if the test got updated with -i.
-
Matt Mackall authored
-
- Nov 02, 2011
-
-
David M. Carr authored
Change the behavior of the add command such that explicit paths in subrepos are always added. This eliminates the previous behavior where if you called "hg add" for an explicit path in a subrepo without specifying the -S option, it would be silently ignored. If you specify patterns, or no arguments at all, the -S option will still be needed to activate recursion into subrepos.
-
David M. Carr authored
Add test coverage for the existing behavior where adds of explicit paths in subrepos are silently ignored. This is in preparation for changing the behavior of the add command to have better support for subrepos.
-
- Nov 03, 2011
-
-
Hao Lian authored
When (1) findfile links a largefile from the user cache to the store and (2) the store directory doesn't exist yet, findfile errors out. A simple call to util.makedirs fixes it.
-
Matt Mackall authored
Spotted by Victor Stinner <victor.stinner@haypocalc.com>
-
- Oct 19, 2011
-
-
Yann E. MORIN authored
The argument is not used. This is a left-over of non-published iterations, and it passed through. Signed-off-by:
"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-
- Nov 02, 2011
-
-
Matt Mackall authored
-