comparison tests/run-tests.py @ 5215:b0bc8cf41ffc

merge with -stable
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Fri, 24 Aug 2007 00:39:16 +0200
parents 1843098e665a
children 90919a6f5c8f
comparison
equal deleted inserted replaced
5214:316ce5e85b3e 5215:b0bc8cf41ffc
134 vlog("# Performing temporary installation of HG") 134 vlog("# Performing temporary installation of HG")
135 installerrs = os.path.join("tests", "install.err") 135 installerrs = os.path.join("tests", "install.err")
136 136
137 os.chdir("..") # Get back to hg root 137 os.chdir("..") # Get back to hg root
138 cmd = ('%s setup.py clean --all' 138 cmd = ('%s setup.py clean --all'
139 ' install --force --home="%s" --install-lib="%s" >%s 2>&1' 139 ' install --force --home="%s" --install-lib="%s"'
140 % (sys.executable, INST, PYTHONDIR, installerrs)) 140 ' --install-scripts="%s" >%s 2>&1'
141 % (sys.executable, INST, PYTHONDIR, BINDIR, installerrs))
141 vlog("# Running", cmd) 142 vlog("# Running", cmd)
142 if os.system(cmd) == 0: 143 if os.system(cmd) == 0:
143 if not verbose: 144 if not verbose:
144 os.remove(installerrs) 145 os.remove(installerrs)
145 else: 146 else: