buildframework/helium/tests/data/pythonTest2.py
author timothy.murphy@nokia.com
Wed, 09 Dec 2009 12:17:02 +0000
branchwip
changeset 89 315b0aa777bd
parent 1 be27ed110b50
permissions -rw-r--r--
Make TC fail when there is an error. This is hypothetical in this version but the next version of the TC is in testing.

from optparse import OptionParser

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