Mercurial > hg
comparison mercurial/commands.py @ 2571:83cfd95eafb5
tests: add timeouts, make run-tests.py clean up dead daemon processes
test timeout feature is needed for test with python 2.5 beta. if test
does not complete in time (30 seconds is default), it is killed.
some times daemon process used in test can be alive after the test
is killed by user or by timeout. tests now record daemon pids into
$DAEMON_PIDS and run-tests.py kills all living daemons after every test.
final little change is to add newline to end of pid file printed by
"hg serve", else "cat hg.pid >> $DAEMON_FILES" gives garbage.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Thu, 06 Jul 2006 11:45:34 -0700 |
parents | 2748253b49c2 |
children | b13a98bd078e |
comparison
equal
deleted
inserted
replaced
2570:2264b2b077a1 | 2571:83cfd95eafb5 |
---|---|
2647 else: | 2647 else: |
2648 ui.status(_('listening at http://%s/\n') % addr) | 2648 ui.status(_('listening at http://%s/\n') % addr) |
2649 | 2649 |
2650 if opts['pid_file']: | 2650 if opts['pid_file']: |
2651 fp = open(opts['pid_file'], 'w') | 2651 fp = open(opts['pid_file'], 'w') |
2652 fp.write(str(os.getpid())) | 2652 fp.write(str(os.getpid()) + '\n') |
2653 fp.close() | 2653 fp.close() |
2654 | 2654 |
2655 if opts['daemon_pipefds']: | 2655 if opts['daemon_pipefds']: |
2656 rfd, wfd = [int(x) for x in opts['daemon_pipefds'].split(',')] | 2656 rfd, wfd = [int(x) for x in opts['daemon_pipefds'].split(',')] |
2657 os.close(rfd) | 2657 os.close(rfd) |