sbsv2/raptor/test/smoke_suite/listing.py
changeset 13 c327db0664bb
equal deleted inserted replaced
12:5e7562f67577 13:c327db0664bb
       
     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 = "31"
       
    22 	t.name = "listing"
       
    23 	t.command = "sbs -b smoke_suite/test_resources/simple/bld.inf -c armv5 " + \
       
    24 			"-c winscw -k listing"
       
    25 	t.targets = [
       
    26 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test.armv5.urel.test.exe.lst",
       
    27 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test.armv5.udeb.test.exe.lst",
       
    28 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test.WINSCW.lst",
       
    29 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test1.armv5.urel.test.exe.lst",
       
    30 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test1.armv5.udeb.test.exe.lst",
       
    31 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test1.WINSCW.lst",
       
    32 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test2.armv5.urel.test.exe.lst",
       
    33 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test2.armv5.udeb.test.exe.lst",
       
    34 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test2.WINSCW.lst",
       
    35 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test3.armv5.urel.test.exe.lst",
       
    36 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test3.armv5.udeb.test.exe.lst",
       
    37 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test3.WINSCW.lst",
       
    38 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test4.armv5.urel.test.exe.lst",
       
    39 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test4.armv5.udeb.test.exe.lst",
       
    40 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test4.WINSCW.lst",
       
    41 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test5.armv5.urel.test.exe.lst",
       
    42 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test5.armv5.udeb.test.exe.lst",
       
    43 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test5.WINSCW.lst",
       
    44 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test6.armv5.urel.test.exe.lst",
       
    45 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test6.armv5.udeb.test.exe.lst",
       
    46 		"$(SBS_HOME)/test/smoke_suite/test_resources/simple/test6.WINSCW.lst"
       
    47 		]
       
    48 	t.run()
       
    49 	return t