Mercurial > hg
view tests/test-eolfilename @ 12311:8afbf44cfe86
win32: update build instructions with correct CRT version
As stated in http://msdn.microsoft.com/en-us/library/cc664727.aspx, when you
compile an application with MSVC 2008 SP1 it is bound by default to the
original CRT version (9.0.21022.8). This is the case for Python 2.6 up to 3.1.
If the wrong CRT version is embedded in the Inno Setup installer, with a PC
that does not have the MSVC 2008 redistributable package installed, hg will
refuse to launch with an error: "the system cannot execute the specified
program".
author | Pascal Quantin <pascal.quantin@gmail.com> |
---|---|
date | Thu, 16 Sep 2010 11:36:38 +0200 |
parents | 2253715fde97 |
children |
line wrap: on
line source
#!/bin/sh # http://mercurial.selenic.com/bts/issue352 "$TESTDIR/hghave" eol-in-paths || exit 80 echo % test issue352 hg init foo cd foo A=`printf 'he\rllo'` echo foo > "$A" hg add hg ci -A -m m rm "$A" echo foo > "hell o" hg add hg ci -A -m m echo foo > "$A" hg debugwalk # http://mercurial.selenic.com/bts/issue2036 cd .. echo % test issue2039 hg init bar cd bar echo "[extensions]" >> $HGRCPATH echo "color=" >> $HGRCPATH A=`printf 'foo\nbar'` B=`printf 'foo\nbar.baz'` touch "$A" touch "$B" hg status --color=always exit 0