##// 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 self._tmpbindir = self._bindir
2640 self._tmpbindir = self._bindir
2641 self._pythondir = os.path.join(self._installdir, b"lib", b"python")
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 # set CHGHG, then replace "hg" command by "chg"
2646 # set CHGHG, then replace "hg" command by "chg"
2644 chgbindir = self._bindir
2647 chgbindir = self._bindir
2645 if self.options.chg or self.options.with_chg:
2648 if self.options.chg or self.options.with_chg:
@@ -4,7 +4,7 b' hg debuginstall'
4 checking Python executable (*) (glob)
4 checking Python executable (*) (glob)
5 checking Python version (2.*) (glob) (no-py3 !)
5 checking Python version (2.*) (glob) (no-py3 !)
6 checking Python version (3.*) (glob) (py3 !)
6 checking Python version (3.*) (glob) (py3 !)
7 checking Python lib (*lib*)... (glob)
7 checking Python lib (.*[Ll]ib.*)... (re)
8 checking Python security support (*) (glob)
8 checking Python security support (*) (glob)
9 TLS 1.2 not supported by Python install; network connections lack modern security (?)
9 TLS 1.2 not supported by Python install; network connections lack modern security (?)
10 SNI not supported by Python install; may have connectivity issues with some servers (?)
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 checking Python executable (*) (glob)
60 checking Python executable (*) (glob)
61 checking Python version (2.*) (glob) (no-py3 !)
61 checking Python version (2.*) (glob) (no-py3 !)
62 checking Python version (3.*) (glob) (py3 !)
62 checking Python version (3.*) (glob) (py3 !)
63 checking Python lib (*lib*)... (glob)
63 checking Python lib (.*[Ll]ib.*)... (re)
64 checking Python security support (*) (glob)
64 checking Python security support (*) (glob)
65 TLS 1.2 not supported by Python install; network connections lack modern security (?)
65 TLS 1.2 not supported by Python install; network connections lack modern security (?)
66 SNI not supported by Python install; may have connectivity issues with some servers (?)
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 checking Python executable (*) (glob)
105 checking Python executable (*) (glob)
106 checking Python version (2.*) (glob) (no-py3 !)
106 checking Python version (2.*) (glob) (no-py3 !)
107 checking Python version (3.*) (glob) (py3 !)
107 checking Python version (3.*) (glob) (py3 !)
108 checking Python lib (*lib*)... (glob)
108 checking Python lib (.*[Ll]ib.*)... (re)
109 checking Python security support (*) (glob)
109 checking Python security support (*) (glob)
110 TLS 1.2 not supported by Python install; network connections lack modern security (?)
110 TLS 1.2 not supported by Python install; network connections lack modern security (?)
111 SNI not supported by Python install; may have connectivity issues with some servers (?)
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 checking Python executable (*) (glob)
130 checking Python executable (*) (glob)
131 checking Python version (2.*) (glob) (no-py3 !)
131 checking Python version (2.*) (glob) (no-py3 !)
132 checking Python version (3.*) (glob) (py3 !)
132 checking Python version (3.*) (glob) (py3 !)
133 checking Python lib (*lib*)... (glob)
133 checking Python lib (.*[Ll]ib.*)... (re)
134 checking Python security support (*) (glob)
134 checking Python security support (*) (glob)
135 TLS 1.2 not supported by Python install; network connections lack modern security (?)
135 TLS 1.2 not supported by Python install; network connections lack modern security (?)
136 SNI not supported by Python install; may have connectivity issues with some servers (?)
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 $ rt --debug 2>&1 | grep -v pwd
645 $ rt --debug 2>&1 | grep -v pwd
646 running 2 tests using 1 parallel processes
646 running 2 tests using 1 parallel processes
647 + alias hg=hg.exe (windows !)
647 + echo *SALT* 0 0 (glob)
648 + echo *SALT* 0 0 (glob)
648 *SALT* 0 0 (glob)
649 *SALT* 0 0 (glob)
649 + echo babar
650 + echo babar
650 babar
651 babar
651 + echo *SALT* 10 0 (glob)
652 + echo *SALT* 10 0 (glob)
652 *SALT* 10 0 (glob)
653 *SALT* 10 0 (glob)
654 .+ alias hg=hg.exe (windows !)
653 *+ echo *SALT* 0 0 (glob)
655 *+ echo *SALT* 0 0 (glob)
654 *SALT* 0 0 (glob)
656 *SALT* 0 0 (glob)
655 + echo babar
657 + echo babar
General Comments 0
You need to be logged in to leave comments. Login now