sbsv2/raptor/test/smoke_suite/mmp_select.py
changeset 3 e1eecf4d390d
child 674 37ee82a83d43
equal deleted inserted replaced
1:be27ed110b50 3:e1eecf4d390d
       
     1 #
       
     2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of the License "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description: 
       
    15 #
       
    16 
       
    17 from raptor_tests import SmokeTest
       
    18 
       
    19 def run():
       
    20 	t = SmokeTest()
       
    21 	t.id = "44"
       
    22 	t.name = "mmp_select"
       
    23 	t.description = "Test -p option"
       
    24 	t.command = "sbs -b smoke_suite/test_resources/basics/helloworld/Bld.inf " \
       
    25 			+ "-p hElLoWoRlD.mMp"
       
    26 	t.targets = [
       
    27 		"$(EPOCROOT)/epoc32/release/armv5/udeb/HelloWorld.exe",
       
    28 		"$(EPOCROOT)/epoc32/release/armv5/urel/HelloWorld.exe",
       
    29 		"$(EPOCROOT)/epoc32/release/winscw/udeb/HelloWorld.exe",
       
    30 		"$(EPOCROOT)/epoc32/release/winscw/urel/HelloWorld.exe"
       
    31 		]
       
    32 	t.addbuildtargets('smoke_suite/test_resources/basics/helloworld/Bld.inf', [
       
    33 		"helloworld_exe/armv5/udeb/HelloWorld.o",
       
    34 		"helloworld_exe/armv5/urel/HelloWorld.o",
       
    35 		"helloworld_exe/winscw/udeb/HelloWorld.o",
       
    36 		"helloworld_exe/winscw/urel/HelloWorld.o"
       
    37 	])
       
    38 	t.run()
       
    39 	return t