##// END OF EJS Templates
run-tests: alias hg to hg.exe on Windows...
Matt Harbison -
r41011:2465e0b2 default
parent child Browse files
Show More
@@ -2640,6 +2640,9 b' class TestRunner(object):'
2640 2640 self._tmpbindir = self._bindir
2641 2641 self._pythondir = os.path.join(self._installdir, b"lib", b"python")
2642 2642
2643 if os.name == 'nt' and not self._hgcommand.endswith(b'.exe'):
2644 self._hgcommand += b'.exe'
2645
2643 2646 # set CHGHG, then replace "hg" command by "chg"
2644 2647 chgbindir = self._bindir
2645 2648 if self.options.chg or self.options.with_chg:
@@ -4,7 +4,7 b' hg debuginstall'
4 4 checking Python executable (*) (glob)
5 5 checking Python version (2.*) (glob) (no-py3 !)
6 6 checking Python version (3.*) (glob) (py3 !)
7 checking Python lib (*lib*)... (glob)
7 checking Python lib (.*[Ll]ib.*)... (re)
8 8 checking Python security support (*) (glob)
9 9 TLS 1.2 not supported by Python install; network connections lack modern security (?)
10 10 SNI not supported by Python install; may have connectivity issues with some servers (?)
@@ -60,7 +60,7 b' hg debuginstall with no username'
60 60 checking Python executable (*) (glob)
61 61 checking Python version (2.*) (glob) (no-py3 !)
62 62 checking Python version (3.*) (glob) (py3 !)
63 checking Python lib (*lib*)... (glob)
63 checking Python lib (.*[Ll]ib.*)... (re)
64 64 checking Python security support (*) (glob)
65 65 TLS 1.2 not supported by Python install; network connections lack modern security (?)
66 66 SNI not supported by Python install; may have connectivity issues with some servers (?)
@@ -105,7 +105,7 b' path variables are expanded (~ is the sa'
105 105 checking Python executable (*) (glob)
106 106 checking Python version (2.*) (glob) (no-py3 !)
107 107 checking Python version (3.*) (glob) (py3 !)
108 checking Python lib (*lib*)... (glob)
108 checking Python lib (.*[Ll]ib.*)... (re)
109 109 checking Python security support (*) (glob)
110 110 TLS 1.2 not supported by Python install; network connections lack modern security (?)
111 111 SNI not supported by Python install; may have connectivity issues with some servers (?)
@@ -130,7 +130,7 b' not found (this is intentionally using b'
130 130 checking Python executable (*) (glob)
131 131 checking Python version (2.*) (glob) (no-py3 !)
132 132 checking Python version (3.*) (glob) (py3 !)
133 checking Python lib (*lib*)... (glob)
133 checking Python lib (.*[Ll]ib.*)... (re)
134 134 checking Python security support (*) (glob)
135 135 TLS 1.2 not supported by Python install; network connections lack modern security (?)
136 136 SNI not supported by Python install; may have connectivity issues with some servers (?)
@@ -644,12 +644,14 b' Running In Debug Mode'
644 644
645 645 $ rt --debug 2>&1 | grep -v pwd
646 646 running 2 tests using 1 parallel processes
647 + alias hg=hg.exe (windows !)
647 648 + echo *SALT* 0 0 (glob)
648 649 *SALT* 0 0 (glob)
649 650 + echo babar
650 651 babar
651 652 + echo *SALT* 10 0 (glob)
652 653 *SALT* 10 0 (glob)
654 .+ alias hg=hg.exe (windows !)
653 655 *+ echo *SALT* 0 0 (glob)
654 656 *SALT* 0 0 (glob)
655 657 + echo babar
General Comments 0
You need to be logged in to leave comments. Login now