Changeset 514
- Timestamp:
- Mon Aug 4 12:01:37 2008
- Files:
-
- trunk/buildtests/test-zipimport1.spec (modified) (diff)
- trunk/buildtests/test1.spec (modified) (diff)
- trunk/buildtests/test3.spec (modified) (diff)
- trunk/buildtests/test5.spec (modified) (diff)
- trunk/buildtests/test7.spec (modified) (diff)
- trunk/buildtests/test9.spec (modified) (diff)
- trunk/buildtests/test10.spec (modified) (diff)
- trunk/buildtests/test12.spec (modified) (diff)
- trunk/buildtests/test14.spec (modified) (diff)
- trunk/buildtests/test16.spec (modified) (diff)
- trunk/buildtests/test-zipimport2.spec (modified) (diff)
- trunk/buildtests/test2.spec (modified) (diff)
- trunk/buildtests/test6.spec (modified) (diff)
- trunk/buildtests/test8.spec (modified) (diff)
- trunk/buildtests/test4i.spec (modified) (diff)
- trunk/buildtests/test11.spec (modified) (diff)
- trunk/buildtests/test13.spec (modified) (diff)
- trunk/buildtests/test15.spec (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
trunk/buildtests/test-zipimport1.spec
r489 r514 1 1 # -*- mode: python -*- 2 2 3 __basename__ = 'zipimport1' 4 __testname__ = 'test-' + __basename__ 5 __distdir__ = 'dist' + __testname__ 6 import os 7 if not os.path.isdir(__distdir__): 8 os.mkdir(__distdir__) 3 __testname__ = 'test-zipimport1' 9 4 10 5 a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'), … … 18 13 a.binaries, 19 14 a.zipfiles, 20 # funny name to meet runtests.py's schema 21 name = '%s%s%s.exe' % (__distdir__, os.sep, __testname__), 15 name = os.path.join('dist', __testname__ +'.exe'), 22 16 debug=False, 23 17 strip=False, -
trunk/buildtests/test1.spec
r269 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test1' 4 1 5 a = Analysis(['../support/_mountzlib.py', 'test1.py'], 2 6 pathex=[], … … 6 10 a.scripts, 7 11 exclude_binaries=1, 8 name= 'buildtest1/test1.exe',12 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 8 12 debug=0, 9 13 console=1) 10 14 coll = COLLECT( exe, 11 15 a.binaries, 12 name= 'disttest1')16 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test3.spec
r269 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test3' 4 1 5 a = Analysis(['../support/_mountzlib.py', 'test3.py'], 2 6 pathex=[]) … … 6 10 [('f','','OPTION')], 7 11 exclude_binaries=1, 8 name= 'buildtest3/test3.exe',12 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 8 12 debug=0, 9 13 console=1) 10 14 coll = COLLECT( exe, 11 15 a.binaries, 12 name= 'disttest3')16 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test5.spec
r269 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test5' 4 1 5 a = Analysis(['../support/_mountzlib.py', 'test5.py'], 2 6 pathex=[]) … … 6 10 [('W ignore', '', 'OPTION')], 7 11 exclude_binaries=1, 8 name= 'buildtest5/test5.exe',12 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 8 12 debug=0, 9 13 console=1) 10 14 coll = COLLECT( exe, 11 15 a.binaries, 12 name= 'disttest5')16 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test7.spec
r269 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test7' 4 1 5 a = Analysis(['../support/_mountzlib.py', 'test7.py'], 2 6 pathex=[]) … … 5 9 a.scripts, 6 10 exclude_binaries=1, 7 name= 'buildtest7/test7.exe',11 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 7 11 debug=0, 8 12 console=1) 9 13 coll = COLLECT( exe, 10 14 a.binaries, 11 name= 'disttest7')15 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test9.spec
r270 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test9' 4 1 5 a = Analysis([os.path.join(HOMEPATH,'support', '_mountzlib.py'), 2 6 os.path.join(HOMEPATH,'support', 'useUnicode.py'), … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'buildtest9/test9.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 debug=False, 10 14 strip=False, … … 16 20 strip=False, 17 21 upx=False, 18 name= 'disttest9')22 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test10.spec
r308 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test10' 4 1 5 a = Analysis([os.path.join(HOMEPATH,'support', '_mountzlib.py'), 2 6 os.path.join(HOMEPATH,'support', 'useUnicode.py'), … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'buildtest10/test10.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 debug=False, 10 14 strip=False, … … 16 20 strip=False, 17 21 upx=False, 18 name= 'disttest10')22 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test12.spec
r449 r514 1 import os 1 # -*- mode: python -*- 2 3 __testname__ = 'test12' 2 4 3 5 a = Analysis(['../support/_mountzlib.py', 'test12.py'], … … 7 9 a.scripts, 8 10 exclude_binaries=1, 9 name= 'test12.exe',11 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 11 debug=0, 10 12 console=1) 11 13 coll = COLLECT( exe, 12 14 a.binaries, 13 name= 'disttest12')15 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test14.spec
r449 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test14' 4 1 5 a = Analysis(['../support/_mountzlib.py', 2 6 '../support/useUnicode.py', … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'test14.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 debug=False, 10 14 strip=False, … … 16 20 strip=False, 17 21 upx=False, 18 name= 'disttest14')22 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test16.spec
r449 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test16' 4 1 5 a = Analysis(['../support/_mountzlib.py', 2 6 '../support/useUnicode.py', … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'test16.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 debug=False, 10 14 strip=False, … … 16 20 strip=False, 17 21 upx=False, 18 name= 'disttest16')22 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test-zipimport2.spec
r489 r514 1 1 # -*- mode: python -*- 2 2 3 __basename__ = 'zipimport2' 4 __testname__ = 'test-' + __basename__ 5 __distdir__ = 'dist' + __testname__ 6 import os 7 if not os.path.isdir(__distdir__): 8 os.mkdir(__distdir__) 3 __testname__ = 'test-zipimport2' 9 4 10 5 a = Analysis([os.path.join(HOMEPATH,'support/_mountzlib.py'), … … 18 13 a.binaries, 19 14 a.zipfiles, 20 # funny name to meet runtests.py's schema 21 name = '%s%s%s.exe' % (__distdir__, os.sep, __testname__), 15 name = os.path.join('dist', __testname__ +'.exe'), 22 16 debug=False, 23 17 strip=False, -
trunk/buildtests/test2.spec
r269 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test2' 4 1 5 config['useZLIB'] = 0 2 6 a = Analysis(['../support/_mountzlib.py', 'test2.py'], … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'buildtest2/test2.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 icon='test2.ico', 10 14 version='test2-version.txt', … … 14 18 coll = COLLECT( exe, 15 19 a.binaries - [('zlib','','EXTENSION')], 16 name= 'disttest2')20 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test6.spec
r269 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test6' 4 1 5 a = Analysis(['../support/_mountzlib.py', 'test6.py'], 2 6 pathex=[]) … … 5 9 a.scripts, 6 10 exclude_binaries=1, 7 name= 'buildtest6/test6.exe',11 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 7 11 debug=0, 8 12 console=1) 9 13 coll = COLLECT( exe, 10 14 a.binaries, 11 name= 'disttest6')15 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test8.spec
r270 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test8' 4 1 5 a = Analysis([os.path.join(HOMEPATH,'support', '_mountzlib.py'), 2 6 os.path.join(HOMEPATH,'support', 'useUnicode.py'), … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'buildtest8/test8.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 debug=0, 10 14 strip=0, … … 16 20 strip=0, 17 21 upx=0, 18 name= 'disttest8')22 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test4i.spec
r449 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test4i' 4 1 5 a = Analysis(['../support/_mountzlib.py', 'test4i.py'], 2 6 pathex=[]) … … 6 10 [('u', '', 'OPTION')], 7 11 exclude_binaries=1, 8 name= 'buildtest4i/test4i.exe',12 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 8 12 debug=0, 9 13 console=1) 10 14 coll = COLLECT( exe, 11 15 a.binaries, 12 name= 'disttest4i')16 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test11.spec
r308 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test11' 4 1 5 a = Analysis([os.path.join(HOMEPATH,'support', '_mountzlib.py'), 2 6 os.path.join(HOMEPATH,'support', 'useUnicode.py'), … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'buildtest11/test11.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 debug=False, 10 14 strip=False, … … 16 20 strip=False, 17 21 upx=False, 18 name= 'disttest11')22 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test13.spec
r449 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test13' 4 1 5 a = Analysis(['../support/_mountzlib.py', 2 6 '../support/useUnicode.py', … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'test13.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 debug=False, 10 14 strip=False, … … 16 20 strip=False, 17 21 upx=False, 18 name= 'disttest13')22 name=os.path.join('dist', __testname__),) -
trunk/buildtests/test15.spec
r449 r514 1 # -*- mode: python -*- 2 3 __testname__ = 'test15' 4 1 5 a = Analysis(['../support/_mountzlib.py', 2 6 '../support/useUnicode.py', … … 7 11 a.scripts, 8 12 exclude_binaries=1, 9 name= 'test15.exe',13 name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'), 9 13 debug=False, 10 14 strip=False, … … 16 20 strip=False, 17 21 upx=False, 18 name= 'disttest15')22 name=os.path.join('dist', __testname__),)
