# HG changeset patch # User yiluzhu # Date 1261049693 0 # Node ID b0785ef0e8cd078db0b7812507d3b82541a86e01 # Parent 14d284e7571906b7f1dca96933ce8b975788daf6 resubmit fix for DPDEF141787 which was dropped off during merging diff -r 14d284e75719 -r b0785ef0e8cd sbsv2/raptor/python/plugins/filter_terminal.py --- a/sbsv2/raptor/python/plugins/filter_terminal.py Fri Dec 11 15:23:56 2009 +0000 +++ b/sbsv2/raptor/python/plugins/filter_terminal.py Thu Dec 17 11:34:53 2009 +0000 @@ -312,7 +312,7 @@ r = Recipe.factory(self.recipe_dict['name'], "".join(self.recipeBody)) warnings = r.warnings() info = r.info() - if len(warnings) > 0: + if len(warnings) or len(info): if not self.analyseonly: for L in self.recipeBody: if not L.startswith('+'): diff -r 14d284e75719 -r b0785ef0e8cd sbsv2/raptor/test/smoke_suite/dll_armv5_winscw_freeze.py --- a/sbsv2/raptor/test/smoke_suite/dll_armv5_winscw_freeze.py Fri Dec 11 15:23:56 2009 +0000 +++ b/sbsv2/raptor/test/smoke_suite/dll_armv5_winscw_freeze.py Thu Dec 17 11:34:53 2009 +0000 @@ -86,6 +86,22 @@ t.run() + + t.id = "0012d" + t.name = "efreeze_info" + + t.command = "sbs -b smoke_suite/test_resources/unfrozen/freeze.inf" \ + + " -p unfrozensymbols_for_freeze.mmp -c winscw freeze" + + t.mustmatch = [ + "EFREEZE: DEF file up to date" + ] + t.warnings = 0 + t.errors = 0 + + t.run() + + t.id = "12" t.name = "dll_armv5_winscw_freeze" t.print_result()