~spud/spud/windows

« back to all changes in this revision

Viewing changes to pyinstaller/buildtests/test_f_option.spec

  • Committer: Fraser Waters
  • Date: 2011-09-01 05:24:33 UTC
  • Revision ID: fraser.waters08@imperial.ac.uk-20110901052433-60uo51x0d76qze9x
Delete pyinstaller, doesn't match our needs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- mode: python -*-
2
 
 
3
 
__testname__ = 'test_f_option'
4
 
 
5
 
a = Analysis(['../support/_mountzlib.py', 'test_f_option.py'],
6
 
             pathex=[])
7
 
pyz = PYZ(a.pure)
8
 
exe = EXE(pyz,
9
 
          a.scripts,
10
 
          [('f','','OPTION')],
11
 
          exclude_binaries=1,
12
 
          name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'),
13
 
          debug=0,
14
 
          console=1)
15
 
coll = COLLECT( exe,
16
 
               a.binaries,
17
 
               name=os.path.join('dist', __testname__),)