buildframework/helium/tests/data/pythonTest2.py
author timothy.murphy@nokia.com
Mon, 01 Mar 2010 16:23:33 +0000
branchfix
changeset 289 91bbfbf8c43e
parent 1 be27ed110b50
permissions -rw-r--r--
Don't run executable file mode preservation test on windows since it doesn't have the concept.

from optparse import OptionParser

def main():
    parser = OptionParser(usage="%prog VERSION")
    opts, args = parser.parse_args()
    input = args[0]
    print input
    
main()