# HG changeset patch # User Richard Taylor # Date 1265018616 0 # Node ID 4e477ddf2eed2b478793a7c7ff22320e5ee6ce21 # Parent 2bc875af320017a5952adb544e78306e7807865c# Parent a363840a27e37aab41cd87fdf5c26368bc1426c4 version 2.12.1 (candidate 1) diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/RELEASE-NOTES.txt --- a/sbsv2/raptor/RELEASE-NOTES.txt Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/RELEASE-NOTES.txt Mon Feb 01 10:03:36 2010 +0000 @@ -1,6 +1,14 @@ Release Notes for Symbian Build System v2 +version 2.12.1 + +Defect Fixes: +- SF Bug 1494 - sbs --what does not report Trace Compiler output +- sbs -c winscw.tracecompiler uses wrong UID and doesn't generate traces +- SF Bug 1519 - Raptor output files may contain unescaped left angle brackets as XML character data + + version 2.12.0 New Features: diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/lib/flm/e32abiv2.flm --- a/sbsv2/raptor/lib/flm/e32abiv2.flm Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/lib/flm/e32abiv2.flm Mon Feb 01 10:03:36 2010 +0000 @@ -697,6 +697,7 @@ # Users can turn TC on by setting it to 1 in user config. ifneq ($(USE_TRACE_COMPILER),) include $(FLMHOME)/tracecompiler.mk + WHATRELEASE:=$(WHATRELEASE) $(TRACE_DICTIONARY) $(AUTOGEN_HEADER) endif CC_CPPONLY_ARGS:=$(SYMBIAN_CCFLAGS) $(if $(DEBUG_INFO),-g) $(DEBUG_FORMAT) \ diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/lib/flm/tracecompiler.mk --- a/sbsv2/raptor/lib/flm/tracecompiler.mk Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/lib/flm/tracecompiler.mk Mon Feb 01 10:03:36 2010 +0000 @@ -25,6 +25,9 @@ TRACE_PRJNAME:=$(TARGET)_$(TARGETTYPE) endif +TRACE_DICTIONARY:=$(EPOCROOT)/epoc32/ost_dictionaries/$(TRACE_PRJNAME)_0x$(UID_TC)_Dictionary.xml +AUTOGEN_HEADER:=$(EPOCROOT)/epoc32/include/internal/SymbianTraces/autogen/$(TRACE_PRJNAME)_0x$(UID_TC)_TraceDefinitions.h + $(if $(FLMDEBUG),$(info TRACE_PATH = $(TRACE_PATH))) # Run trace compiler only if TRACE_PATH exists diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/lib/flm/win32.flm --- a/sbsv2/raptor/lib/flm/win32.flm Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/lib/flm/win32.flm Mon Feb 01 10:03:36 2010 +0000 @@ -50,6 +50,7 @@ MAINLINKAS:= NEWLIBFILE:= RELEASABLES:= +TC_RELEASABLES:= STATLIBDIR:= STDCPP_BUILD:= STDCPPTAGFILE:= @@ -204,7 +205,7 @@ # Run trace compiler ##################################### TRACE_MARKER_PATH:=$(OUTPUTPATH) -ifeq ($(UID3),) +ifeq ($(subst 0,,$(UID3)),) ifeq ($(UID2),) USE_TRACE_COMPILER:= else @@ -218,6 +219,7 @@ # Users can turn TC on by setting it to 1 in user config. ifneq ($(USE_TRACE_COMPILER),) include $(FLMHOME)/tracecompiler.mk + TC_RELEASABLES:=$(TRACE_DICTIONARY) $(AUTOGEN_HEADER) endif @@ -688,4 +690,4 @@ # make the output directories while reading makefile - some build engines prefer this $(call makepath,$(CREATABLEPATHS)) # for the --what option and the log file -$(call raptor_release,$(RELEASABLES)) +$(call raptor_release,$(RELEASABLES) $(TC_RELEASABLES)) diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/python/plugins/filter_broken.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/python/plugins/filter_broken.py Mon Feb 01 10:03:36 2010 +0000 @@ -0,0 +1,48 @@ +# +# Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# Example of a Filter class using the SAX parser base class +# + +import filter_interface + +class FilterBroken(filter_interface.FilterSAX): + + def startDocument(self): + self.first = True + + def startElement(self, name, attributes): + pass + + def characters(self, char): + pass + + def endElement(self, name): + pass + + def endDocument(self): + pass + + def error(self, exception): + pass + + def fatalError(self, exception): + if self.first: + print "fatal error:", str(exception) + self.first = False + + def warning(self, exception): + pass + +# the end diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/python/raptor_make.py --- a/sbsv2/raptor/python/raptor_make.py Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/python/raptor_make.py Mon Feb 01 10:03:36 2010 +0000 @@ -497,12 +497,22 @@ universal_newlines=True, env=makeenv) stream = p.stdout - + inRecipe = False line = " " while line: line = stream.readline() - self.raptor.out.write(line) - + + if line.startswith("/dev/null; mkdir -p "$TMPDIR" && cd "$TMPDIR" && sbs ${SBSLOGFILE} -n ; rm -rf "$TMPDIR" -m """ + """ t.mustmatch = [".*warning: No default bld.inf or system definition.*found.* "] t.warnings = 1 - t.result = t.run() + t.run() + + t.id = "0085" + t.name = "commandline" return t diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/make_engine_errors.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/test/smoke_suite/make_engine_errors.py Mon Feb 01 10:03:36 2010 +0000 @@ -0,0 +1,54 @@ +# +# Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# + +from raptor_tests import SmokeTest + +def run(): + t = SmokeTest() + t.id = "113" + t.name = "make_engine_errors" + t.description = "Errors reported by gmake and emake should be escaped to ensure that the logs are valid XML" + + t.mustmatch_singleline = ["Circular b <- a dependency", + "non_existent_&_needs_escaping.txt"] + + t.mustnotmatch_singleline = ["Circular b <- a dependency", + "non_existent_&_needs_escaping.txt"] + + t.usebash = True + t.errors = 1 + t.returncode = 1 + base_command = "sbs -b smoke_suite/test_resources/make_engine_errors/bld.inf -f-" + + t.id = "113a" + t.name = "gmake_engine_errors" + t.command = base_command + " -e make" + t.run() + + t.id = "113b" + t.name = "emake_engine_errors" + t.command = base_command + " -e emake" + t.run() + + t.id = "113c" + t.name = "emake_engine_errors_with_merged_streams" + t.command = base_command + " -e emake --mo=--emake-mergestreams=1" + t.run() + + t.id = "113" + t.name = "make_engine_errors" + t.print_result() + return t diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/pdll_arm.py --- a/sbsv2/raptor/test/smoke_suite/pdll_arm.py Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/test/smoke_suite/pdll_arm.py Mon Feb 01 10:03:36 2010 +0000 @@ -1,5 +1,5 @@ # -# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). # All rights reserved. # This component and the accompanying materials are made available # under the terms of the License "Eclipse Public License v1.0" @@ -50,7 +50,7 @@ # Note that ABIv1 import libraries are only generated for RVCT-based armv5 # builds on Windows - t.id = "0104a" + t.id = "0109a" t.name = "pdll_armv5_rvct" t.command = command % "armv5" t.targets = map(lambda p: p % "armv5", maintargets + armv5targets)[:] # Shallow, as we optionally extend later and then re-use @@ -62,7 +62,7 @@ t.targets.extend(map(lambda x: x % "armv5", abiv1libtargets)) t.run("windows") - t.id = "0104b" + t.id = "0109b" t.name = "pdll_armv5_clean" t.command = command % "armv5" + " clean" t.targets = [] @@ -70,7 +70,7 @@ t.mustnotmatch = [] t.run() - t.id = "0104c" + t.id = "0109c" t.name = "pdll_armv5_gcce" t.command = command % "gcce_armv5" t.targets = map(lambda p: p % "armv5", maintargets + armv5targets) @@ -80,7 +80,7 @@ t.mustnotmatch = mustnotmatch t.run() - t.id = "0104d" + t.id = "0109d" t.name = "pdll_armv5_gcce_clean" t.command = command % "gcce_armv5" + " clean" t.targets = [] @@ -88,7 +88,7 @@ t.mustnotmatch = [] t.run() - t.id = "0104e" + t.id = "0109e" t.name = "pdll_armv7_rvct" t.command = command % "armv7" t.targets = map(lambda p: p % "armv7", maintargets)[:] # Shallow, as we optionally extend later and then re-use @@ -97,7 +97,7 @@ t.mustnotmatch = mustnotmatch t.run() - t.id = "0104f" + t.id = "0109f" t.name = "pdll_armv7_clean" t.command = command % "armv7" + " clean" t.targets = [] @@ -105,7 +105,7 @@ t.mustnotmatch = [] t.run() - t.id = "0104g" + t.id = "0109g" t.name = "pdll_armv7_gcce" t.command = command % "arm.v7.udeb.gcce4_3_2 -c arm.v7.urel.gcce4_3_2" t.targets = map(lambda p: p % "armv7", maintargets) @@ -115,7 +115,7 @@ t.mustnotmatch = mustnotmatch t.run() - t.id = "104" + t.id = "109" t.name = "pdll_arm" t.print_result() return t diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/qt.py --- a/sbsv2/raptor/test/smoke_suite/qt.py Tue Jan 26 09:43:47 2010 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,55 +0,0 @@ -# -# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). -# All rights reserved. -# This component and the accompanying materials are made available -# under the terms of the License "Eclipse Public License v1.0" -# which accompanies this distribution, and is available -# at the URL "http://www.eclipse.org/legal/epl-v10.html". -# -# Initial Contributors: -# Nokia Corporation - initial contribution. -# -# Contributors: -# -# Description: -# This test case requires install of Qt. - -from raptor_tests import SmokeTest - -def run(): - t = SmokeTest() - - t.description = "Ensure Raptor builds Qt applications successfully" - - t.id = "00xx" # TO DO: update ID - t.name = "qt_helloworld" - t.command = "cd smoke_suite/test_resources/qt && qmake -spec symbian-sbsv2 && sbs" - t.targets = [ - "$(SBS_HOME)/test/smoke_suite/test_resources/qt/bld.inf", - "$(SBS_HOME)/test/smoke_suite/test_resources/qt/helloworldqt.loc", - "$(SBS_HOME)/test/smoke_suite/test_resources/qt/helloworldqt.rss", - "$(SBS_HOME)/test/smoke_suite/test_resources/qt/helloworldqt_reg.rss", - "$(SBS_HOME)/test/smoke_suite/test_resources/qt/helloworldqt_template.pkg", - "$(SBS_HOME)/test/smoke_suite/test_resources/qt/Makefile", - "$(EPOCROOT)/epoc32/release/armv5/udeb/helloworldqt.exe", - "$(EPOCROOT)/epoc32/release/armv5/udeb/helloworldqt.exe.map", - "$(EPOCROOT)/epoc32/release/armv5/urel/helloworldqt.exe", - "$(EPOCROOT)/epoc32/release/armv5/urel/helloworldqt.exe.map", - "$(EPOCROOT)/epoc32/release/winscw/udeb/helloworldqt.exe", - "$(EPOCROOT)/epoc32/release/winscw/urel/helloworldqt.exe", - "$(EPOCROOT)/epoc32/release/winscw/urel/helloworldqt.exe.map" - ] - t.addbuildtargets('smoke_suite/test_resources/qt/bld.inf', [ - "helloworldqt_exe/armv5/udeb/helloworld.o", - "helloworldqt_exe/armv5/udeb/helloworld.o.d", - "helloworldqt_exe/armv5/urel/helloworld.o", - "helloworldqt_exe/armv5/urel/helloworld.o.d", - "helloworldqt_exe/winscw/udeb/helloworld.o", - "helloworldqt_exe/winscw/udeb/helloworld.o.d", - "helloworldqt_exe/winscw/urel/helloworld.o", - "helloworldqt_exe/winscw/urel/helloworld.o.d" - ]) - t.run("windows") - - return t - diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/qt_helloworld.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/test/smoke_suite/qt_helloworld.py Mon Feb 01 10:03:36 2010 +0000 @@ -0,0 +1,55 @@ +# +# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# This test case requires install of Qt. + +from raptor_tests import SmokeTest + +def run(): + t = SmokeTest() + + t.description = "Ensure Raptor builds Qt applications successfully" + + t.id = "0110" + t.name = "qt_helloworld" + t.command = "cd smoke_suite/test_resources/qt && qmake -spec symbian-sbsv2 && sbs" + t.targets = [ + "$(SBS_HOME)/test/smoke_suite/test_resources/qt/bld.inf", + "$(SBS_HOME)/test/smoke_suite/test_resources/qt/helloworldqt.loc", + "$(SBS_HOME)/test/smoke_suite/test_resources/qt/helloworldqt.rss", + "$(SBS_HOME)/test/smoke_suite/test_resources/qt/helloworldqt_reg.rss", + "$(SBS_HOME)/test/smoke_suite/test_resources/qt/helloworldqt_template.pkg", + "$(SBS_HOME)/test/smoke_suite/test_resources/qt/Makefile", + "$(EPOCROOT)/epoc32/release/armv5/udeb/helloworldqt.exe", + "$(EPOCROOT)/epoc32/release/armv5/udeb/helloworldqt.exe.map", + "$(EPOCROOT)/epoc32/release/armv5/urel/helloworldqt.exe", + "$(EPOCROOT)/epoc32/release/armv5/urel/helloworldqt.exe.map", + "$(EPOCROOT)/epoc32/release/winscw/udeb/helloworldqt.exe", + "$(EPOCROOT)/epoc32/release/winscw/urel/helloworldqt.exe", + "$(EPOCROOT)/epoc32/release/winscw/urel/helloworldqt.exe.map" + ] + t.addbuildtargets('smoke_suite/test_resources/qt/bld.inf', [ + "helloworldqt_exe/armv5/udeb/helloworld.o", + "helloworldqt_exe/armv5/udeb/helloworld.o.d", + "helloworldqt_exe/armv5/urel/helloworld.o", + "helloworldqt_exe/armv5/urel/helloworld.o.d", + "helloworldqt_exe/winscw/udeb/helloworld.o", + "helloworldqt_exe/winscw/udeb/helloworld.o.d", + "helloworldqt_exe/winscw/urel/helloworld.o", + "helloworldqt_exe/winscw/urel/helloworld.o.d" + ]) + t.run("windows") + + return t + diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/test_resources/make_engine_errors/bld.inf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/test/smoke_suite/test_resources/make_engine_errors/bld.inf Mon Feb 01 10:03:36 2010 +0000 @@ -0,0 +1,9 @@ + +PRJ_EXPORTS +with_make_errors.flm /epoc32/tools/makefile_templates/tools/with_make_errors.flm +with_make_errors.xml /epoc32/tools/makefile_templates/tools/with_make_errors.xml + +PRJ_EXTENSIONS +start extension tools/with_make_errors +end + diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/test_resources/make_engine_errors/with_make_errors.flm --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/test/smoke_suite/test_resources/make_engine_errors/with_make_errors.flm Mon Feb 01 10:03:36 2010 +0000 @@ -0,0 +1,10 @@ + +ALL:: a b c + +a: b +b: a + +c: non_existent_&_needs_escaping.txt + +$(call raptor_phony_recipe,name,ALL,,echo "this FLM is rubbish") + diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/test_resources/make_engine_errors/with_make_errors.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/test/smoke_suite/test_resources/make_engine_errors/with_make_errors.xml Mon Feb 01 10:03:36 2010 +0000 @@ -0,0 +1,7 @@ + + + + + + + diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/toolchain_macros.py --- a/sbsv2/raptor/test/smoke_suite/toolchain_macros.py Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/test/smoke_suite/toolchain_macros.py Mon Feb 01 10:03:36 2010 +0000 @@ -1,5 +1,5 @@ # -# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). # All rights reserved. # This component and the accompanying materials are made available # under the terms of the License "Eclipse Public License v1.0" @@ -37,14 +37,14 @@ count = 0 for toolchain in sorted(toolchains.keys()): - t.id = "0103" + string.ascii_lowercase[count] + t.id = "0095" + string.ascii_lowercase[count] t.name = rootname % (toolchain, "clean") t.command = rootcommand + toolchain + " clean" t.mustmatch_singleline = [] t.run() count += 1 - t.id = "0103" + string.ascii_lowercase[count] + t.id = "0095" + string.ascii_lowercase[count] t.name = rootname % (toolchain, "build") t.command = rootcommand + toolchain mustmatch = [] @@ -54,7 +54,7 @@ t.run() count += 1 - t.id = "103" + t.id = "95" t.name = "toolchain_macros" t.print_result() return t diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/tracecompiler_general.py --- a/sbsv2/raptor/test/smoke_suite/tracecompiler_general.py Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/test/smoke_suite/tracecompiler_general.py Mon Feb 01 10:03:36 2010 +0000 @@ -1,3 +1,18 @@ +# +# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# from raptor_tests import SmokeTest from raptor_tests import AntiTargetSmokeTest @@ -199,7 +214,7 @@ failed.append(t.name) - t.name = "traceccompiler_general" + t.name = "tracecompiler_general" t.result = result print "\nOverall Result : " + result.upper() + "\n" diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/tracecompiler_whatlog.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/test/smoke_suite/tracecompiler_whatlog.py Mon Feb 01 10:03:36 2010 +0000 @@ -0,0 +1,62 @@ +# +# Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# + +from raptor_tests import CheckWhatSmokeTest,AntiTargetSmokeTest +import re + +def run(): + t = CheckWhatSmokeTest() + t.description = "Trace Compiler Whatlog test" + t.id = "xxx" + t.name = "tracecompiler_whatlog" + t.usebash = True + t.command = "sbs -b smoke_suite/test_resources/tracecompiler/testTC/group/bld.inf -c armv5.tracecompiler -m ${SBSMAKEFILE} -f ${SBSLOGFILE} && cat ${SBSLOGFILE}" + t.hostossensitive = False + t.regexlinefilter = re.compile("^<(whatlog|export|build>|resource>|bitmap>)") + t.targets = [ + "$(EPOCROOT)/epoc32/release/armv5/lib/testTC.dso", + "$(EPOCROOT)/epoc32/release/armv5/lib/testTC{000a0000}.dso", + "$(EPOCROOT)/epoc32/release/armv5/lib/testTC{000a0000}.lib", + "$(EPOCROOT)/epoc32/release/armv5/lib/testTC.lib", + "$(EPOCROOT)/epoc32/release/armv5/udeb/testTC.dll", + "$(EPOCROOT)/epoc32/release/armv5/udeb/testTC.dll.map", + "$(EPOCROOT)/epoc32/release/armv5/urel/testTC.dll", + "$(EPOCROOT)/epoc32/release/armv5/urel/testTC.dll.map", + "$(SBS_HOME)/test/smoke_suite/test_resources/tracecompiler/testTC/traces/wlanhwinitTraces.h", + "$(SBS_HOME)/test/smoke_suite/test_resources/tracecompiler/testTC/traces/wlanhwinitmainTraces.h", + "$(SBS_HOME)/test/smoke_suite/test_resources/tracecompiler/testTC/traces/wlanhwinitpermparserTraces.h", + "$(SBS_HOME)/test/smoke_suite/test_resources/tracecompiler/testTC/traces/fixed_id.definitions", + "$(EPOCROOT)/epoc32/ost_dictionaries/testTC_0x1000008d_Dictionary.xml", + "$(EPOCROOT)/epoc32/include/internal/symbiantraces/autogen/testTC_0x1000008d_TraceDefinitions.h" + ] + t.stdout = [ + "", + "", + "$(EPOCROOT)/epoc32/release/armv5/lib/testTC.dso", + "$(EPOCROOT)/epoc32/release/armv5/lib/testTC{000a0000}.dso", + "$(EPOCROOT)/epoc32/release/armv5/lib/testTC{000a0000}.lib", + "$(EPOCROOT)/epoc32/release/armv5/lib/testTC.lib", + "$(EPOCROOT)/epoc32/release/armv5/udeb/testTC.dll", + "$(EPOCROOT)/epoc32/release/armv5/udeb/testTC.dll.map", + "$(EPOCROOT)/epoc32/release/armv5/urel/testTC.dll", + "$(EPOCROOT)/epoc32/release/armv5/urel/testTC.dll.map", + "$(EPOCROOT)/epoc32/ost_dictionaries/testTC_0x1000008d_Dictionary.xml", + "$(EPOCROOT)/epoc32/include/internal/SymbianTraces/autogen/testTC_0x1000008d_TraceDefinitions.h" + ] + t.run("windows") + + return t + diff -r 2bc875af3200 -r 4e477ddf2eed sbsv2/raptor/test/smoke_suite/whatcomp.py --- a/sbsv2/raptor/test/smoke_suite/whatcomp.py Tue Jan 26 09:43:47 2010 +0000 +++ b/sbsv2/raptor/test/smoke_suite/whatcomp.py Mon Feb 01 10:03:36 2010 +0000 @@ -1,5 +1,5 @@ # -# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). # All rights reserved. # This component and the accompanying materials are made available # under the terms of the License "Eclipse Public License v1.0" @@ -58,7 +58,7 @@ warnings = 0 t.id = "0106" - t.name = "filter_whatcomp_sbs_filter" + t.name = "whatcomp" t.description = description t.command = command % "arm.v5.urel.gcce4_4_1" t.targets = targets