root/trunk/buildtests/test10.spec

Revision 514 (by htgoebel, 08/04/08 12:01:37)

Updated .spec files to meet directory-schema introduced in r511.

# -*- mode: python -*-

__testname__ = 'test10'

a = Analysis([os.path.join(HOMEPATH,'support', '_mountzlib.py'),
              os.path.join(HOMEPATH,'support', 'useUnicode.py'),
              'test10.py'],
             pathex=['.'])
pyz = PYZ(a.pure)
exe = EXE(pyz,
          a.scripts,
          exclude_binaries=1,
          name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'),
          debug=False,
          strip=False,
          upx=False,
          console=True )
coll = COLLECT( exe,
               a.binaries,
               strip=False,
               upx=False,
               name=os.path.join('dist', __testname__),)
Note: See TracBrowser for help on using the browser.