# HG changeset patch # User Richard Taylor # Date 1267550033 0 # Node ID e6d6373c0c3a047e976cc44207e7755bd3a8e8fb # Parent 15d964981d940601fad8380076a06dcb96a71dd6# Parent 2db10eac415a4acbc3a1a257a4659ce7dd5f1b94 merge diff -r 15d964981d94 -r e6d6373c0c3a sbsv2/raptor/RELEASE-NOTES.txt diff -r 15d964981d94 -r e6d6373c0c3a sbsv2/raptor/python/raptor.py --- a/sbsv2/raptor/python/raptor.py Tue Mar 02 16:28:30 2010 +0000 +++ b/sbsv2/raptor/python/raptor.py Tue Mar 02 17:13:53 2010 +0000 @@ -902,7 +902,6 @@ buildUnitsToBuild = set() - for c in set(configNames): self.Debug("BuildUnit: %s", c) try: @@ -910,7 +909,7 @@ gb = x.GenerateBuildUnits(self.cache) buildUnitsToBuild.update( gb ) except Exception, e: - self.FatalError(str(e)) + self.Error(str(e)) for b in buildUnitsToBuild: self.Info("Buildable configuration '%s'", b.name) diff -r 15d964981d94 -r e6d6373c0c3a sbsv2/raptor/python/raptor_data.py --- a/sbsv2/raptor/python/raptor_data.py Tue Mar 02 16:28:30 2010 +0000 +++ b/sbsv2/raptor/python/raptor_data.py Tue Mar 02 17:13:53 2010 +0000 @@ -1026,7 +1026,7 @@ def GenerateBuildUnits(self, cache): units = [] - + missing_variants = [] for r in self.childRefs: refMods = r.GetModifiers(cache) @@ -1055,7 +1055,7 @@ Reference.__init__(self, ref) def __str__(self): - return "<%s />" % (prefix, self.ref, ".".join(self.modifiers)) + return "" % (self.ref, ".".join(self.modifiers)) def Resolve(self, cache): try: diff -r 15d964981d94 -r e6d6373c0c3a sbsv2/raptor/test/smoke_suite/keepgoing.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/test/smoke_suite/keepgoing.py Tue Mar 02 17:13:53 2010 +0000 @@ -0,0 +1,92 @@ +# +# 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.description = """Raptor should keep going and build as much as possible with the -k option specified.""" + + command = "sbs -b smoke_suite/test_resources/simple/bld.inf -k" + config = " --configpath=test/smoke_suite/test_resources/keepgoing" + targets = [ + "$(EPOCROOT)/epoc32/release/armv5/udeb/test.exe", + "$(EPOCROOT)/epoc32/release/armv5/udeb/test.exe.map", + "$(EPOCROOT)/epoc32/release/armv5/urel/test.exe", + "$(EPOCROOT)/epoc32/release/armv5/urel/test.exe.map", + "$(EPOCROOT)/epoc32/release/armv5/udeb/test.exe.sym", + "$(EPOCROOT)/epoc32/release/armv5/urel/test.exe.sym" + ] + buildtargets = [ + "test_/armv5/udeb/test.o", + "test_/armv5/urel/test.o", + "test_/armv5/udeb/test.o.d", + "test_/armv5/udeb/test3.o.d", + "test_/armv5/udeb/test4.o.d", + "test_/armv5/udeb/test5.o.d", + "test_/armv5/udeb/test1.o.d", + "test_/armv5/udeb/test6.o.d", + "test_/armv5/udeb/test2.o.d", + "test_/armv5/udeb/test3.o", + "test_/armv5/udeb/test4.o", + "test_/armv5/udeb/test5.o", + "test_/armv5/udeb/test1.o", + "test_/armv5/udeb/test6.o", + "test_/armv5/udeb/test2.o", + "test_/armv5/urel/test.o.d", + "test_/armv5/urel/test3.o.d", + "test_/armv5/urel/test4.o.d", + "test_/armv5/urel/test5.o.d", + "test_/armv5/urel/test1.o.d", + "test_/armv5/urel/test6.o.d", + "test_/armv5/urel/test2.o.d", + "test_/armv5/urel/test3.o", + "test_/armv5/urel/test4.o", + "test_/armv5/urel/test5.o", + "test_/armv5/urel/test1.o", + "test_/armv5/urel/test6.o", + "test_/armv5/urel/test2.o", + "test_/armv5/udeb/test_udeb_objects.via", + "test_/armv5/urel/test_urel_objects.via" + ] + + # using a non-existent config with -c should build any independent configs + t.id = "115a" + t.name = "keepgoing_bad_config" + t.command = command + " -c armv5 -c armv5.bogus" + t.targets = targets + t.addbuildtargets("smoke_suite/test_resources/simple/bld.inf", buildtargets) + t.mustmatch = ["sbs: error: Unknown build configuration 'armv5.bogus'"] + t.warnings = 0 + t.errors = 1 + t.returncode = 1 + t.run() + + # using groups with bad sub-groups should build any independent groups + t.id = "115b" + t.name = "keepgoing_bad_subgroup" + t.command = command + config + " -c lots_of_products" + t.mustmatch = ["sbs: error: Unknown build configuration 'armv5.bogus'"] + t.warnings = 0 + t.errors = 1 + t.returncode = 1 + t.run() + + # summarise + t.id = "115" + t.name = "keepgoing" + t.print_result() + return t diff -r 15d964981d94 -r e6d6373c0c3a sbsv2/raptor/test/smoke_suite/test_resources/keepgoing/groups.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sbsv2/raptor/test/smoke_suite/test_resources/keepgoing/groups.xml Tue Mar 02 17:13:53 2010 +0000 @@ -0,0 +1,16 @@ + + + + + + + + + + + + +