author | Richard Taylor <richard.i.taylor@nokia.com> |
Fri, 30 Apr 2010 16:52:27 +0100 | |
branch | wip |
changeset 506 | efe4a967495a |
parent 393 | 629079c72ee4 |
child 463 | 92c43194abb5 |
permissions | -rw-r--r-- |
3 | 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 | 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 |
||
19 |
def run(): |
|
20 |
t = SmokeTest() |
|
21 |
t.id = "30" |
|
22 |
t.name = "resource" |
|
23 |
t.command = "sbs -b smoke_suite/test_resources/resource/group/bld.inf -b smoke_suite/test_resources/simple_gui/Bld.inf RESOURCE" |
|
24 |
t.targets = [ |
|
25 |
"$(EPOCROOT)/epoc32/include/testresource.rsg", |
|
26 |
"$(EPOCROOT)/epoc32/include/testresource.hrh", |
|
27 |
"$(EPOCROOT)/epoc32/data/z/resource/testresource/testresource.r01", |
|
28 |
"$(EPOCROOT)/epoc32/data/z/resource/testresource/testresource.rsc", |
|
29 |
"$(EPOCROOT)/epoc32/localisation/group/testresource.info", |
|
30 |
"$(EPOCROOT)/epoc32/localisation/testresource/rsc/testresource.rpp", |
|
31 |
||
32 |
"$(EPOCROOT)/epoc32/data/z/resource/apps/helloworld.mbm", |
|
33 |
"$(EPOCROOT)/epoc32/localisation/group/helloworld.info", |
|
34 |
"$(EPOCROOT)/epoc32/release/winscw/udeb/z/resource/apps/helloworld.mbm", |
|
35 |
"$(EPOCROOT)/epoc32/release/winscw/urel/z/resource/apps/helloworld.mbm", |
|
36 |
"$(EPOCROOT)/epoc32/include/helloworld.rsg", |
|
37 |
"$(EPOCROOT)/epoc32/data/z/resource/apps/helloworld.rsc", |
|
38 |
"$(EPOCROOT)/epoc32/localisation/helloworld/rsc/helloworld.rpp", |
|
39 |
"$(EPOCROOT)/epoc32/data/z/private/10003a3f/apps/helloworld_reg.rsc", |
|
40 |
"$(EPOCROOT)/epoc32/localisation/helloworld_reg/rsc/helloworld_reg.rpp", |
|
41 |
"$(EPOCROOT)/epoc32/localisation/group/helloworld_reg.info", |
|
42 |
"$(EPOCROOT)/epoc32/release/winscw/udeb/z/resource/apps/helloworld.rsc", |
|
43 |
"$(EPOCROOT)/epoc32/release/winscw/urel/z/resource/apps/helloworld.rsc", |
|
44 |
"$(EPOCROOT)/epoc32/release/winscw/udeb/z/private/10003a3f/apps/helloworld_reg.rsc", |
|
45 |
"$(EPOCROOT)/epoc32/release/winscw/urel/z/private/10003a3f/apps/helloworld_reg.rsc" |
|
46 |
] |
|
47 |
||
48 |
t.addbuildtargets('smoke_suite/test_resources/resource/group/bld.inf', [ |
|
49 |
"testresource_/testresource_resource_testresource2_sc.rpp.d", |
|
50 |
"testresource_/testresource_resource_testresource3_02.rpp", |
|
51 |
"testresource_/testresource_resource_testresource3_02.rpp.d", |
|
52 |
"testresource_/testresource_resource_testresource3_sc.rpp", |
|
53 |
"testresource_/testresource_resource_testresource3_sc.rpp.d", |
|
54 |
"testresource_/testresource_resource_testresource_01.rpp", |
|
55 |
"testresource_/testresource_resource_testresource_01.rpp.d", |
|
56 |
"testresource_/testresource_resource_testresource_sc.rpp", |
|
57 |
"testresource_/testresource_resource_testresource_sc.rpp.d"]) |
|
58 |
||
59 |
t.addbuildtargets('smoke_suite/test_resources/simple_gui/Bld.inf', [ |
|
60 |
"helloworld_exe/helloworld.mbm_bmconvcommands", |
|
61 |
"helloworld_exe/helloworld__resource_apps_sc.rpp", |
|
62 |
"helloworld_exe/helloworld__resource_apps_sc.rpp.d", |
|
63 |
"helloworld_reg_exe/helloworld_reg__private_10003a3f_apps_sc.rpp", |
|
64 |
"helloworld_reg_exe/helloworld_reg__private_10003a3f_apps_sc.rpp.d"]) |
|
65 |
||
393
629079c72ee4
Suppress trigraph warnings in resource file preprocessing.
Jon Chatten
parents:
260
diff
changeset
|
66 |
t.mustnotmatch = ["HelloWorld.rss.* warning: trigraph"] |
629079c72ee4
Suppress trigraph warnings in resource file preprocessing.
Jon Chatten
parents:
260
diff
changeset
|
67 |
|
3 | 68 |
t.run() |
69 |
return t |