##// END OF EJS Templates
tests: launch hghave with python interpreter without relying on hash-bang
Mads Kiilerich -
r15518:d01e08ea default
parent child Browse files
Show More
@@ -1,6 +1,6 b''
1 import sys, os, subprocess
1 import sys, os, subprocess
2
2
3 if subprocess.call(['%s/hghave' % os.environ['TESTDIR'], 'cacheable']):
3 if subprocess.call(['python', '%s/hghave' % os.environ['TESTDIR'], 'cacheable']):
4 sys.exit(80)
4 sys.exit(80)
5
5
6 from mercurial import util, scmutil, extensions
6 from mercurial import util, scmutil, extensions
General Comments 0
You need to be logged in to leave comments. Login now