591
|
1 |
#
|
|
2 |
# Copyright (c) 2009-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 |
from raptor_tests import ReplaceEnvs
|
|
19 |
from raptor_meta import BldInfFile
|
|
20 |
|
|
21 |
def run():
|
|
22 |
t = SmokeTest()
|
|
23 |
t.id = "30"
|
|
24 |
t.name = "resource"
|
|
25 |
t.command = "sbs -b smoke_suite/test_resources/simple_gui/Bld.inf RESOURCE"
|
|
26 |
t.targets = [
|
|
27 |
"$(EPOCROOT)/epoc32/data/z/resource/apps/helloworld.mbm",
|
|
28 |
"$(EPOCROOT)/epoc32/release/winscw/udeb/z/resource/apps/helloworld.mbm",
|
|
29 |
"$(EPOCROOT)/epoc32/release/winscw/urel/z/resource/apps/helloworld.mbm",
|
|
30 |
"$(EPOCROOT)/epoc32/include/helloworld.rsg",
|
|
31 |
"$(EPOCROOT)/epoc32/data/z/resource/apps/helloworld.rsc",
|
|
32 |
"$(EPOCROOT)/epoc32/data/z/private/10003a3f/apps/helloworld_reg.rsc",
|
|
33 |
"$(EPOCROOT)/epoc32/release/winscw/udeb/z/resource/apps/helloworld.rsc",
|
|
34 |
"$(EPOCROOT)/epoc32/release/winscw/urel/z/resource/apps/helloworld.rsc",
|
|
35 |
"$(EPOCROOT)/epoc32/release/winscw/udeb/z/private/10003a3f/apps/helloworld_reg.rsc",
|
|
36 |
"$(EPOCROOT)/epoc32/release/winscw/urel/z/private/10003a3f/apps/helloworld_reg.rsc"
|
|
37 |
]
|
|
38 |
|
|
39 |
|
|
40 |
t.addbuildtargets('smoke_suite/test_resources/simple_gui/Bld.inf', [
|
|
41 |
"helloworld_exe/helloworld.mbm_bmconvcommands",
|
|
42 |
"helloworld_exe/helloworld_HelloWorld_sc.rpp",
|
|
43 |
"helloworld_exe/helloworld_HelloWorld_sc.rpp.d",
|
|
44 |
"helloworld_reg_exe/helloworld_reg_HelloWorld_reg_sc.rpp",
|
|
45 |
"helloworld_reg_exe/helloworld_reg_HelloWorld_reg_sc.rpp.d"])
|
|
46 |
|
|
47 |
t.mustnotmatch = ["HelloWorld.rss.* warning: trigraph"]
|
|
48 |
|
|
49 |
t.run()
|
|
50 |
|
|
51 |
t.id="30a"
|
|
52 |
t.name = "no_depend_gen_resource"
|
|
53 |
t.usebash = True
|
|
54 |
t.description = """Check that dependent resources still build correctly even when we turn dependency generation off. This
|
|
55 |
test cannot really do this reliably, if you think about it, since it can't force make to try building resources
|
|
56 |
in the 'wrong' order. What it does attempt is to check that
|
|
57 |
the ultimately generated dependency file is ok.
|
|
58 |
N.B. It also attempts to ensure that the dependency file is 'minimal' i.e. that it only references .mbg and .rsg files
|
|
59 |
that might come from other parts of the same build. This is important for performance in situations where --no-depend-generate
|
|
60 |
is used because the weight of 'complete' dependency information would overwhelm make.
|
|
61 |
"""
|
|
62 |
buildLocation = ReplaceEnvs("$(EPOCROOT)/epoc32/build/") + BldInfFile.outputPathFragment('smoke_suite/test_resources/resource/group/bld.inf')
|
|
63 |
res_depfile= buildLocation+"/dependentresource_/dependentresource_dependentresource_sc.rpp.d"
|
|
64 |
|
|
65 |
t.targets = [
|
|
66 |
"$(EPOCROOT)/epoc32/include/testresource.rsg",
|
|
67 |
"$(EPOCROOT)/epoc32/include/testresource.hrh",
|
|
68 |
"$(EPOCROOT)/epoc32/data/z/resource/testresource/testresource.r01",
|
|
69 |
"$(EPOCROOT)/epoc32/data/z/resource/testresource/testresource.rsc",
|
|
70 |
"$(EPOCROOT)/epoc32/release/armv5/urel/testresource.exe",
|
|
71 |
res_depfile
|
|
72 |
]
|
|
73 |
|
|
74 |
t.addbuildtargets('smoke_suite/test_resources/resource/group/bld.inf', [
|
|
75 |
"testresource_/testresource_testresource_02.rpp",
|
|
76 |
"testresource_/testresource_testresource_01.rpp",
|
|
77 |
"testresource_/testresource_testresource_01.rpp.d",
|
|
78 |
"testresource_/testresource_testresource_sc.rpp"])
|
|
79 |
|
|
80 |
t.command = "sbs -b smoke_suite/test_resources/resource/group/bld.inf -c armv5_urel reallyclean ; sbs --no-depend-generate -j 16 -b smoke_suite/test_resources/resource/group/bld.inf -c armv5_urel -f ${SBSLOGFILE} -m ${SBSMAKEFILE} && grep 'epoc32.include.testresource.rsg' %s && wc -l %s " % (res_depfile, res_depfile)
|
|
81 |
|
|
82 |
t.mustnotmatch = []
|
|
83 |
|
|
84 |
t.mustmatch = [
|
|
85 |
"[23] .*.dependentresource_.dependentresource_dependentresource_sc.rpp.d"
|
|
86 |
]
|
|
87 |
|
|
88 |
t.run()
|
|
89 |
|
|
90 |
t.name = 'resource'
|
|
91 |
t.print_result()
|
|
92 |
return t
|