Files
pyinstaller/buildtests/test_f_option.spec
T
naufraghi c522d67300 Rename test3 -> test_f_option
git-svn-id: http://svn.pyinstaller.org/trunk@559 8dd32b29-ccff-0310-8a9a-9233e24343b1
2008-12-07 16:19:23 +00:00

18 lines
500 B
RPMSpec

# -*- mode: python -*-
__testname__ = 'test_f_option'
a = Analysis(['../support/_mountzlib.py', 'test_f_option.py'],
pathex=[])
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
[('f','','OPTION')],
exclude_binaries=1,
name=os.path.join('build', 'pyi.' + config['target_platform'], __testname__ + '.exe'),
debug=0,
console=1)
coll = COLLECT( exe,
a.binaries,
name=os.path.join('dist', __testname__),)