author | lorewang |
Wed, 01 Dec 2010 16:05:36 +0800 | |
changeset 715 | e0739b8406dd |
parent 674 | 37ee82a83d43 |
permissions | -rw-r--r-- |
591 | 1 |
# |
625
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
2 |
# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies). |
591 | 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 |
||
18 |
from raptor_tests import SmokeTest |
|
19 |
||
20 |
def run(): |
|
21 |
t = SmokeTest() |
|
22 |
t.description = """ |
|
23 |
Tests the creation and content of an .iby romfile for the armv5.test |
|
24 |
configuration. Also tests for creation of relevant test batch files. |
|
641 | 25 |
""" |
591 | 26 |
t.usebash = True |
27 |
# Don't allow -m or -f to be appended |
|
28 |
t.logfileOption = lambda :"" |
|
29 |
t.makefileOption = lambda :"" |
|
641 | 30 |
|
31 |
t.id = "55a" |
|
32 |
# Check content of iby file is correct |
|
33 |
# Check batch files are generated |
|
34 |
t.name = "romfile_general" |
|
35 |
||
36 |
t.command = "sbs -b $(EPOCROOT)/src/ongoing/group/romfile/other_name.inf " \ |
|
37 |
+ "-c armv5.test ROMFILE -m ${SBSMAKEFILE} -f ${SBSLOGFILE} " \ |
|
38 |
+ "&& cat $(EPOCROOT)/epoc32/rom/src/ongoing/group/romfile/armv5test.iby" |
|
39 |
||
591 | 40 |
t.targets = [ |
41 |
"$(EPOCROOT)/epoc32/rom/src/ongoing/group/romfile/armv5test.iby", |
|
674 | 42 |
"$(EPOCROOT)/epoc32/data/z/test/src_ongoing_romfile/armv5.auto.bat", |
43 |
"$(EPOCROOT)/epoc32/data/z/test/src_ongoing_romfile/armv5.manual.bat" |
|
591 | 44 |
] |
45 |
||
46 |
# Check the content of the generated .iby file. |
|
47 |
t.mustmatch = [ |
|
48 |
# The comment that is put at the start of the file. |
|
49 |
r".*// epoc32/rom/src/ongoing/group/romfile/armv5test\.iby\n.*", |
|
50 |
||
51 |
# The batch files that are added by the build system. |
|
674 | 52 |
r".*\ndata=/epoc32/data/z/test/src_ongoing_romfile/armv5\.auto\.bat test/armv5\.auto\.bat\n.*", |
53 |
r".*\ndata=/epoc32/data/z/test/src_ongoing_romfile/armv5\.manual\.bat test/armv5\.manual\.bat\n.*", |
|
591 | 54 |
|
55 |
# Some normal files. |
|
56 |
r".*\nfile=/epoc32/release/##MAIN##/##BUILD##/t_rand\.exe\s+sys/bin/t_rand\.exe\n.*", |
|
57 |
r".*\nfile=/epoc32/release/##MAIN##/##BUILD##/t_swapfsys\.exe\s+sys/bin/t_swapfsys\.exe\n.*", |
|
58 |
r".*\nfile=/epoc32/release/##MAIN##/##BUILD##/t_localtime\.exe\s+sys/bin/t_localtime\.exe\n.*", |
|
59 |
||
60 |
# Some files where the MMP file has the PAGED or UNPAGED keywords. |
|
61 |
r".*\nfile=/epoc32/release/##MAIN##/##BUILD##/t_pagestress\.exe\s+sys/bin/t_pagestress\.exe paged\n.*", |
|
62 |
r".*\nfile=/epoc32/release/##MAIN##/##BUILD##/t_fsys\.exe\s+sys/bin/t_fsys\.exe unpaged\n.*", |
|
63 |
||
64 |
# Some files where the MMP file has the ROMTARGET or RAMTARGET keywords. |
|
65 |
r".*\ndata=/epoc32/release/##MAIN##/##BUILD##/t_prel\.dll\s+/sys/bin/t_prel\.dll attrib=r\n.*", |
|
66 |
r".*\nfile=/epoc32/release/##MAIN##/##BUILD##/t_sysbin\.exe\s+sys/bin/t_sysbin\.exe\n.*", |
|
67 |
r".*\ndata=/epoc32/release/##MAIN##/##BUILD##/t_sysbin\.exe\s+/sys/bin/t_sysbin_ram\.exe attrib=r\n.*", |
|
68 |
r".*\nfile=/epoc32/release/##MAIN##/##BUILD##/t_sysbin\.exe\s+/sys/bin/t_sysbina\.exe\n.*", |
|
69 |
r".*\nfile=/epoc32/release/##MAIN##/##BUILD##/t_sysbin\.exe\s+/system/programs/t_sysbinb\.exe\n.*" |
|
70 |
] |
|
71 |
t.mustnotmatch = [ |
|
72 |
# Try to detect file paths that contain two or more slashes in a row, |
|
73 |
# without flagging C++ style comments. |
|
74 |
r"\w//+\w" |
|
75 |
] |
|
641 | 76 |
t.warnings = 0 if t.onWindows else 2 |
77 |
t.run() |
|
78 |
||
591 | 79 |
|
641 | 80 |
t.id = "55b" |
81 |
# t.targets and t.warnings are the same as above and thus omitted |
|
82 |
t.name = "romfile_whatlog" |
|
83 |
t.command = "sbs -b $(EPOCROOT)/src/ongoing/group/romfile/other_name.inf " \ |
|
84 |
+ "-c armv5.test ROMFILE -f -" |
|
85 |
||
86 |
t.mustmatch = [ |
|
87 |
# Check whatlog output includes batch files and .iby file |
|
88 |
r".*/epoc32/rom/src/ongoing/group/romfile/armv5test.iby</build>.*", |
|
674 | 89 |
r".*/epoc32/data/z/test/src_ongoing_romfile/armv5.auto.bat</build>.*", |
90 |
r".*/epoc32/data/z/test/src_ongoing_romfile/armv5.manual.bat</build>.*" |
|
641 | 91 |
] |
92 |
t.mustnotmatch = [] |
|
93 |
t.run() |
|
591 | 94 |
|
625
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
95 |
|
641 | 96 |
t.id = "55c" |
625
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
97 |
t.name = "romfile_mmp_include_twice" |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
98 |
t.command = "sbs -b $(EPOCROOT)/src/e32test/group/bld.inf " \ |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
99 |
+ "-b $(EPOCROOT)/src/falcon/test/bld.inf " \ |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
100 |
+ "-c armv5.test ROMFILE -m ${SBSMAKEFILE} -f ${SBSLOGFILE} " \ |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
101 |
+ "&& cat $(EPOCROOT)/epoc32/rom/src/e32test/group/armv5test.iby" |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
102 |
|
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
103 |
t.targets = [ |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
104 |
"$(EPOCROOT)/epoc32/rom/src/e32test/group/armv5test.iby" |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
105 |
] |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
106 |
|
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
107 |
# Check the content of the generated .iby file |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
108 |
t.mustmatch = [ |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
109 |
r".*\ndevice\[MAGIC\]=/epoc32/release/##KMAIN##/##BUILD##/d_nanowait\.ldd\s+sys/bin/d_nanowait\.ldd\n.*", |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
110 |
r".*\ndevice\[MAGIC\]=/epoc32/release/##KMAIN##/##BUILD##/d_pagingexample_2_post.ldd\s+sys/bin/d_pagingexample_2_post.ldd\n.*", |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
111 |
] |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
112 |
t.mustnotmatch = [ |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
113 |
# These two files are from two mmp files that included in both bld.inf |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
114 |
# They shouldn't be in the ROM |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
115 |
r".*/d_medch.ldd\s.*" |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
116 |
r".*/d_dma.ldd\s.*" |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
117 |
] |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
118 |
t.warnings = 0 |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
119 |
t.run() |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
120 |
|
641 | 121 |
|
625
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
122 |
t.id = "55" |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
123 |
t.name = "romfile" |
a1925fb7753a
sbs version 2.15.0
Richard Taylor <richard.i.taylor@nokia.com>
parents:
591
diff
changeset
|
124 |
t.print_result() |
591 | 125 |
return t |