sbsv2/raptor/test/smoke_suite/armv7_testcode.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 = "29"
       
    22 	t.name = "armv7_testcode"
       
    23 	t.command = "sbs -b smoke_suite/test_resources/simple_test/bld.inf -c " + \
       
    24 			"armv7.test -f - "
       
    25 	
       
    26 	# Don't allow -f to be appended
       
    27 	t.logfileOption = lambda :""
       
    28 	t.targets = [
       
    29 		"$(EPOCROOT)/epoc32/release/armv7/urel/simple_test_auto.exe",
       
    30 		"$(EPOCROOT)/epoc32/release/armv7/urel/simple_test_manual.exe",
       
    31 		"$(EPOCROOT)/epoc32/release/armv7/udeb/simple_test_auto.exe",
       
    32 		"$(EPOCROOT)/epoc32/release/armv7/udeb/simple_test_manual.exe",
       
    33 		"$(EPOCROOT)/epoc32/include/testexportheader.h",
       
    34 		"$(EPOCROOT)/epoc32/data/z/test/simple_test/armv7.auto.bat",
       
    35 		"$(EPOCROOT)/epoc32/data/z/test/simple_test/armv7.manual.bat"
       
    36 		]
       
    37 	t.mustmatch = [".*/epoc32/data/z/test/simple_test/armv7.auto.bat</build>.*"]
       
    38 	t.run()
       
    39 	return t