summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortarek <none@none>2009-08-04 19:16:13 +0200
committertarek <none@none>2009-08-04 19:16:13 +0200
commite370e840a4b7c872e5b60824904059f39beb2745 (patch)
treeb98217e414c960a48154240b39929b65a55369d7
parent523edfeb1d9f07856c8242b4f84b49dbcd76ef40 (diff)
downloadpython-setuptools-git-e370e840a4b7c872e5b60824904059f39beb2745.tar.gz
renamed bootstrap
--HG-- branch : distribute extra : rebase_source : 0f35dd5d49900dc6d6a4c237fb1ca422fa5740e2
-rw-r--r--tests/install_test.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/install_test.py b/tests/install_test.py
index c02c04a3..58b4ebc1 100644
--- a/tests/install_test.py
+++ b/tests/install_test.py
@@ -2,8 +2,8 @@ import urllib2
import sys
import os
-if os.path.exists('bootstrap.py'):
- print 'bootstrap.py exists in the current dir, aborting'
+if os.path.exists('bootstraping.py'):
+ print 'bootstraping.py exists in the current dir, aborting'
sys.exit(2)
print '**** Starting Test'
@@ -14,13 +14,13 @@ if is_jython:
import subprocess
print 'Downloading bootstrap'
-file = urllib2.urlopen('http://nightly.ziade.org/bootstrap.py')
-f = open('bootstrap.py', 'w')
+file = urllib2.urlopen('http://nightly.ziade.org/bootstraping.py')
+f = open('bootstraping.py', 'w')
f.write(file.read())
f.close()
# running it
-args = [sys.executable] + ['bootstrap.py']
+args = [sys.executable] + ['bootstraping.py']
if is_jython:
res = subprocess.call(args)
else:
@@ -28,7 +28,7 @@ else:
if res != 0:
print '**** Test failed, please send me the output at tarek@ziade.org'
- os.remove('bootstrap.py')
+ os.remove('bootstraping.py')
sys.exit(2)
# now checking if Distribute is installed
@@ -71,5 +71,5 @@ try:
finally:
if os.path.exists(script_name):
os.remove(script_name)
- os.remove('bootstrap.py')
+ os.remove('bootstraping.py')