sbsv2/raptor/test/smoke_suite/resource.py
author timothy.murphy@nokia.com
Mon, 05 Apr 2010 17:04:25 +0100
branchfix
changeset 463 92c43194abb5
parent 393 629079c72ee4
child 466 b9e5cf94aac3
permissions -rw-r--r--
test: resource dependencies - to be used when ensuring that depcrunching works
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
     1
#
260
6956be913ed6 apply review #3865 comments
Richard Taylor <richard.i.taylor@nokia.com>
parents: 258
diff changeset
     2
# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
3
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
     3
# All rights reserved.
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
     4
# This component and the accompanying materials are made available
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
     5
# under the terms of the License "Eclipse Public License v1.0"
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
     6
# which accompanies this distribution, and is available
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
     7
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
     8
#
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
     9
# Initial Contributors:
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    10
# Nokia Corporation - initial contribution.
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    11
#
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    12
# Contributors:
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    13
#
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    14
# Description: 
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    15
#
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    16
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    17
from raptor_tests import SmokeTest
463
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    18
from raptor_tests import ReplaceEnvs
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    19
from raptor_meta import BldInfFile
3
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    20
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    21
def run():
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    22
	t = SmokeTest()
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    23
	t.id = "30"
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    24
	t.name =  "resource"
463
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    25
	t.command = "sbs  -b smoke_suite/test_resources/simple_gui/Bld.inf RESOURCE"
3
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    26
	t.targets = [
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    27
		"$(EPOCROOT)/epoc32/data/z/resource/apps/helloworld.mbm",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    28
		"$(EPOCROOT)/epoc32/localisation/group/helloworld.info",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    29
		"$(EPOCROOT)/epoc32/release/winscw/udeb/z/resource/apps/helloworld.mbm",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    30
		"$(EPOCROOT)/epoc32/release/winscw/urel/z/resource/apps/helloworld.mbm",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    31
		"$(EPOCROOT)/epoc32/include/helloworld.rsg",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    32
		"$(EPOCROOT)/epoc32/data/z/resource/apps/helloworld.rsc",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    33
		"$(EPOCROOT)/epoc32/localisation/helloworld/rsc/helloworld.rpp",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    34
		"$(EPOCROOT)/epoc32/data/z/private/10003a3f/apps/helloworld_reg.rsc",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    35
		"$(EPOCROOT)/epoc32/localisation/helloworld_reg/rsc/helloworld_reg.rpp",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    36
		"$(EPOCROOT)/epoc32/localisation/group/helloworld_reg.info",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    37
		"$(EPOCROOT)/epoc32/release/winscw/udeb/z/resource/apps/helloworld.rsc",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    38
		"$(EPOCROOT)/epoc32/release/winscw/urel/z/resource/apps/helloworld.rsc",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    39
		"$(EPOCROOT)/epoc32/release/winscw/udeb/z/private/10003a3f/apps/helloworld_reg.rsc",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    40
		"$(EPOCROOT)/epoc32/release/winscw/urel/z/private/10003a3f/apps/helloworld_reg.rsc"	
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    41
		]
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    42
	
463
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    43
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    44
	t.addbuildtargets('smoke_suite/test_resources/simple_gui/Bld.inf', [
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    45
		"helloworld_exe/helloworld.mbm_bmconvcommands",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    46
		"helloworld_exe/helloworld__resource_apps_sc.rpp",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    47
		"helloworld_exe/helloworld__resource_apps_sc.rpp.d",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    48
		"helloworld_reg_exe/helloworld_reg__private_10003a3f_apps_sc.rpp",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    49
		"helloworld_reg_exe/helloworld_reg__private_10003a3f_apps_sc.rpp.d"])
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    50
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    51
	t.mustnotmatch = ["HelloWorld.rss.* warning: trigraph"]
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    52
	
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    53
	t.run()
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    54
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    55
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    56
	t.id="30a"
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    57
	t.name =  "no_depend_gen_resource"
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    58
	t.usebash = True
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    59
	t.description =  """Check that dependent resources still build correctly even when we turn dependency generation off.  This
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    60
			    test cannot reliably ensure that the dependencies are correct
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    61
			 """
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    62
	buildLocation = ReplaceEnvs("$(EPOCROOT)/epoc32/build/") + BldInfFile.outputPathFragment('smoke_suite/test_resources/resource/group/bld.inf')
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    63
	res_depfile= buildLocation+"/dependentresource_/dependentresource_resource_dependentresource_sc.rpp.d"
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    64
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    65
	t.targets = [
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    66
		"$(EPOCROOT)/epoc32/include/testresource.rsg",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    67
		"$(EPOCROOT)/epoc32/include/testresource.hrh",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    68
		"$(EPOCROOT)/epoc32/data/z/resource/testresource/testresource.r01",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    69
		"$(EPOCROOT)/epoc32/data/z/resource/testresource/testresource.rsc",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    70
		"$(EPOCROOT)/epoc32/release/armv5/urel/testresource.exe",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    71
		"$(EPOCROOT)/epoc32/localisation/group/testresource.info",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    72
		"$(EPOCROOT)/epoc32/localisation/testresource/rsc/testresource.rpp",
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    73
		res_depfile
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    74
		]
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    75
3
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    76
	t.addbuildtargets('smoke_suite/test_resources/resource/group/bld.inf', [	
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    77
		"testresource_/testresource_resource_testresource2_sc.rpp.d",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    78
		"testresource_/testresource_resource_testresource3_02.rpp",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    79
		"testresource_/testresource_resource_testresource3_02.rpp.d",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    80
		"testresource_/testresource_resource_testresource3_sc.rpp",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    81
		"testresource_/testresource_resource_testresource3_sc.rpp.d",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    82
		"testresource_/testresource_resource_testresource_01.rpp",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    83
		"testresource_/testresource_resource_testresource_01.rpp.d",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    84
		"testresource_/testresource_resource_testresource_sc.rpp",
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    85
		"testresource_/testresource_resource_testresource_sc.rpp.d"])
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    86
463
92c43194abb5 test: resource dependencies - to be used when ensuring that depcrunching works
timothy.murphy@nokia.com
parents: 393
diff changeset
    87
	t.command = "sbs -b smoke_suite/test_resources/resource/group/bld.inf  -c arm.v5.urel.gcce4_4_1 reallyclean ; sbs --no-depend-generate -j 16 -b smoke_suite/test_resources/resource/group/bld.inf -c arm.v5.urel.gcce4_4_1 -f ${SBSLOGFILE} -m ${SBSMAKEFILE} && grep 'epoc32.include.testresource.rsg' %s " % (res_depfile)
3
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    88
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    89
	t.run()
e1eecf4d390d Team sf branch.
tnmurphy@4GBL06592.nokia.com
parents:
diff changeset
    90
	return t