sbsv2/raptor/test/smoke_suite/tracecompiler_new.py
changeset 625 a1925fb7753a
equal deleted inserted replaced
624:f70b728ea30c 625:a1925fb7753a
       
     1 #
       
     2 # Copyright (c) 2010 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.description = "test mmpkeyword: traces"
       
    22 	t.id = "108a"
       
    23 	t.name = "traces_mmpkeyword"
       
    24 	t.command = "sbs -b smoke_suite/test_resources/tracecompiler/traceon/group/bld.inf -c armv5.tracecompiler"	
       
    25 	t.targets = [
       
    26 		"$(EPOCROOT)/epoc32/release/armv5/udeb/traceon.exe",
       
    27 		"$(EPOCROOT)/epoc32/release/armv5/urel/traceon.exe",
       
    28 		"$(EPOCROOT)/epoc32/release/armv5/udeb/traces_keyword.exe",
       
    29 		"$(EPOCROOT)/epoc32/release/armv5/urel/traces_keyword.exe",
       
    30 		"$(SBS_HOME)/test/smoke_suite/test_resources/tracecompiler/traceon/traces/traceon_exe/traceonTraces.h",
       
    31 		"$(SBS_HOME)/test/smoke_suite/test_resources/tracecompiler/traceon/traces/traces_keyword_exe/traces_keywordTraces.h",
       
    32 		"$(EPOCROOT)/epoc32/ost_dictionaries/traceon_exe_0x11100010_Dictionary.xml",
       
    33 		"$(EPOCROOT)/epoc32/ost_dictionaries/traces_keyword_exe_0x11100011_Dictionary.xml",
       
    34 		"$(EPOCROOT)/epoc32/include/platform/symbiantraces/autogen/traceon_exe_0x11100010_TraceDefinitions.h",
       
    35 		"$(EPOCROOT)/epoc32/include/platform/symbiantraces/autogen/traces_keyword_exe_0x11100011_TraceDefinitions.h"
       
    36 		]
       
    37 	t.addbuildtargets('smoke_suite/test_resources/tracecompiler/traceon/group/bld.inf', [
       
    38 		"traceon_exe/armv5/udeb/traceon.o",
       
    39 		"traceon_exe/armv5/urel/traceon.o",
       
    40 		"traceon_exe/tracecompile_traceon_exe_11100010.done",
       
    41 		"traces_keyword_exe/armv5/udeb/traces_keyword.o",
       
    42 		"traces_keyword_exe/armv5/urel/traces_keyword.o",
       
    43 		"traces_keyword_exe/tracecompile_traces_keyword_exe_11100011.done",
       
    44 	])
       
    45 	t.run()
       
    46 	
       
    47 	t.id = "108"
       
    48 	t.name = "tracecompiler_new"
       
    49 	return t
       
    50