|
1 ; INI file for CapTest scripts |
|
2 ; Copyright Symbian 2005 |
|
3 ; created john.laxton@symbian.com Wed Dec 18 09:55:16 GMT Standard Time 2002 |
|
4 |
|
5 ; Further down this INI file there are sections for each |
|
6 ; valid TARGET-VERSION combination. Scripts use the TARGET |
|
7 ; and VERSION definitions here to select one of these sections. |
|
8 [Build] |
|
9 TARGET=Winscw |
|
10 VERSION=udeb |
|
11 VERSION=urel |
|
12 |
|
13 ; If INI files are dumped from a CapTest script, any definitions |
|
14 ; that do not have a section are put here. |
|
15 [Default] |
|
16 |
|
17 [File] |
|
18 ; The path to the root from a template directory. |
|
19 ; It is used by the scripts, which run with the |
|
20 ; template directory as their current directory. |
|
21 SOURCE_ROOT=..\Src |
|
22 |
|
23 ; The path to the root from the generated source |
|
24 ; directory. This is the current directory during |
|
25 ; a build. |
|
26 BUILD_ROOT=..\Build |
|
27 |
|
28 ; C++ include file which will be parsed for constants |
|
29 ; such as max file name length, and capabilities. |
|
30 CONSTANT_FILE=\epoc32\include\e32const.h |
|
31 CAPABILITIES_CONSTANT_FILE=\epoc32\include\e32capability.h |
|
32 |
|
33 ; default location of common templates and this INI file |
|
34 COMMON_DIR=..\Common\ |
|
35 |
|
36 ; name of the lof file written in the current directory during generation |
|
37 LOG_FILE=CapTestWiz.log |
|
38 |
|
39 ; name of a CSV file containing the definition of the server under test |
|
40 SERVER_TABLE=Server.csv |
|
41 |
|
42 ; The name of the summary generated by CapTestSumm. |
|
43 ; The server name will be prepended to this, and it will be written |
|
44 ; to the TEST_RESULTS directory specified below. |
|
45 TEST_OUTPUT=CapTestSumm.html |
|
46 |
|
47 [Name] |
|
48 |
|
49 ; The default maximum name length. A value in CONSTANT_FILE, defined above, |
|
50 ; will override this value, if present. |
|
51 MAX_LENGTH=40 |
|
52 |
|
53 ; Percentage column widths for the report output by CapTestSumm. |
|
54 [TableColumnWidth] |
|
55 NUMBER=5 |
|
56 MESSAGE=15 |
|
57 LOADMOD=15 |
|
58 ACTION=13 |
|
59 RESULT=12 |
|
60 KIND=5 |
|
61 CAPABILITY=30 |
|
62 MASK=5 |
|
63 |
|
64 ; Negative tests have capabilities calculated by generating all the combinations |
|
65 ; of required capabilities, except the combination in which all are present. For |
|
66 ; APIs that require many capabilities, this can be a very large number, so it is |
|
67 ; limited here. A scheduletest subscript file is generated for each test step. |
|
68 [Test] |
|
69 MAX_NEGATIVE_TESTS=(1<<8) - 1 |
|
70 |
|
71 ; Definitions that are dependent on the TARGET-VERSION combination. |
|
72 ; ----------------------------------------------------------------- |
|
73 [Wins_udeb] |
|
74 SCHED_TEST_SRC=TestExecute.exe |
|
75 TEST_RESULTS=\epoc32\wins\c\Logs\TestExecute |
|
76 REQUIRED_CAPABILITIES=1<<2 |
|
77 |
|
78 [Wins_urel] |
|
79 SCHED_TEST_SRC=TestExecute.exe |
|
80 TEST_RESULTS=\epoc32\wins\c\Logs\TestExecute |
|
81 REQUIRED_CAPABILITIES=1<<2 |
|
82 |
|
83 [Winscw_udeb] |
|
84 SCHED_TEST_SRC=TestExecute.exe |
|
85 TEST_RESULTS=\epoc32\winscw\c\Logs\TestExecute |
|
86 REQUIRED_CAPABILITIES=1<<2 |
|
87 |
|
88 [Winscw_urel] |
|
89 SCHED_TEST_SRC=TestExecute.exe |
|
90 TEST_RESULTS=\epoc32\winscw\c\Logs\TestExecute |
|
91 REQUIRED_CAPABILITY=1<<2 |
|
92 |
|
93 [Arm4_urel] |
|
94 SCHED_TEST_SRC=TestExecute.exe |
|
95 TEST_RESULTS=\epoc32\arm4\c\Logs\TestExecute |
|
96 REQUIRED_CAPABILITY=1<<2 |
|
97 |
|
98 |
|
99 ; ----------------------------------------------------------------- |
|
100 |