aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-11 14:06:08 +0100
committerJason R. Coombs <jaraco@jaraco.com>2013-05-11 14:06:08 +0100
commita011aa8e2f3b911c809a5eb52f57e0584786ea4d (patch)
treefc070640cbdb6592da857022c482e8279969c1f2
parente16d0f5833d18c32f19cffe9c3fc6c6b69584c01 (diff)
downloadexternal_python_setuptools-a011aa8e2f3b911c809a5eb52f57e0584786ea4d.tar.gz
external_python_setuptools-a011aa8e2f3b911c809a5eb52f57e0584786ea4d.tar.bz2
external_python_setuptools-a011aa8e2f3b911c809a5eb52f57e0584786ea4d.zip
Updated tests of win_script_wrapper to use 32-bit wrappers
--HG-- branch : distribute extra : source : 26421e9ba211b7e14171673c46c45692b6c8501d
-rw-r--r--setuptools/tests/win_script_wrapper.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/tests/win_script_wrapper.txt b/setuptools/tests/win_script_wrapper.txt
index 9f7c81d6..9ccc96f0 100644
--- a/setuptools/tests/win_script_wrapper.txt
+++ b/setuptools/tests/win_script_wrapper.txt
@@ -38,7 +38,7 @@ We'll also copy cli.exe to the sample-directory with the name foo.exe:
>>> import pkg_resources
>>> f = open(os.path.join(sample_directory, 'foo.exe'), 'wb')
>>> f.write(
- ... pkg_resources.resource_string('setuptools', 'cli.exe')
+ ... pkg_resources.resource_string('setuptools', 'cli-32.exe')
... )
>>> f.close()
@@ -83,7 +83,7 @@ enter the interpreter after running the script, you could use -Oi:
>>> f = open(os.path.join(sample_directory, 'foo-script.py'), 'w')
>>> f.write(
- ... """#!%(python_exe)s -Oi
+ ... """#!%(python_exe)s -Oi
... import sys
... input = repr(sys.stdin.read())
... print sys.argv[0][-14:]
@@ -126,7 +126,7 @@ We'll also copy gui.exe to the sample-directory with the name bar.exe:
>>> import pkg_resources
>>> f = open(os.path.join(sample_directory, 'bar.exe'), 'wb')
>>> f.write(
- ... pkg_resources.resource_string('setuptools', 'gui.exe')
+ ... pkg_resources.resource_string('setuptools', 'gui-32.exe')
... )
>>> f.close()