##// END OF EJS Templates
run-tests: keep a list of passed tests
Matt Mackall -
r13992:ec4ae572 default
parent child Browse files
Show More
@@ -1,1118 +1,1111 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 #
2 #
3 # run-tests.py - Run a set of tests on Mercurial
3 # run-tests.py - Run a set of tests on Mercurial
4 #
4 #
5 # Copyright 2006 Matt Mackall <mpm@selenic.com>
5 # Copyright 2006 Matt Mackall <mpm@selenic.com>
6 #
6 #
7 # This software may be used and distributed according to the terms of the
7 # This software may be used and distributed according to the terms of the
8 # GNU General Public License version 2 or any later version.
8 # GNU General Public License version 2 or any later version.
9
9
10 # Modifying this script is tricky because it has many modes:
10 # Modifying this script is tricky because it has many modes:
11 # - serial (default) vs parallel (-jN, N > 1)
11 # - serial (default) vs parallel (-jN, N > 1)
12 # - no coverage (default) vs coverage (-c, -C, -s)
12 # - no coverage (default) vs coverage (-c, -C, -s)
13 # - temp install (default) vs specific hg script (--with-hg, --local)
13 # - temp install (default) vs specific hg script (--with-hg, --local)
14 # - tests are a mix of shell scripts and Python scripts
14 # - tests are a mix of shell scripts and Python scripts
15 #
15 #
16 # If you change this script, it is recommended that you ensure you
16 # If you change this script, it is recommended that you ensure you
17 # haven't broken it by running it in various modes with a representative
17 # haven't broken it by running it in various modes with a representative
18 # sample of test scripts. For example:
18 # sample of test scripts. For example:
19 #
19 #
20 # 1) serial, no coverage, temp install:
20 # 1) serial, no coverage, temp install:
21 # ./run-tests.py test-s*
21 # ./run-tests.py test-s*
22 # 2) serial, no coverage, local hg:
22 # 2) serial, no coverage, local hg:
23 # ./run-tests.py --local test-s*
23 # ./run-tests.py --local test-s*
24 # 3) serial, coverage, temp install:
24 # 3) serial, coverage, temp install:
25 # ./run-tests.py -c test-s*
25 # ./run-tests.py -c test-s*
26 # 4) serial, coverage, local hg:
26 # 4) serial, coverage, local hg:
27 # ./run-tests.py -c --local test-s* # unsupported
27 # ./run-tests.py -c --local test-s* # unsupported
28 # 5) parallel, no coverage, temp install:
28 # 5) parallel, no coverage, temp install:
29 # ./run-tests.py -j2 test-s*
29 # ./run-tests.py -j2 test-s*
30 # 6) parallel, no coverage, local hg:
30 # 6) parallel, no coverage, local hg:
31 # ./run-tests.py -j2 --local test-s*
31 # ./run-tests.py -j2 --local test-s*
32 # 7) parallel, coverage, temp install:
32 # 7) parallel, coverage, temp install:
33 # ./run-tests.py -j2 -c test-s* # currently broken
33 # ./run-tests.py -j2 -c test-s* # currently broken
34 # 8) parallel, coverage, local install:
34 # 8) parallel, coverage, local install:
35 # ./run-tests.py -j2 -c --local test-s* # unsupported (and broken)
35 # ./run-tests.py -j2 -c --local test-s* # unsupported (and broken)
36 # 9) parallel, custom tmp dir:
36 # 9) parallel, custom tmp dir:
37 # ./run-tests.py -j2 --tmpdir /tmp/myhgtests
37 # ./run-tests.py -j2 --tmpdir /tmp/myhgtests
38 #
38 #
39 # (You could use any subset of the tests: test-s* happens to match
39 # (You could use any subset of the tests: test-s* happens to match
40 # enough that it's worth doing parallel runs, few enough that it
40 # enough that it's worth doing parallel runs, few enough that it
41 # completes fairly quickly, includes both shell and Python scripts, and
41 # completes fairly quickly, includes both shell and Python scripts, and
42 # includes some scripts that run daemon processes.)
42 # includes some scripts that run daemon processes.)
43
43
44 from distutils import version
44 from distutils import version
45 import difflib
45 import difflib
46 import errno
46 import errno
47 import optparse
47 import optparse
48 import os
48 import os
49 import shutil
49 import shutil
50 import subprocess
50 import subprocess
51 import signal
51 import signal
52 import sys
52 import sys
53 import tempfile
53 import tempfile
54 import time
54 import time
55 import re
55 import re
56
56
57 closefds = os.name == 'posix'
57 closefds = os.name == 'posix'
58 def Popen4(cmd, bufsize=-1):
58 def Popen4(cmd, bufsize=-1):
59 p = subprocess.Popen(cmd, shell=True, bufsize=bufsize,
59 p = subprocess.Popen(cmd, shell=True, bufsize=bufsize,
60 close_fds=closefds,
60 close_fds=closefds,
61 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
61 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
62 stderr=subprocess.STDOUT)
62 stderr=subprocess.STDOUT)
63 p.fromchild = p.stdout
63 p.fromchild = p.stdout
64 p.tochild = p.stdin
64 p.tochild = p.stdin
65 p.childerr = p.stderr
65 p.childerr = p.stderr
66 return p
66 return p
67
67
68 # reserved exit code to skip test (used by hghave)
68 # reserved exit code to skip test (used by hghave)
69 SKIPPED_STATUS = 80
69 SKIPPED_STATUS = 80
70 SKIPPED_PREFIX = 'skipped: '
70 SKIPPED_PREFIX = 'skipped: '
71 FAILED_PREFIX = 'hghave check failed: '
71 FAILED_PREFIX = 'hghave check failed: '
72 PYTHON = sys.executable
72 PYTHON = sys.executable
73 IMPL_PATH = 'PYTHONPATH'
73 IMPL_PATH = 'PYTHONPATH'
74 if 'java' in sys.platform:
74 if 'java' in sys.platform:
75 IMPL_PATH = 'JYTHONPATH'
75 IMPL_PATH = 'JYTHONPATH'
76
76
77 requiredtools = ["python", "diff", "grep", "unzip", "gunzip", "bunzip2", "sed"]
77 requiredtools = ["python", "diff", "grep", "unzip", "gunzip", "bunzip2", "sed"]
78
78
79 defaults = {
79 defaults = {
80 'jobs': ('HGTEST_JOBS', 1),
80 'jobs': ('HGTEST_JOBS', 1),
81 'timeout': ('HGTEST_TIMEOUT', 180),
81 'timeout': ('HGTEST_TIMEOUT', 180),
82 'port': ('HGTEST_PORT', 20059),
82 'port': ('HGTEST_PORT', 20059),
83 }
83 }
84
84
85 def parseargs():
85 def parseargs():
86 parser = optparse.OptionParser("%prog [options] [tests]")
86 parser = optparse.OptionParser("%prog [options] [tests]")
87
87
88 # keep these sorted
88 # keep these sorted
89 parser.add_option("--blacklist", action="append",
89 parser.add_option("--blacklist", action="append",
90 help="skip tests listed in the specified blacklist file")
90 help="skip tests listed in the specified blacklist file")
91 parser.add_option("-C", "--annotate", action="store_true",
91 parser.add_option("-C", "--annotate", action="store_true",
92 help="output files annotated with coverage")
92 help="output files annotated with coverage")
93 parser.add_option("--child", type="int",
93 parser.add_option("--child", type="int",
94 help="run as child process, summary to given fd")
94 help="run as child process, summary to given fd")
95 parser.add_option("-c", "--cover", action="store_true",
95 parser.add_option("-c", "--cover", action="store_true",
96 help="print a test coverage report")
96 help="print a test coverage report")
97 parser.add_option("-d", "--debug", action="store_true",
97 parser.add_option("-d", "--debug", action="store_true",
98 help="debug mode: write output of test scripts to console"
98 help="debug mode: write output of test scripts to console"
99 " rather than capturing and diff'ing it (disables timeout)")
99 " rather than capturing and diff'ing it (disables timeout)")
100 parser.add_option("-f", "--first", action="store_true",
100 parser.add_option("-f", "--first", action="store_true",
101 help="exit on the first test failure")
101 help="exit on the first test failure")
102 parser.add_option("--inotify", action="store_true",
102 parser.add_option("--inotify", action="store_true",
103 help="enable inotify extension when running tests")
103 help="enable inotify extension when running tests")
104 parser.add_option("-i", "--interactive", action="store_true",
104 parser.add_option("-i", "--interactive", action="store_true",
105 help="prompt to accept changed output")
105 help="prompt to accept changed output")
106 parser.add_option("-j", "--jobs", type="int",
106 parser.add_option("-j", "--jobs", type="int",
107 help="number of jobs to run in parallel"
107 help="number of jobs to run in parallel"
108 " (default: $%s or %d)" % defaults['jobs'])
108 " (default: $%s or %d)" % defaults['jobs'])
109 parser.add_option("--keep-tmpdir", action="store_true",
109 parser.add_option("--keep-tmpdir", action="store_true",
110 help="keep temporary directory after running tests")
110 help="keep temporary directory after running tests")
111 parser.add_option("-k", "--keywords",
111 parser.add_option("-k", "--keywords",
112 help="run tests matching keywords")
112 help="run tests matching keywords")
113 parser.add_option("-l", "--local", action="store_true",
113 parser.add_option("-l", "--local", action="store_true",
114 help="shortcut for --with-hg=<testdir>/../hg")
114 help="shortcut for --with-hg=<testdir>/../hg")
115 parser.add_option("-n", "--nodiff", action="store_true",
115 parser.add_option("-n", "--nodiff", action="store_true",
116 help="skip showing test changes")
116 help="skip showing test changes")
117 parser.add_option("-p", "--port", type="int",
117 parser.add_option("-p", "--port", type="int",
118 help="port on which servers should listen"
118 help="port on which servers should listen"
119 " (default: $%s or %d)" % defaults['port'])
119 " (default: $%s or %d)" % defaults['port'])
120 parser.add_option("--pure", action="store_true",
120 parser.add_option("--pure", action="store_true",
121 help="use pure Python code instead of C extensions")
121 help="use pure Python code instead of C extensions")
122 parser.add_option("-R", "--restart", action="store_true",
122 parser.add_option("-R", "--restart", action="store_true",
123 help="restart at last error")
123 help="restart at last error")
124 parser.add_option("-r", "--retest", action="store_true",
124 parser.add_option("-r", "--retest", action="store_true",
125 help="retest failed tests")
125 help="retest failed tests")
126 parser.add_option("-S", "--noskips", action="store_true",
126 parser.add_option("-S", "--noskips", action="store_true",
127 help="don't report skip tests verbosely")
127 help="don't report skip tests verbosely")
128 parser.add_option("-t", "--timeout", type="int",
128 parser.add_option("-t", "--timeout", type="int",
129 help="kill errant tests after TIMEOUT seconds"
129 help="kill errant tests after TIMEOUT seconds"
130 " (default: $%s or %d)" % defaults['timeout'])
130 " (default: $%s or %d)" % defaults['timeout'])
131 parser.add_option("--tmpdir", type="string",
131 parser.add_option("--tmpdir", type="string",
132 help="run tests in the given temporary directory"
132 help="run tests in the given temporary directory"
133 " (implies --keep-tmpdir)")
133 " (implies --keep-tmpdir)")
134 parser.add_option("-v", "--verbose", action="store_true",
134 parser.add_option("-v", "--verbose", action="store_true",
135 help="output verbose messages")
135 help="output verbose messages")
136 parser.add_option("--view", type="string",
136 parser.add_option("--view", type="string",
137 help="external diff viewer")
137 help="external diff viewer")
138 parser.add_option("--with-hg", type="string",
138 parser.add_option("--with-hg", type="string",
139 metavar="HG",
139 metavar="HG",
140 help="test using specified hg script rather than a "
140 help="test using specified hg script rather than a "
141 "temporary installation")
141 "temporary installation")
142 parser.add_option("-3", "--py3k-warnings", action="store_true",
142 parser.add_option("-3", "--py3k-warnings", action="store_true",
143 help="enable Py3k warnings on Python 2.6+")
143 help="enable Py3k warnings on Python 2.6+")
144
144
145 for option, default in defaults.items():
145 for option, default in defaults.items():
146 defaults[option] = int(os.environ.get(*default))
146 defaults[option] = int(os.environ.get(*default))
147 parser.set_defaults(**defaults)
147 parser.set_defaults(**defaults)
148 (options, args) = parser.parse_args()
148 (options, args) = parser.parse_args()
149
149
150 # jython is always pure
150 # jython is always pure
151 if 'java' in sys.platform or '__pypy__' in sys.modules:
151 if 'java' in sys.platform or '__pypy__' in sys.modules:
152 options.pure = True
152 options.pure = True
153
153
154 if options.with_hg:
154 if options.with_hg:
155 if not (os.path.isfile(options.with_hg) and
155 if not (os.path.isfile(options.with_hg) and
156 os.access(options.with_hg, os.X_OK)):
156 os.access(options.with_hg, os.X_OK)):
157 parser.error('--with-hg must specify an executable hg script')
157 parser.error('--with-hg must specify an executable hg script')
158 if not os.path.basename(options.with_hg) == 'hg':
158 if not os.path.basename(options.with_hg) == 'hg':
159 sys.stderr.write('warning: --with-hg should specify an hg script')
159 sys.stderr.write('warning: --with-hg should specify an hg script')
160 if options.local:
160 if options.local:
161 testdir = os.path.dirname(os.path.realpath(sys.argv[0]))
161 testdir = os.path.dirname(os.path.realpath(sys.argv[0]))
162 hgbin = os.path.join(os.path.dirname(testdir), 'hg')
162 hgbin = os.path.join(os.path.dirname(testdir), 'hg')
163 if not os.access(hgbin, os.X_OK):
163 if not os.access(hgbin, os.X_OK):
164 parser.error('--local specified, but %r not found or not executable'
164 parser.error('--local specified, but %r not found or not executable'
165 % hgbin)
165 % hgbin)
166 options.with_hg = hgbin
166 options.with_hg = hgbin
167
167
168 options.anycoverage = options.cover or options.annotate
168 options.anycoverage = options.cover or options.annotate
169 if options.anycoverage:
169 if options.anycoverage:
170 try:
170 try:
171 import coverage
171 import coverage
172 covver = version.StrictVersion(coverage.__version__).version
172 covver = version.StrictVersion(coverage.__version__).version
173 if covver < (3, 3):
173 if covver < (3, 3):
174 parser.error('coverage options require coverage 3.3 or later')
174 parser.error('coverage options require coverage 3.3 or later')
175 except ImportError:
175 except ImportError:
176 parser.error('coverage options now require the coverage package')
176 parser.error('coverage options now require the coverage package')
177
177
178 if options.anycoverage and options.local:
178 if options.anycoverage and options.local:
179 # this needs some path mangling somewhere, I guess
179 # this needs some path mangling somewhere, I guess
180 parser.error("sorry, coverage options do not work when --local "
180 parser.error("sorry, coverage options do not work when --local "
181 "is specified")
181 "is specified")
182
182
183 global vlog
183 global vlog
184 if options.verbose:
184 if options.verbose:
185 if options.jobs > 1 or options.child is not None:
185 if options.jobs > 1 or options.child is not None:
186 pid = "[%d]" % os.getpid()
186 pid = "[%d]" % os.getpid()
187 else:
187 else:
188 pid = None
188 pid = None
189 def vlog(*msg):
189 def vlog(*msg):
190 if pid:
190 if pid:
191 print pid,
191 print pid,
192 for m in msg:
192 for m in msg:
193 print m,
193 print m,
194 print
194 print
195 sys.stdout.flush()
195 sys.stdout.flush()
196 else:
196 else:
197 vlog = lambda *msg: None
197 vlog = lambda *msg: None
198
198
199 if options.tmpdir:
199 if options.tmpdir:
200 options.tmpdir = os.path.expanduser(options.tmpdir)
200 options.tmpdir = os.path.expanduser(options.tmpdir)
201
201
202 if options.jobs < 1:
202 if options.jobs < 1:
203 parser.error('--jobs must be positive')
203 parser.error('--jobs must be positive')
204 if options.interactive and options.jobs > 1:
204 if options.interactive and options.jobs > 1:
205 print '(--interactive overrides --jobs)'
205 print '(--interactive overrides --jobs)'
206 options.jobs = 1
206 options.jobs = 1
207 if options.interactive and options.debug:
207 if options.interactive and options.debug:
208 parser.error("-i/--interactive and -d/--debug are incompatible")
208 parser.error("-i/--interactive and -d/--debug are incompatible")
209 if options.debug:
209 if options.debug:
210 if options.timeout != defaults['timeout']:
210 if options.timeout != defaults['timeout']:
211 sys.stderr.write(
211 sys.stderr.write(
212 'warning: --timeout option ignored with --debug\n')
212 'warning: --timeout option ignored with --debug\n')
213 options.timeout = 0
213 options.timeout = 0
214 if options.py3k_warnings:
214 if options.py3k_warnings:
215 if sys.version_info[:2] < (2, 6) or sys.version_info[:2] >= (3, 0):
215 if sys.version_info[:2] < (2, 6) or sys.version_info[:2] >= (3, 0):
216 parser.error('--py3k-warnings can only be used on Python 2.6+')
216 parser.error('--py3k-warnings can only be used on Python 2.6+')
217 if options.blacklist:
217 if options.blacklist:
218 blacklist = dict()
218 blacklist = dict()
219 for filename in options.blacklist:
219 for filename in options.blacklist:
220 try:
220 try:
221 path = os.path.expanduser(os.path.expandvars(filename))
221 path = os.path.expanduser(os.path.expandvars(filename))
222 f = open(path, "r")
222 f = open(path, "r")
223 except IOError, err:
223 except IOError, err:
224 if err.errno != errno.ENOENT:
224 if err.errno != errno.ENOENT:
225 raise
225 raise
226 print "warning: no such blacklist file: %s" % filename
226 print "warning: no such blacklist file: %s" % filename
227 continue
227 continue
228
228
229 for line in f.readlines():
229 for line in f.readlines():
230 line = line.split('#', 1)[0].strip()
230 line = line.split('#', 1)[0].strip()
231 if line:
231 if line:
232 blacklist[line] = filename
232 blacklist[line] = filename
233
233
234 f.close()
234 f.close()
235
235
236 options.blacklist = blacklist
236 options.blacklist = blacklist
237
237
238 return (options, args)
238 return (options, args)
239
239
240 def rename(src, dst):
240 def rename(src, dst):
241 """Like os.rename(), trade atomicity and opened files friendliness
241 """Like os.rename(), trade atomicity and opened files friendliness
242 for existing destination support.
242 for existing destination support.
243 """
243 """
244 shutil.copy(src, dst)
244 shutil.copy(src, dst)
245 os.remove(src)
245 os.remove(src)
246
246
247 def splitnewlines(text):
247 def splitnewlines(text):
248 '''like str.splitlines, but only split on newlines.
248 '''like str.splitlines, but only split on newlines.
249 keep line endings.'''
249 keep line endings.'''
250 i = 0
250 i = 0
251 lines = []
251 lines = []
252 while True:
252 while True:
253 n = text.find('\n', i)
253 n = text.find('\n', i)
254 if n == -1:
254 if n == -1:
255 last = text[i:]
255 last = text[i:]
256 if last:
256 if last:
257 lines.append(last)
257 lines.append(last)
258 return lines
258 return lines
259 lines.append(text[i:n + 1])
259 lines.append(text[i:n + 1])
260 i = n + 1
260 i = n + 1
261
261
262 def parsehghaveoutput(lines):
262 def parsehghaveoutput(lines):
263 '''Parse hghave log lines.
263 '''Parse hghave log lines.
264 Return tuple of lists (missing, failed):
264 Return tuple of lists (missing, failed):
265 * the missing/unknown features
265 * the missing/unknown features
266 * the features for which existence check failed'''
266 * the features for which existence check failed'''
267 missing = []
267 missing = []
268 failed = []
268 failed = []
269 for line in lines:
269 for line in lines:
270 if line.startswith(SKIPPED_PREFIX):
270 if line.startswith(SKIPPED_PREFIX):
271 line = line.splitlines()[0]
271 line = line.splitlines()[0]
272 missing.append(line[len(SKIPPED_PREFIX):])
272 missing.append(line[len(SKIPPED_PREFIX):])
273 elif line.startswith(FAILED_PREFIX):
273 elif line.startswith(FAILED_PREFIX):
274 line = line.splitlines()[0]
274 line = line.splitlines()[0]
275 failed.append(line[len(FAILED_PREFIX):])
275 failed.append(line[len(FAILED_PREFIX):])
276
276
277 return missing, failed
277 return missing, failed
278
278
279 def showdiff(expected, output, ref, err):
279 def showdiff(expected, output, ref, err):
280 for line in difflib.unified_diff(expected, output, ref, err):
280 for line in difflib.unified_diff(expected, output, ref, err):
281 sys.stdout.write(line)
281 sys.stdout.write(line)
282
282
283 def findprogram(program):
283 def findprogram(program):
284 """Search PATH for a executable program"""
284 """Search PATH for a executable program"""
285 for p in os.environ.get('PATH', os.defpath).split(os.pathsep):
285 for p in os.environ.get('PATH', os.defpath).split(os.pathsep):
286 name = os.path.join(p, program)
286 name = os.path.join(p, program)
287 if os.access(name, os.X_OK):
287 if os.access(name, os.X_OK):
288 return name
288 return name
289 return None
289 return None
290
290
291 def checktools():
291 def checktools():
292 # Before we go any further, check for pre-requisite tools
292 # Before we go any further, check for pre-requisite tools
293 # stuff from coreutils (cat, rm, etc) are not tested
293 # stuff from coreutils (cat, rm, etc) are not tested
294 for p in requiredtools:
294 for p in requiredtools:
295 if os.name == 'nt':
295 if os.name == 'nt':
296 p += '.exe'
296 p += '.exe'
297 found = findprogram(p)
297 found = findprogram(p)
298 if found:
298 if found:
299 vlog("# Found prerequisite", p, "at", found)
299 vlog("# Found prerequisite", p, "at", found)
300 else:
300 else:
301 print "WARNING: Did not find prerequisite tool: "+p
301 print "WARNING: Did not find prerequisite tool: "+p
302
302
303 def killdaemons():
303 def killdaemons():
304 # Kill off any leftover daemon processes
304 # Kill off any leftover daemon processes
305 try:
305 try:
306 fp = open(DAEMON_PIDS)
306 fp = open(DAEMON_PIDS)
307 for line in fp:
307 for line in fp:
308 try:
308 try:
309 pid = int(line)
309 pid = int(line)
310 except ValueError:
310 except ValueError:
311 continue
311 continue
312 try:
312 try:
313 os.kill(pid, 0)
313 os.kill(pid, 0)
314 vlog('# Killing daemon process %d' % pid)
314 vlog('# Killing daemon process %d' % pid)
315 os.kill(pid, signal.SIGTERM)
315 os.kill(pid, signal.SIGTERM)
316 time.sleep(0.25)
316 time.sleep(0.25)
317 os.kill(pid, 0)
317 os.kill(pid, 0)
318 vlog('# Daemon process %d is stuck - really killing it' % pid)
318 vlog('# Daemon process %d is stuck - really killing it' % pid)
319 os.kill(pid, signal.SIGKILL)
319 os.kill(pid, signal.SIGKILL)
320 except OSError, err:
320 except OSError, err:
321 if err.errno != errno.ESRCH:
321 if err.errno != errno.ESRCH:
322 raise
322 raise
323 fp.close()
323 fp.close()
324 os.unlink(DAEMON_PIDS)
324 os.unlink(DAEMON_PIDS)
325 except IOError:
325 except IOError:
326 pass
326 pass
327
327
328 def cleanup(options):
328 def cleanup(options):
329 if not options.keep_tmpdir:
329 if not options.keep_tmpdir:
330 vlog("# Cleaning up HGTMP", HGTMP)
330 vlog("# Cleaning up HGTMP", HGTMP)
331 shutil.rmtree(HGTMP, True)
331 shutil.rmtree(HGTMP, True)
332
332
333 def usecorrectpython():
333 def usecorrectpython():
334 # some tests run python interpreter. they must use same
334 # some tests run python interpreter. they must use same
335 # interpreter we use or bad things will happen.
335 # interpreter we use or bad things will happen.
336 exedir, exename = os.path.split(sys.executable)
336 exedir, exename = os.path.split(sys.executable)
337 if exename == 'python':
337 if exename == 'python':
338 path = findprogram('python')
338 path = findprogram('python')
339 if os.path.dirname(path) == exedir:
339 if os.path.dirname(path) == exedir:
340 return
340 return
341 vlog('# Making python executable in test path use correct Python')
341 vlog('# Making python executable in test path use correct Python')
342 mypython = os.path.join(BINDIR, 'python')
342 mypython = os.path.join(BINDIR, 'python')
343 try:
343 try:
344 os.symlink(sys.executable, mypython)
344 os.symlink(sys.executable, mypython)
345 except AttributeError:
345 except AttributeError:
346 # windows fallback
346 # windows fallback
347 shutil.copyfile(sys.executable, mypython)
347 shutil.copyfile(sys.executable, mypython)
348 shutil.copymode(sys.executable, mypython)
348 shutil.copymode(sys.executable, mypython)
349
349
350 def installhg(options):
350 def installhg(options):
351 vlog("# Performing temporary installation of HG")
351 vlog("# Performing temporary installation of HG")
352 installerrs = os.path.join("tests", "install.err")
352 installerrs = os.path.join("tests", "install.err")
353 pure = options.pure and "--pure" or ""
353 pure = options.pure and "--pure" or ""
354
354
355 # Run installer in hg root
355 # Run installer in hg root
356 script = os.path.realpath(sys.argv[0])
356 script = os.path.realpath(sys.argv[0])
357 hgroot = os.path.dirname(os.path.dirname(script))
357 hgroot = os.path.dirname(os.path.dirname(script))
358 os.chdir(hgroot)
358 os.chdir(hgroot)
359 nohome = '--home=""'
359 nohome = '--home=""'
360 if os.name == 'nt':
360 if os.name == 'nt':
361 # The --home="" trick works only on OS where os.sep == '/'
361 # The --home="" trick works only on OS where os.sep == '/'
362 # because of a distutils convert_path() fast-path. Avoid it at
362 # because of a distutils convert_path() fast-path. Avoid it at
363 # least on Windows for now, deal with .pydistutils.cfg bugs
363 # least on Windows for now, deal with .pydistutils.cfg bugs
364 # when they happen.
364 # when they happen.
365 nohome = ''
365 nohome = ''
366 cmd = ('%s setup.py %s clean --all'
366 cmd = ('%s setup.py %s clean --all'
367 ' build --build-base="%s"'
367 ' build --build-base="%s"'
368 ' install --force --prefix="%s" --install-lib="%s"'
368 ' install --force --prefix="%s" --install-lib="%s"'
369 ' --install-scripts="%s" %s >%s 2>&1'
369 ' --install-scripts="%s" %s >%s 2>&1'
370 % (sys.executable, pure, os.path.join(HGTMP, "build"),
370 % (sys.executable, pure, os.path.join(HGTMP, "build"),
371 INST, PYTHONDIR, BINDIR, nohome, installerrs))
371 INST, PYTHONDIR, BINDIR, nohome, installerrs))
372 vlog("# Running", cmd)
372 vlog("# Running", cmd)
373 if os.system(cmd) == 0:
373 if os.system(cmd) == 0:
374 if not options.verbose:
374 if not options.verbose:
375 os.remove(installerrs)
375 os.remove(installerrs)
376 else:
376 else:
377 f = open(installerrs)
377 f = open(installerrs)
378 for line in f:
378 for line in f:
379 print line,
379 print line,
380 f.close()
380 f.close()
381 sys.exit(1)
381 sys.exit(1)
382 os.chdir(TESTDIR)
382 os.chdir(TESTDIR)
383
383
384 usecorrectpython()
384 usecorrectpython()
385
385
386 vlog("# Installing dummy diffstat")
386 vlog("# Installing dummy diffstat")
387 f = open(os.path.join(BINDIR, 'diffstat'), 'w')
387 f = open(os.path.join(BINDIR, 'diffstat'), 'w')
388 f.write('#!' + sys.executable + '\n'
388 f.write('#!' + sys.executable + '\n'
389 'import sys\n'
389 'import sys\n'
390 'files = 0\n'
390 'files = 0\n'
391 'for line in sys.stdin:\n'
391 'for line in sys.stdin:\n'
392 ' if line.startswith("diff "):\n'
392 ' if line.startswith("diff "):\n'
393 ' files += 1\n'
393 ' files += 1\n'
394 'sys.stdout.write("files patched: %d\\n" % files)\n')
394 'sys.stdout.write("files patched: %d\\n" % files)\n')
395 f.close()
395 f.close()
396 os.chmod(os.path.join(BINDIR, 'diffstat'), 0700)
396 os.chmod(os.path.join(BINDIR, 'diffstat'), 0700)
397
397
398 if options.py3k_warnings and not options.anycoverage:
398 if options.py3k_warnings and not options.anycoverage:
399 vlog("# Updating hg command to enable Py3k Warnings switch")
399 vlog("# Updating hg command to enable Py3k Warnings switch")
400 f = open(os.path.join(BINDIR, 'hg'), 'r')
400 f = open(os.path.join(BINDIR, 'hg'), 'r')
401 lines = [line.rstrip() for line in f]
401 lines = [line.rstrip() for line in f]
402 lines[0] += ' -3'
402 lines[0] += ' -3'
403 f.close()
403 f.close()
404 f = open(os.path.join(BINDIR, 'hg'), 'w')
404 f = open(os.path.join(BINDIR, 'hg'), 'w')
405 for line in lines:
405 for line in lines:
406 f.write(line + '\n')
406 f.write(line + '\n')
407 f.close()
407 f.close()
408
408
409 if options.anycoverage:
409 if options.anycoverage:
410 custom = os.path.join(TESTDIR, 'sitecustomize.py')
410 custom = os.path.join(TESTDIR, 'sitecustomize.py')
411 target = os.path.join(PYTHONDIR, 'sitecustomize.py')
411 target = os.path.join(PYTHONDIR, 'sitecustomize.py')
412 vlog('# Installing coverage trigger to %s' % target)
412 vlog('# Installing coverage trigger to %s' % target)
413 shutil.copyfile(custom, target)
413 shutil.copyfile(custom, target)
414 rc = os.path.join(TESTDIR, '.coveragerc')
414 rc = os.path.join(TESTDIR, '.coveragerc')
415 vlog('# Installing coverage rc to %s' % rc)
415 vlog('# Installing coverage rc to %s' % rc)
416 os.environ['COVERAGE_PROCESS_START'] = rc
416 os.environ['COVERAGE_PROCESS_START'] = rc
417 fn = os.path.join(INST, '..', '.coverage')
417 fn = os.path.join(INST, '..', '.coverage')
418 os.environ['COVERAGE_FILE'] = fn
418 os.environ['COVERAGE_FILE'] = fn
419
419
420 def outputcoverage(options):
420 def outputcoverage(options):
421
421
422 vlog('# Producing coverage report')
422 vlog('# Producing coverage report')
423 os.chdir(PYTHONDIR)
423 os.chdir(PYTHONDIR)
424
424
425 def covrun(*args):
425 def covrun(*args):
426 cmd = 'coverage %s' % ' '.join(args)
426 cmd = 'coverage %s' % ' '.join(args)
427 vlog('# Running: %s' % cmd)
427 vlog('# Running: %s' % cmd)
428 os.system(cmd)
428 os.system(cmd)
429
429
430 if options.child:
430 if options.child:
431 return
431 return
432
432
433 covrun('-c')
433 covrun('-c')
434 omit = ','.join([BINDIR, TESTDIR])
434 omit = ','.join([BINDIR, TESTDIR])
435 covrun('-i', '-r', '"--omit=%s"' % omit) # report
435 covrun('-i', '-r', '"--omit=%s"' % omit) # report
436 if options.annotate:
436 if options.annotate:
437 adir = os.path.join(TESTDIR, 'annotated')
437 adir = os.path.join(TESTDIR, 'annotated')
438 if not os.path.isdir(adir):
438 if not os.path.isdir(adir):
439 os.mkdir(adir)
439 os.mkdir(adir)
440 covrun('-i', '-a', '"--directory=%s"' % adir, '"--omit=%s"' % omit)
440 covrun('-i', '-a', '"--directory=%s"' % adir, '"--omit=%s"' % omit)
441
441
442 class Timeout(Exception):
442 class Timeout(Exception):
443 pass
443 pass
444
444
445 def alarmed(signum, frame):
445 def alarmed(signum, frame):
446 raise Timeout
446 raise Timeout
447
447
448 def pytest(test, options, replacements):
448 def pytest(test, options, replacements):
449 py3kswitch = options.py3k_warnings and ' -3' or ''
449 py3kswitch = options.py3k_warnings and ' -3' or ''
450 cmd = '%s%s "%s"' % (PYTHON, py3kswitch, test)
450 cmd = '%s%s "%s"' % (PYTHON, py3kswitch, test)
451 vlog("# Running", cmd)
451 vlog("# Running", cmd)
452 return run(cmd, options, replacements)
452 return run(cmd, options, replacements)
453
453
454 def shtest(test, options, replacements):
454 def shtest(test, options, replacements):
455 cmd = '"%s"' % test
455 cmd = '"%s"' % test
456 vlog("# Running", cmd)
456 vlog("# Running", cmd)
457 return run(cmd, options, replacements)
457 return run(cmd, options, replacements)
458
458
459 needescape = re.compile(r'[\x00-\x08\x0b-\x1f\x7f-\xff]').search
459 needescape = re.compile(r'[\x00-\x08\x0b-\x1f\x7f-\xff]').search
460 escapesub = re.compile(r'[\x00-\x08\x0b-\x1f\\\x7f-\xff]').sub
460 escapesub = re.compile(r'[\x00-\x08\x0b-\x1f\\\x7f-\xff]').sub
461 escapemap = dict((chr(i), r'\x%02x' % i) for i in range(256))
461 escapemap = dict((chr(i), r'\x%02x' % i) for i in range(256))
462 escapemap.update({'\\': '\\\\', '\r': r'\r'})
462 escapemap.update({'\\': '\\\\', '\r': r'\r'})
463 def escapef(m):
463 def escapef(m):
464 return escapemap[m.group(0)]
464 return escapemap[m.group(0)]
465 def stringescape(s):
465 def stringescape(s):
466 return escapesub(escapef, s)
466 return escapesub(escapef, s)
467
467
468 def tsttest(test, options, replacements):
468 def tsttest(test, options, replacements):
469 t = open(test)
469 t = open(test)
470 out = []
470 out = []
471 script = []
471 script = []
472 salt = "SALT" + str(time.time())
472 salt = "SALT" + str(time.time())
473
473
474 pos = prepos = -1
474 pos = prepos = -1
475 after = {}
475 after = {}
476 expected = {}
476 expected = {}
477 for n, l in enumerate(t):
477 for n, l in enumerate(t):
478 if not l.endswith('\n'):
478 if not l.endswith('\n'):
479 l += '\n'
479 l += '\n'
480 if l.startswith(' $ '): # commands
480 if l.startswith(' $ '): # commands
481 after.setdefault(pos, []).append(l)
481 after.setdefault(pos, []).append(l)
482 prepos = pos
482 prepos = pos
483 pos = n
483 pos = n
484 script.append('echo %s %s $?\n' % (salt, n))
484 script.append('echo %s %s $?\n' % (salt, n))
485 script.append(l[4:])
485 script.append(l[4:])
486 elif l.startswith(' > '): # continuations
486 elif l.startswith(' > '): # continuations
487 after.setdefault(prepos, []).append(l)
487 after.setdefault(prepos, []).append(l)
488 script.append(l[4:])
488 script.append(l[4:])
489 elif l.startswith(' '): # results
489 elif l.startswith(' '): # results
490 # queue up a list of expected results
490 # queue up a list of expected results
491 expected.setdefault(pos, []).append(l[2:])
491 expected.setdefault(pos, []).append(l[2:])
492 else:
492 else:
493 # non-command/result - queue up for merged output
493 # non-command/result - queue up for merged output
494 after.setdefault(pos, []).append(l)
494 after.setdefault(pos, []).append(l)
495
495
496 t.close()
496 t.close()
497
497
498 script.append('echo %s %s $?\n' % (salt, n + 1))
498 script.append('echo %s %s $?\n' % (salt, n + 1))
499
499
500 fd, name = tempfile.mkstemp(suffix='hg-tst')
500 fd, name = tempfile.mkstemp(suffix='hg-tst')
501
501
502 try:
502 try:
503 for l in script:
503 for l in script:
504 os.write(fd, l)
504 os.write(fd, l)
505 os.close(fd)
505 os.close(fd)
506
506
507 cmd = '/bin/sh "%s"' % name
507 cmd = '/bin/sh "%s"' % name
508 vlog("# Running", cmd)
508 vlog("# Running", cmd)
509 exitcode, output = run(cmd, options, replacements)
509 exitcode, output = run(cmd, options, replacements)
510 # do not merge output if skipped, return hghave message instead
510 # do not merge output if skipped, return hghave message instead
511 # similarly, with --debug, output is None
511 # similarly, with --debug, output is None
512 if exitcode == SKIPPED_STATUS or output is None:
512 if exitcode == SKIPPED_STATUS or output is None:
513 return exitcode, output
513 return exitcode, output
514 finally:
514 finally:
515 os.remove(name)
515 os.remove(name)
516
516
517 def rematch(el, l):
517 def rematch(el, l):
518 try:
518 try:
519 # ensure that the regex matches to the end of the string
519 # ensure that the regex matches to the end of the string
520 return re.match(el + r'\Z', l)
520 return re.match(el + r'\Z', l)
521 except re.error:
521 except re.error:
522 # el is an invalid regex
522 # el is an invalid regex
523 return False
523 return False
524
524
525 def globmatch(el, l):
525 def globmatch(el, l):
526 # The only supported special characters are * and ?. Escaping is
526 # The only supported special characters are * and ?. Escaping is
527 # supported.
527 # supported.
528 i, n = 0, len(el)
528 i, n = 0, len(el)
529 res = ''
529 res = ''
530 while i < n:
530 while i < n:
531 c = el[i]
531 c = el[i]
532 i += 1
532 i += 1
533 if c == '\\' and el[i] in '*?\\':
533 if c == '\\' and el[i] in '*?\\':
534 res += el[i - 1:i + 1]
534 res += el[i - 1:i + 1]
535 i += 1
535 i += 1
536 elif c == '*':
536 elif c == '*':
537 res += '.*'
537 res += '.*'
538 elif c == '?':
538 elif c == '?':
539 res += '.'
539 res += '.'
540 else:
540 else:
541 res += re.escape(c)
541 res += re.escape(c)
542 return rematch(res, l)
542 return rematch(res, l)
543
543
544 pos = -1
544 pos = -1
545 postout = []
545 postout = []
546 ret = 0
546 ret = 0
547 for n, l in enumerate(output):
547 for n, l in enumerate(output):
548 lout, lcmd = l, None
548 lout, lcmd = l, None
549 if salt in l:
549 if salt in l:
550 lout, lcmd = l.split(salt, 1)
550 lout, lcmd = l.split(salt, 1)
551
551
552 if lout:
552 if lout:
553 if lcmd:
553 if lcmd:
554 lout += ' (no-eol)\n'
554 lout += ' (no-eol)\n'
555
555
556 el = None
556 el = None
557 if pos in expected and expected[pos]:
557 if pos in expected and expected[pos]:
558 el = expected[pos].pop(0)
558 el = expected[pos].pop(0)
559
559
560 if el == lout: # perfect match (fast)
560 if el == lout: # perfect match (fast)
561 postout.append(" " + lout)
561 postout.append(" " + lout)
562 elif (el and
562 elif (el and
563 (el.endswith(" (re)\n") and rematch(el[:-6] + '\n', lout) or
563 (el.endswith(" (re)\n") and rematch(el[:-6] + '\n', lout) or
564 el.endswith(" (glob)\n") and globmatch(el[:-8] + '\n', lout)
564 el.endswith(" (glob)\n") and globmatch(el[:-8] + '\n', lout)
565 or el.endswith(" (esc)\n") and
565 or el.endswith(" (esc)\n") and
566 el.decode('string-escape') == l)):
566 el.decode('string-escape') == l)):
567 postout.append(" " + el) # fallback regex/glob/esc match
567 postout.append(" " + el) # fallback regex/glob/esc match
568 else:
568 else:
569 if needescape(lout):
569 if needescape(lout):
570 lout = stringescape(lout.rstrip('\n')) + " (esc)\n"
570 lout = stringescape(lout.rstrip('\n')) + " (esc)\n"
571 postout.append(" " + lout) # let diff deal with it
571 postout.append(" " + lout) # let diff deal with it
572
572
573 if lcmd:
573 if lcmd:
574 # add on last return code
574 # add on last return code
575 ret = int(lcmd.split()[1])
575 ret = int(lcmd.split()[1])
576 if ret != 0:
576 if ret != 0:
577 postout.append(" [%s]\n" % ret)
577 postout.append(" [%s]\n" % ret)
578 if pos in after:
578 if pos in after:
579 postout += after.pop(pos)
579 postout += after.pop(pos)
580 pos = int(lcmd.split()[0])
580 pos = int(lcmd.split()[0])
581
581
582 if pos in after:
582 if pos in after:
583 postout += after.pop(pos)
583 postout += after.pop(pos)
584
584
585 return exitcode, postout
585 return exitcode, postout
586
586
587 wifexited = getattr(os, "WIFEXITED", lambda x: False)
587 wifexited = getattr(os, "WIFEXITED", lambda x: False)
588 def run(cmd, options, replacements):
588 def run(cmd, options, replacements):
589 """Run command in a sub-process, capturing the output (stdout and stderr).
589 """Run command in a sub-process, capturing the output (stdout and stderr).
590 Return a tuple (exitcode, output). output is None in debug mode."""
590 Return a tuple (exitcode, output). output is None in debug mode."""
591 # TODO: Use subprocess.Popen if we're running on Python 2.4
591 # TODO: Use subprocess.Popen if we're running on Python 2.4
592 if options.debug:
592 if options.debug:
593 proc = subprocess.Popen(cmd, shell=True)
593 proc = subprocess.Popen(cmd, shell=True)
594 ret = proc.wait()
594 ret = proc.wait()
595 return (ret, None)
595 return (ret, None)
596
596
597 if os.name == 'nt' or sys.platform.startswith('java'):
597 if os.name == 'nt' or sys.platform.startswith('java'):
598 tochild, fromchild = os.popen4(cmd)
598 tochild, fromchild = os.popen4(cmd)
599 tochild.close()
599 tochild.close()
600 output = fromchild.read()
600 output = fromchild.read()
601 ret = fromchild.close()
601 ret = fromchild.close()
602 if ret is None:
602 if ret is None:
603 ret = 0
603 ret = 0
604 else:
604 else:
605 proc = Popen4(cmd)
605 proc = Popen4(cmd)
606 def cleanup():
606 def cleanup():
607 os.kill(proc.pid, signal.SIGTERM)
607 os.kill(proc.pid, signal.SIGTERM)
608 ret = proc.wait()
608 ret = proc.wait()
609 if ret == 0:
609 if ret == 0:
610 ret = signal.SIGTERM << 8
610 ret = signal.SIGTERM << 8
611 killdaemons()
611 killdaemons()
612 return ret
612 return ret
613
613
614 try:
614 try:
615 output = ''
615 output = ''
616 proc.tochild.close()
616 proc.tochild.close()
617 output = proc.fromchild.read()
617 output = proc.fromchild.read()
618 ret = proc.wait()
618 ret = proc.wait()
619 if wifexited(ret):
619 if wifexited(ret):
620 ret = os.WEXITSTATUS(ret)
620 ret = os.WEXITSTATUS(ret)
621 except Timeout:
621 except Timeout:
622 vlog('# Process %d timed out - killing it' % proc.pid)
622 vlog('# Process %d timed out - killing it' % proc.pid)
623 cleanup()
623 cleanup()
624 ret = 'timeout'
624 ret = 'timeout'
625 output += ("\n### Abort: timeout after %d seconds.\n"
625 output += ("\n### Abort: timeout after %d seconds.\n"
626 % options.timeout)
626 % options.timeout)
627 except KeyboardInterrupt:
627 except KeyboardInterrupt:
628 vlog('# Handling keyboard interrupt')
628 vlog('# Handling keyboard interrupt')
629 cleanup()
629 cleanup()
630 raise
630 raise
631
631
632 for s, r in replacements:
632 for s, r in replacements:
633 output = re.sub(s, r, output)
633 output = re.sub(s, r, output)
634 return ret, splitnewlines(output)
634 return ret, splitnewlines(output)
635
635
636 def runone(options, test, skips, fails, ignores):
636 def runone(options, test, skips, passes, fails, ignores):
637 '''tristate output:
637 '''tristate output:
638 None -> skipped
638 None -> skipped
639 True -> passed
639 True -> passed
640 False -> failed'''
640 False -> failed'''
641
641
642 testpath = os.path.join(TESTDIR, test)
642 testpath = os.path.join(TESTDIR, test)
643
643
644 def skip(msg):
644 def skip(msg):
645 if not options.verbose:
645 if not options.verbose:
646 skips.append((test, msg))
646 skips.append((test, msg))
647 else:
647 else:
648 print "\nSkipping %s: %s" % (testpath, msg)
648 print "\nSkipping %s: %s" % (testpath, msg)
649 return None
649 return None
650
650
651 def fail(msg, ret):
651 def fail(msg, ret):
652 if not options.nodiff:
652 if not options.nodiff:
653 print "\nERROR: %s %s" % (testpath, msg)
653 print "\nERROR: %s %s" % (testpath, msg)
654 if not ret and options.interactive:
654 if not ret and options.interactive:
655 print "Accept this change? [n] ",
655 print "Accept this change? [n] ",
656 answer = sys.stdin.readline().strip()
656 answer = sys.stdin.readline().strip()
657 if answer.lower() in "y yes".split():
657 if answer.lower() in "y yes".split():
658 if test.endswith(".t"):
658 if test.endswith(".t"):
659 rename(test + ".err", test)
659 rename(test + ".err", test)
660 else:
660 else:
661 rename(test + ".err", test + ".out")
661 rename(test + ".err", test + ".out")
662 return
662 return
663 fails.append((test, msg))
663 fails.append((test, msg))
664
664
665 if (test.startswith("test-") and '~' not in test and
665 if (test.startswith("test-") and '~' not in test and
666 ('.' not in test or test.endswith('.py') or
666 ('.' not in test or test.endswith('.py') or
667 test.endswith('.bat') or test.endswith('.t'))):
667 test.endswith('.bat') or test.endswith('.t'))):
668 if not os.path.exists(test):
668 if not os.path.exists(test):
669 skip("doesn't exist")
669 skip("doesn't exist")
670 return None
670 return None
671 else:
671 else:
672 return None # not a supported test, don't record
672 return None # not a supported test, don't record
673
673
674 if options.keywords:
674 if options.keywords:
675 fp = open(test)
675 fp = open(test)
676 t = fp.read().lower() + test.lower()
676 t = fp.read().lower() + test.lower()
677 fp.close()
677 fp.close()
678 for k in options.keywords.lower().split():
678 for k in options.keywords.lower().split():
679 if k in t:
679 if k in t:
680 break
680 break
681 else:
681 else:
682 ignores.append((test, "doesn't match keyword"))
682 ignores.append((test, "doesn't match keyword"))
683 return None
683 return None
684
684
685 vlog("# Test", test)
685 vlog("# Test", test)
686
686
687 # create a fresh hgrc
687 # create a fresh hgrc
688 hgrc = open(HGRCPATH, 'w+')
688 hgrc = open(HGRCPATH, 'w+')
689 hgrc.write('[ui]\n')
689 hgrc.write('[ui]\n')
690 hgrc.write('slash = True\n')
690 hgrc.write('slash = True\n')
691 hgrc.write('[defaults]\n')
691 hgrc.write('[defaults]\n')
692 hgrc.write('backout = -d "0 0"\n')
692 hgrc.write('backout = -d "0 0"\n')
693 hgrc.write('commit = -d "0 0"\n')
693 hgrc.write('commit = -d "0 0"\n')
694 hgrc.write('tag = -d "0 0"\n')
694 hgrc.write('tag = -d "0 0"\n')
695 if options.inotify:
695 if options.inotify:
696 hgrc.write('[extensions]\n')
696 hgrc.write('[extensions]\n')
697 hgrc.write('inotify=\n')
697 hgrc.write('inotify=\n')
698 hgrc.write('[inotify]\n')
698 hgrc.write('[inotify]\n')
699 hgrc.write('pidfile=%s\n' % DAEMON_PIDS)
699 hgrc.write('pidfile=%s\n' % DAEMON_PIDS)
700 hgrc.write('appendpid=True\n')
700 hgrc.write('appendpid=True\n')
701 hgrc.close()
701 hgrc.close()
702
702
703 ref = os.path.join(TESTDIR, test+".out")
703 ref = os.path.join(TESTDIR, test+".out")
704 err = os.path.join(TESTDIR, test+".err")
704 err = os.path.join(TESTDIR, test+".err")
705 if os.path.exists(err):
705 if os.path.exists(err):
706 os.remove(err) # Remove any previous output files
706 os.remove(err) # Remove any previous output files
707 try:
707 try:
708 tf = open(testpath)
708 tf = open(testpath)
709 firstline = tf.readline().rstrip()
709 firstline = tf.readline().rstrip()
710 tf.close()
710 tf.close()
711 except:
711 except:
712 firstline = ''
712 firstline = ''
713 lctest = test.lower()
713 lctest = test.lower()
714
714
715 if lctest.endswith('.py') or firstline == '#!/usr/bin/env python':
715 if lctest.endswith('.py') or firstline == '#!/usr/bin/env python':
716 runner = pytest
716 runner = pytest
717 elif lctest.endswith('.t'):
717 elif lctest.endswith('.t'):
718 runner = tsttest
718 runner = tsttest
719 ref = testpath
719 ref = testpath
720 else:
720 else:
721 # do not try to run non-executable programs
721 # do not try to run non-executable programs
722 if not os.access(testpath, os.X_OK):
722 if not os.access(testpath, os.X_OK):
723 return skip("not executable")
723 return skip("not executable")
724 runner = shtest
724 runner = shtest
725
725
726 # Make a tmp subdirectory to work in
726 # Make a tmp subdirectory to work in
727 testtmp = os.environ["TESTTMP"] = os.environ["HOME"] = \
727 testtmp = os.environ["TESTTMP"] = os.environ["HOME"] = \
728 os.path.join(HGTMP, test)
728 os.path.join(HGTMP, test)
729
729
730 os.mkdir(testtmp)
730 os.mkdir(testtmp)
731 os.chdir(testtmp)
731 os.chdir(testtmp)
732
732
733 if options.timeout > 0:
733 if options.timeout > 0:
734 signal.alarm(options.timeout)
734 signal.alarm(options.timeout)
735
735
736 ret, out = runner(testpath, options, [
736 ret, out = runner(testpath, options, [
737 (re.escape(testtmp), '$TESTTMP'),
737 (re.escape(testtmp), '$TESTTMP'),
738 (r':%s\b' % options.port, ':$HGPORT'),
738 (r':%s\b' % options.port, ':$HGPORT'),
739 (r':%s\b' % (options.port + 1), ':$HGPORT1'),
739 (r':%s\b' % (options.port + 1), ':$HGPORT1'),
740 (r':%s\b' % (options.port + 2), ':$HGPORT2'),
740 (r':%s\b' % (options.port + 2), ':$HGPORT2'),
741 ])
741 ])
742 vlog("# Ret was:", ret)
742 vlog("# Ret was:", ret)
743
743
744 if options.timeout > 0:
744 if options.timeout > 0:
745 signal.alarm(0)
745 signal.alarm(0)
746
746
747 mark = '.'
747 mark = '.'
748 if ret == 0:
749 passes.append(test)
748
750
749 skipped = (ret == SKIPPED_STATUS)
751 skipped = (ret == SKIPPED_STATUS)
750
752
751 # If we're not in --debug mode and reference output file exists,
753 # If we're not in --debug mode and reference output file exists,
752 # check test output against it.
754 # check test output against it.
753 if options.debug:
755 if options.debug:
754 refout = None # to match "out is None"
756 refout = None # to match "out is None"
755 elif os.path.exists(ref):
757 elif os.path.exists(ref):
756 f = open(ref, "r")
758 f = open(ref, "r")
757 refout = splitnewlines(f.read())
759 refout = splitnewlines(f.read())
758 f.close()
760 f.close()
759 else:
761 else:
760 refout = []
762 refout = []
761
763
762 if (ret != 0 or out != refout) and not skipped and not options.debug:
764 if (ret != 0 or out != refout) and not skipped and not options.debug:
763 # Save errors to a file for diagnosis
765 # Save errors to a file for diagnosis
764 f = open(err, "wb")
766 f = open(err, "wb")
765 for line in out:
767 for line in out:
766 f.write(line)
768 f.write(line)
767 f.close()
769 f.close()
768
770
769 if skipped:
771 if skipped:
770 mark = 's'
772 mark = 's'
771 if out is None: # debug mode: nothing to parse
773 if out is None: # debug mode: nothing to parse
772 missing = ['unknown']
774 missing = ['unknown']
773 failed = None
775 failed = None
774 else:
776 else:
775 missing, failed = parsehghaveoutput(out)
777 missing, failed = parsehghaveoutput(out)
776 if not missing:
778 if not missing:
777 missing = ['irrelevant']
779 missing = ['irrelevant']
778 if failed:
780 if failed:
779 fail("hghave failed checking for %s" % failed[-1], ret)
781 fail("hghave failed checking for %s" % failed[-1], ret)
780 skipped = False
782 skipped = False
781 else:
783 else:
782 skip(missing[-1])
784 skip(missing[-1])
783 elif out != refout:
785 elif out != refout:
784 mark = '!'
786 mark = '!'
785 if ret == 'timeout':
787 if ret == 'timeout':
786 fail("timed out", ret)
788 fail("timed out", ret)
787 elif ret:
789 elif ret:
788 fail("output changed and returned error code %d" % ret, ret)
790 fail("output changed and returned error code %d" % ret, ret)
789 else:
791 else:
790 fail("output changed", ret)
792 fail("output changed", ret)
791 if ret != 'timeout' and not options.nodiff:
793 if ret != 'timeout' and not options.nodiff:
792 if options.view:
794 if options.view:
793 os.system("%s %s %s" % (options.view, ref, err))
795 os.system("%s %s %s" % (options.view, ref, err))
794 else:
796 else:
795 showdiff(refout, out, ref, err)
797 showdiff(refout, out, ref, err)
796 ret = 1
798 ret = 1
797 elif ret:
799 elif ret:
798 mark = '!'
800 mark = '!'
799 fail("returned error code %d" % ret, ret)
801 fail("returned error code %d" % ret, ret)
800
802
801 if not options.verbose:
803 if not options.verbose:
802 sys.stdout.write(mark)
804 sys.stdout.write(mark)
803 sys.stdout.flush()
805 sys.stdout.flush()
804
806
805 killdaemons()
807 killdaemons()
806
808
807 os.chdir(TESTDIR)
809 os.chdir(TESTDIR)
808 if not options.keep_tmpdir:
810 if not options.keep_tmpdir:
809 shutil.rmtree(testtmp, True)
811 shutil.rmtree(testtmp, True)
810 if skipped:
812 if skipped:
811 return None
813 return None
812 return ret == 0
814 return ret == 0
813
815
814 _hgpath = None
816 _hgpath = None
815
817
816 def _gethgpath():
818 def _gethgpath():
817 """Return the path to the mercurial package that is actually found by
819 """Return the path to the mercurial package that is actually found by
818 the current Python interpreter."""
820 the current Python interpreter."""
819 global _hgpath
821 global _hgpath
820 if _hgpath is not None:
822 if _hgpath is not None:
821 return _hgpath
823 return _hgpath
822
824
823 cmd = '%s -c "import mercurial; print mercurial.__path__[0]"'
825 cmd = '%s -c "import mercurial; print mercurial.__path__[0]"'
824 pipe = os.popen(cmd % PYTHON)
826 pipe = os.popen(cmd % PYTHON)
825 try:
827 try:
826 _hgpath = pipe.read().strip()
828 _hgpath = pipe.read().strip()
827 finally:
829 finally:
828 pipe.close()
830 pipe.close()
829 return _hgpath
831 return _hgpath
830
832
831 def _checkhglib(verb):
833 def _checkhglib(verb):
832 """Ensure that the 'mercurial' package imported by python is
834 """Ensure that the 'mercurial' package imported by python is
833 the one we expect it to be. If not, print a warning to stderr."""
835 the one we expect it to be. If not, print a warning to stderr."""
834 expecthg = os.path.join(PYTHONDIR, 'mercurial')
836 expecthg = os.path.join(PYTHONDIR, 'mercurial')
835 actualhg = _gethgpath()
837 actualhg = _gethgpath()
836 if actualhg != expecthg:
838 if actualhg != expecthg:
837 sys.stderr.write('warning: %s with unexpected mercurial lib: %s\n'
839 sys.stderr.write('warning: %s with unexpected mercurial lib: %s\n'
838 ' (expected %s)\n'
840 ' (expected %s)\n'
839 % (verb, actualhg, expecthg))
841 % (verb, actualhg, expecthg))
840
842
841 def runchildren(options, tests):
843 def runchildren(options, tests):
842 if INST:
844 if INST:
843 installhg(options)
845 installhg(options)
844 _checkhglib("Testing")
846 _checkhglib("Testing")
845
847
846 optcopy = dict(options.__dict__)
848 optcopy = dict(options.__dict__)
847 optcopy['jobs'] = 1
849 optcopy['jobs'] = 1
848 del optcopy['blacklist']
850 del optcopy['blacklist']
849 if optcopy['with_hg'] is None:
851 if optcopy['with_hg'] is None:
850 optcopy['with_hg'] = os.path.join(BINDIR, "hg")
852 optcopy['with_hg'] = os.path.join(BINDIR, "hg")
851 optcopy.pop('anycoverage', None)
853 optcopy.pop('anycoverage', None)
852
854
853 opts = []
855 opts = []
854 for opt, value in optcopy.iteritems():
856 for opt, value in optcopy.iteritems():
855 name = '--' + opt.replace('_', '-')
857 name = '--' + opt.replace('_', '-')
856 if value is True:
858 if value is True:
857 opts.append(name)
859 opts.append(name)
858 elif value is not None:
860 elif value is not None:
859 opts.append(name + '=' + str(value))
861 opts.append(name + '=' + str(value))
860
862
861 tests.reverse()
863 tests.reverse()
862 jobs = [[] for j in xrange(options.jobs)]
864 jobs = [[] for j in xrange(options.jobs)]
863 while tests:
865 while tests:
864 for job in jobs:
866 for job in jobs:
865 if not tests:
867 if not tests:
866 break
868 break
867 job.append(tests.pop())
869 job.append(tests.pop())
868 fps = {}
870 fps = {}
869
871
870 for j, job in enumerate(jobs):
872 for j, job in enumerate(jobs):
871 if not job:
873 if not job:
872 continue
874 continue
873 rfd, wfd = os.pipe()
875 rfd, wfd = os.pipe()
874 childopts = ['--child=%d' % wfd, '--port=%d' % (options.port + j * 3)]
876 childopts = ['--child=%d' % wfd, '--port=%d' % (options.port + j * 3)]
875 childtmp = os.path.join(HGTMP, 'child%d' % j)
877 childtmp = os.path.join(HGTMP, 'child%d' % j)
876 childopts += ['--tmpdir', childtmp]
878 childopts += ['--tmpdir', childtmp]
877 cmdline = [PYTHON, sys.argv[0]] + opts + childopts + job
879 cmdline = [PYTHON, sys.argv[0]] + opts + childopts + job
878 vlog(' '.join(cmdline))
880 vlog(' '.join(cmdline))
879 fps[os.spawnvp(os.P_NOWAIT, cmdline[0], cmdline)] = os.fdopen(rfd, 'r')
881 fps[os.spawnvp(os.P_NOWAIT, cmdline[0], cmdline)] = os.fdopen(rfd, 'r')
880 os.close(wfd)
882 os.close(wfd)
881 signal.signal(signal.SIGINT, signal.SIG_IGN)
883 signal.signal(signal.SIGINT, signal.SIG_IGN)
882 failures = 0
884 failures = 0
883 tested, skipped, failed = 0, 0, 0
885 tested, skipped, failed = 0, 0, 0
884 skips = []
886 skips = []
885 fails = []
887 fails = []
886 while fps:
888 while fps:
887 pid, status = os.wait()
889 pid, status = os.wait()
888 fp = fps.pop(pid)
890 fp = fps.pop(pid)
889 l = fp.read().splitlines()
891 l = fp.read().splitlines()
890 try:
892 try:
891 test, skip, fail = map(int, l[:3])
893 test, skip, fail = map(int, l[:3])
892 except ValueError:
894 except ValueError:
893 test, skip, fail = 0, 0, 0
895 test, skip, fail = 0, 0, 0
894 split = -fail or len(l)
896 split = -fail or len(l)
895 for s in l[3:split]:
897 for s in l[3:split]:
896 skips.append(s.split(" ", 1))
898 skips.append(s.split(" ", 1))
897 for s in l[split:]:
899 for s in l[split:]:
898 fails.append(s.split(" ", 1))
900 fails.append(s.split(" ", 1))
899 tested += test
901 tested += test
900 skipped += skip
902 skipped += skip
901 failed += fail
903 failed += fail
902 vlog('pid %d exited, status %d' % (pid, status))
904 vlog('pid %d exited, status %d' % (pid, status))
903 failures |= status
905 failures |= status
904 print
906 print
905 if not options.noskips:
907 if not options.noskips:
906 for s in skips:
908 for s in skips:
907 print "Skipped %s: %s" % (s[0], s[1])
909 print "Skipped %s: %s" % (s[0], s[1])
908 for s in fails:
910 for s in fails:
909 print "Failed %s: %s" % (s[0], s[1])
911 print "Failed %s: %s" % (s[0], s[1])
910
912
911 _checkhglib("Tested")
913 _checkhglib("Tested")
912 print "# Ran %d tests, %d skipped, %d failed." % (
914 print "# Ran %d tests, %d skipped, %d failed." % (
913 tested, skipped, failed)
915 tested, skipped, failed)
914
916
915 if options.anycoverage:
917 if options.anycoverage:
916 outputcoverage(options)
918 outputcoverage(options)
917 sys.exit(failures != 0)
919 sys.exit(failures != 0)
918
920
919 def runtests(options, tests):
921 def runtests(options, tests):
920 global DAEMON_PIDS, HGRCPATH
922 global DAEMON_PIDS, HGRCPATH
921 DAEMON_PIDS = os.environ["DAEMON_PIDS"] = os.path.join(HGTMP, 'daemon.pids')
923 DAEMON_PIDS = os.environ["DAEMON_PIDS"] = os.path.join(HGTMP, 'daemon.pids')
922 HGRCPATH = os.environ["HGRCPATH"] = os.path.join(HGTMP, '.hgrc')
924 HGRCPATH = os.environ["HGRCPATH"] = os.path.join(HGTMP, '.hgrc')
923
925
924 try:
926 try:
925 if INST:
927 if INST:
926 installhg(options)
928 installhg(options)
927 _checkhglib("Testing")
929 _checkhglib("Testing")
928
930
929 if options.timeout > 0:
931 if options.timeout > 0:
930 try:
932 try:
931 signal.signal(signal.SIGALRM, alarmed)
933 signal.signal(signal.SIGALRM, alarmed)
932 vlog('# Running each test with %d second timeout' %
934 vlog('# Running each test with %d second timeout' %
933 options.timeout)
935 options.timeout)
934 except AttributeError:
936 except AttributeError:
935 print 'WARNING: cannot run tests with timeouts'
937 print 'WARNING: cannot run tests with timeouts'
936 options.timeout = 0
938 options.timeout = 0
937
939
938 tested = 0
939 failed = 0
940 skipped = 0
941
942 if options.restart:
940 if options.restart:
943 orig = list(tests)
941 orig = list(tests)
944 while tests:
942 while tests:
945 if os.path.exists(tests[0] + ".err"):
943 if os.path.exists(tests[0] + ".err"):
946 break
944 break
947 tests.pop(0)
945 tests.pop(0)
948 if not tests:
946 if not tests:
949 print "running all tests"
947 print "running all tests"
950 tests = orig
948 tests = orig
951
949
950 passes = []
952 skips = []
951 skips = []
953 fails = []
952 fails = []
954 ignores = []
953 ignores = []
955
954
956 for test in tests:
955 for test in tests:
957 if options.blacklist:
956 if options.blacklist:
958 filename = options.blacklist.get(test)
957 filename = options.blacklist.get(test)
959 if filename is not None:
958 if filename is not None:
960 skipped.append((test, "blacklisted (%s)" % filename))
959 skipped.append((test, "blacklisted (%s)" % filename))
961 skipped += 1
962 continue
960 continue
963
961
964 if options.retest and not os.path.exists(test + ".err"):
962 if options.retest and not os.path.exists(test + ".err"):
965 ignores.append((test, "not retesting"))
963 ignores.append((test, "not retesting"))
966 continue
964 continue
967
965
968 ret = runone(options, test, skips, fails, ignores)
966 ret = runone(options, test, skips, passes, fails, ignores)
969 if ret is None:
967 if options.first and ret is not None and not ret:
970 skipped += 1
968 break
971 elif not ret:
972 failed += 1
973 if options.first:
974 break
975 tested += 1
976
969
977 if options.child:
970 if options.child:
978 fp = os.fdopen(options.child, 'w')
971 fp = os.fdopen(options.child, 'w')
979 fp.write('%d\n%d\n%d\n' % (tested, skipped, failed))
972 fp.write('%d\n%d\n%d\n' % (tested, skipped, failed))
980 for s in skips:
973 for s in skips:
981 fp.write("%s %s\n" % s)
974 fp.write("%s %s\n" % s)
982 for s in fails:
975 for s in fails:
983 fp.write("%s %s\n" % s)
976 fp.write("%s %s\n" % s)
984 fp.close()
977 fp.close()
985 else:
978 else:
986 print
979 print
987 for s in skips:
980 for s in skips:
988 print "Skipped %s: %s" % s
981 print "Skipped %s: %s" % s
989 for s in fails:
982 for s in fails:
990 print "Failed %s: %s" % s
983 print "Failed %s: %s" % s
991 _checkhglib("Tested")
984 _checkhglib("Tested")
992 print "# Ran %d tests, %d skipped, %d failed." % (
985 print "# Ran %d tests, %d skipped, %d failed." % (
993 tested, len(skips) + len(ignores), failed)
986 len(passes) + len(fails), len(skips) + len(ignores), len(fails))
994
987
995 if options.anycoverage:
988 if options.anycoverage:
996 outputcoverage(options)
989 outputcoverage(options)
997 except KeyboardInterrupt:
990 except KeyboardInterrupt:
998 failed = True
991 failed = True
999 print "\ninterrupted!"
992 print "\ninterrupted!"
1000
993
1001 if failed:
994 if fails:
1002 sys.exit(1)
995 sys.exit(1)
1003
996
1004 def main():
997 def main():
1005 (options, args) = parseargs()
998 (options, args) = parseargs()
1006 if not options.child:
999 if not options.child:
1007 os.umask(022)
1000 os.umask(022)
1008
1001
1009 checktools()
1002 checktools()
1010
1003
1011 if len(args) == 0:
1004 if len(args) == 0:
1012 args = os.listdir(".")
1005 args = os.listdir(".")
1013 args.sort()
1006 args.sort()
1014
1007
1015 tests = args
1008 tests = args
1016
1009
1017 # Reset some environment variables to well-known values so that
1010 # Reset some environment variables to well-known values so that
1018 # the tests produce repeatable output.
1011 # the tests produce repeatable output.
1019 os.environ['LANG'] = os.environ['LC_ALL'] = os.environ['LANGUAGE'] = 'C'
1012 os.environ['LANG'] = os.environ['LC_ALL'] = os.environ['LANGUAGE'] = 'C'
1020 os.environ['TZ'] = 'GMT'
1013 os.environ['TZ'] = 'GMT'
1021 os.environ["EMAIL"] = "Foo Bar <foo.bar@example.com>"
1014 os.environ["EMAIL"] = "Foo Bar <foo.bar@example.com>"
1022 os.environ['CDPATH'] = ''
1015 os.environ['CDPATH'] = ''
1023 os.environ['COLUMNS'] = '80'
1016 os.environ['COLUMNS'] = '80'
1024 os.environ['GREP_OPTIONS'] = ''
1017 os.environ['GREP_OPTIONS'] = ''
1025 os.environ['http_proxy'] = ''
1018 os.environ['http_proxy'] = ''
1026
1019
1027 # unset env related to hooks
1020 # unset env related to hooks
1028 for k in os.environ.keys():
1021 for k in os.environ.keys():
1029 if k.startswith('HG_'):
1022 if k.startswith('HG_'):
1030 # can't remove on solaris
1023 # can't remove on solaris
1031 os.environ[k] = ''
1024 os.environ[k] = ''
1032 del os.environ[k]
1025 del os.environ[k]
1033
1026
1034 global TESTDIR, HGTMP, INST, BINDIR, PYTHONDIR, COVERAGE_FILE
1027 global TESTDIR, HGTMP, INST, BINDIR, PYTHONDIR, COVERAGE_FILE
1035 TESTDIR = os.environ["TESTDIR"] = os.getcwd()
1028 TESTDIR = os.environ["TESTDIR"] = os.getcwd()
1036 if options.tmpdir:
1029 if options.tmpdir:
1037 options.keep_tmpdir = True
1030 options.keep_tmpdir = True
1038 tmpdir = options.tmpdir
1031 tmpdir = options.tmpdir
1039 if os.path.exists(tmpdir):
1032 if os.path.exists(tmpdir):
1040 # Meaning of tmpdir has changed since 1.3: we used to create
1033 # Meaning of tmpdir has changed since 1.3: we used to create
1041 # HGTMP inside tmpdir; now HGTMP is tmpdir. So fail if
1034 # HGTMP inside tmpdir; now HGTMP is tmpdir. So fail if
1042 # tmpdir already exists.
1035 # tmpdir already exists.
1043 sys.exit("error: temp dir %r already exists" % tmpdir)
1036 sys.exit("error: temp dir %r already exists" % tmpdir)
1044
1037
1045 # Automatically removing tmpdir sounds convenient, but could
1038 # Automatically removing tmpdir sounds convenient, but could
1046 # really annoy anyone in the habit of using "--tmpdir=/tmp"
1039 # really annoy anyone in the habit of using "--tmpdir=/tmp"
1047 # or "--tmpdir=$HOME".
1040 # or "--tmpdir=$HOME".
1048 #vlog("# Removing temp dir", tmpdir)
1041 #vlog("# Removing temp dir", tmpdir)
1049 #shutil.rmtree(tmpdir)
1042 #shutil.rmtree(tmpdir)
1050 os.makedirs(tmpdir)
1043 os.makedirs(tmpdir)
1051 else:
1044 else:
1052 tmpdir = tempfile.mkdtemp('', 'hgtests.')
1045 tmpdir = tempfile.mkdtemp('', 'hgtests.')
1053 HGTMP = os.environ['HGTMP'] = os.path.realpath(tmpdir)
1046 HGTMP = os.environ['HGTMP'] = os.path.realpath(tmpdir)
1054 DAEMON_PIDS = None
1047 DAEMON_PIDS = None
1055 HGRCPATH = None
1048 HGRCPATH = None
1056
1049
1057 os.environ["HGEDITOR"] = sys.executable + ' -c "import sys; sys.exit(0)"'
1050 os.environ["HGEDITOR"] = sys.executable + ' -c "import sys; sys.exit(0)"'
1058 os.environ["HGMERGE"] = "internal:merge"
1051 os.environ["HGMERGE"] = "internal:merge"
1059 os.environ["HGUSER"] = "test"
1052 os.environ["HGUSER"] = "test"
1060 os.environ["HGENCODING"] = "ascii"
1053 os.environ["HGENCODING"] = "ascii"
1061 os.environ["HGENCODINGMODE"] = "strict"
1054 os.environ["HGENCODINGMODE"] = "strict"
1062 os.environ["HGPORT"] = str(options.port)
1055 os.environ["HGPORT"] = str(options.port)
1063 os.environ["HGPORT1"] = str(options.port + 1)
1056 os.environ["HGPORT1"] = str(options.port + 1)
1064 os.environ["HGPORT2"] = str(options.port + 2)
1057 os.environ["HGPORT2"] = str(options.port + 2)
1065
1058
1066 if options.with_hg:
1059 if options.with_hg:
1067 INST = None
1060 INST = None
1068 BINDIR = os.path.dirname(os.path.realpath(options.with_hg))
1061 BINDIR = os.path.dirname(os.path.realpath(options.with_hg))
1069
1062
1070 # This looks redundant with how Python initializes sys.path from
1063 # This looks redundant with how Python initializes sys.path from
1071 # the location of the script being executed. Needed because the
1064 # the location of the script being executed. Needed because the
1072 # "hg" specified by --with-hg is not the only Python script
1065 # "hg" specified by --with-hg is not the only Python script
1073 # executed in the test suite that needs to import 'mercurial'
1066 # executed in the test suite that needs to import 'mercurial'
1074 # ... which means it's not really redundant at all.
1067 # ... which means it's not really redundant at all.
1075 PYTHONDIR = BINDIR
1068 PYTHONDIR = BINDIR
1076 else:
1069 else:
1077 INST = os.path.join(HGTMP, "install")
1070 INST = os.path.join(HGTMP, "install")
1078 BINDIR = os.environ["BINDIR"] = os.path.join(INST, "bin")
1071 BINDIR = os.environ["BINDIR"] = os.path.join(INST, "bin")
1079 PYTHONDIR = os.path.join(INST, "lib", "python")
1072 PYTHONDIR = os.path.join(INST, "lib", "python")
1080
1073
1081 os.environ["BINDIR"] = BINDIR
1074 os.environ["BINDIR"] = BINDIR
1082 os.environ["PYTHON"] = PYTHON
1075 os.environ["PYTHON"] = PYTHON
1083
1076
1084 if not options.child:
1077 if not options.child:
1085 path = [BINDIR] + os.environ["PATH"].split(os.pathsep)
1078 path = [BINDIR] + os.environ["PATH"].split(os.pathsep)
1086 os.environ["PATH"] = os.pathsep.join(path)
1079 os.environ["PATH"] = os.pathsep.join(path)
1087
1080
1088 # Include TESTDIR in PYTHONPATH so that out-of-tree extensions
1081 # Include TESTDIR in PYTHONPATH so that out-of-tree extensions
1089 # can run .../tests/run-tests.py test-foo where test-foo
1082 # can run .../tests/run-tests.py test-foo where test-foo
1090 # adds an extension to HGRC
1083 # adds an extension to HGRC
1091 pypath = [PYTHONDIR, TESTDIR]
1084 pypath = [PYTHONDIR, TESTDIR]
1092 # We have to augment PYTHONPATH, rather than simply replacing
1085 # We have to augment PYTHONPATH, rather than simply replacing
1093 # it, in case external libraries are only available via current
1086 # it, in case external libraries are only available via current
1094 # PYTHONPATH. (In particular, the Subversion bindings on OS X
1087 # PYTHONPATH. (In particular, the Subversion bindings on OS X
1095 # are in /opt/subversion.)
1088 # are in /opt/subversion.)
1096 oldpypath = os.environ.get(IMPL_PATH)
1089 oldpypath = os.environ.get(IMPL_PATH)
1097 if oldpypath:
1090 if oldpypath:
1098 pypath.append(oldpypath)
1091 pypath.append(oldpypath)
1099 os.environ[IMPL_PATH] = os.pathsep.join(pypath)
1092 os.environ[IMPL_PATH] = os.pathsep.join(pypath)
1100
1093
1101 COVERAGE_FILE = os.path.join(TESTDIR, ".coverage")
1094 COVERAGE_FILE = os.path.join(TESTDIR, ".coverage")
1102
1095
1103 vlog("# Using TESTDIR", TESTDIR)
1096 vlog("# Using TESTDIR", TESTDIR)
1104 vlog("# Using HGTMP", HGTMP)
1097 vlog("# Using HGTMP", HGTMP)
1105 vlog("# Using PATH", os.environ["PATH"])
1098 vlog("# Using PATH", os.environ["PATH"])
1106 vlog("# Using", IMPL_PATH, os.environ[IMPL_PATH])
1099 vlog("# Using", IMPL_PATH, os.environ[IMPL_PATH])
1107
1100
1108 try:
1101 try:
1109 if len(tests) > 1 and options.jobs > 1:
1102 if len(tests) > 1 and options.jobs > 1:
1110 runchildren(options, tests)
1103 runchildren(options, tests)
1111 else:
1104 else:
1112 runtests(options, tests)
1105 runtests(options, tests)
1113 finally:
1106 finally:
1114 time.sleep(1)
1107 time.sleep(1)
1115 cleanup(options)
1108 cleanup(options)
1116
1109
1117 if __name__ == '__main__':
1110 if __name__ == '__main__':
1118 main()
1111 main()
General Comments 0
You need to be logged in to leave comments. Login now