Sync with 5.3.0
[deliverable/titan.core.git] / regression_test / cfgFile / module_parameters / assignment / assignment.cfg
CommitLineData
970ed795
EL
1###############################################################################
2# Copyright (c) 2000-2014 Ericsson Telecom AB
3# All rights reserved. This program and the accompanying materials
4# are made available under the terms of the Eclipse Public License v1.0
5# which accompanies this distribution, and is available at
6# http://www.eclipse.org/legal/epl-v10.html
7###############################################################################
8[MODULE_PARAMETERS]
9// Integer
10assignment.tsp_integer_native := 42
11tsp_integer_native_init := 43
12tsp_integer_openssl := 1000000000000
13tsp_integer_openssl_init := 1000000000001
14
15// Float
16tsp_float_1 := 42.0
17tsp_float_1_init := 43.0
18tsp_float_2 := 4.2e+1
19tsp_float_2_init := 4.3e+1
20
21// Boolean
22tsp_boolean_false := false
23*.tsp_boolean_false_init := false
24tsp_boolean_true := true
25tsp_boolean_true_init := true
26
27// Verdict
28tsp_verdict_none := none
29tsp_verdict_inc := inconc
30tsp_verdict_pass := pass
31tsp_verdict_fail := fail
32tsp_verdict_error := error
33tsp_verdict_error_init := error
34
35// Objid
36tsp_objid_number := objid {0 4 0 12345 6789}
37tsp_objid_number_init := objid {0 4 0 12345 6789}
38tsp_objid_name_number := objid {itu_t(0) identified_organization(4) etsi(0) 12345 6789}
39tsp_objid_name_number_init := objid {itu_t(0) identified_organization(4) etsi(0) 12345 6789}
40
41// Bitstring
42tsp_bitstring_0 := '00000000'B
43tsp_bitstring_0_init := '00000000'B
44tsp_bitstring_128 := '10000000'B
45
46// Hexstring
47tsp_hexstring_0:= '0'H
48tsp_hexstring_0_init := '0'H
49tsp_hexstring_FF := 'FF'H
50
51// Charstring
52tsp_charstring_empty := ""
53tsp_charstring_empty_init := ""
54tsp_charstring_fox := "The quick brown fox jumps over the lazy dog"
55
56// Universal charstring
57tsp_univ_charstr_empty := ""
58tsp_univ_charstr_1 := "Character " & char(0, 0, 1, 113) & " is a hungarian letter."
59
60// Enumerated
61tsp_enum1 := ENUM_1
62tsp_enum1_init := ENUM_1
63tsp_enum2 := ENUM_2
64
65// Union
66tsp_MyUnion_field1 := { field1 := 1}
67tsp_MyUnion_field1_init := { field1 := 1}
68tsp_MyUnion_field2 := { field2 := 2}
69tsp_MyUnion_duplicate1 := { field1 := 1, field1 := 2 }
70tsp_MyUnion_duplicate2 := { field1 := 1, field2 := 2 }
71
72// Record
73tsp_record_empty := {}
74tsp_record_empty_init := {}
75tsp_record_MyRec := { field1 := 1, field2 := 2}
76tsp_record_MyRec_init := {field1 := 1, field2 := 2}
77tsp_record_MyRec1 := {field1 := 3}
78tsp_record_MyRec_duplicate := { field1 := 1, field1 := 2, field1 := 3 }
79tsp_record_MyRecursive1 := {field1 := 5}
80tsp_record_MyRecursive2 := {field1 := 1, field2 := {field1 := 2, field2 := {field1 := 3}}}
81enum := {enum := 42}
82
83// Set
84tsp_set_empty := {}
85tsp_set_empty_init := {}
86tsp_set_MySet := { field1 := 1, field2 := 2}
87tsp_set_MySet_init := {field1 := 1, field2 := 2}
88tsp_set_MySet1 := {field1 := 3}
89tsp_set_MyRecursiveSet1 := {field1 := 5}
90tsp_set_MyRecursiveSet2 := {field1 := 1, field2 := {field1 := 2, field2 := {field1 := 3}}}
91
92// Record of
93tsp_ROI_empty := {}
94tsp_ROI := {1, 2, 3}
95tsp_ROI := {1, -, 3}
96tsp_ROI2 := {1, -, 3}
97tsp_ROI_indexed := {[2] := 6, [3] := 28, [5] := 496, [7] := 8128}
98tsp_ROI_indexed2 := {[2] := 6, [5] := 496}
99tsp_ROI_indexed2 := {[3] := 28}
100tsp_ROI_indexed2 := {[7] := 8128}
101tsp_ROROI := {{1, 2}, {2, 3}, {3, 4}}
102tsp_ROROROI := {{{1}, {2}}, {{2}, {3}}, {{3}, {4}}}
103tsp_ROROROI_2 := {{{1,2}, {3,4}}, {{5,6}, {7,8}}, {{9,10}, {11,12}}}
104
105// Set of
106tsp_SOI_empty := {}
107tsp_SOI := {1, 2, 3}
108tsp_SOI := {1, -, 3}
109tsp_SOI2 := {1, -, 3}
110tsp_SOI_indexed := {[2] := 6, [3] := 28, [5] := 496, [7] := 8128}
111tsp_SOI_indexed2 := {[2] := 6, [5] := 496}
112tsp_SOI_indexed2 := {[3] := 28}
113tsp_SOI_indexed2 := {[7] := 8128}
114tsp_SOSOI := {{1, 2}, {2, 3}, {3, 4}}
115tsp_SOSOSOI := {{{1}, {2}}, {{2}, {3}}, {{3}, {4}}}
116tsp_SOSOSOI_2 := {{{1,2}, {3,4}}, {{5,6}, {7,8}}, {{9,10}, {11,12}}}
117
118// Array
119tsp_array_2 := {[0] := 1, [2] := 3}
120tsp_array_3 := {1, -, 3}
121tsp_array_4 := {1, -, 3}
122tsp_array_4 := {-, 2, -}
123tsp_array_5 := {2, 2, -}
124tsp_array_5 := {4, 5, 6}
125
126// Anytype
127tsp_anytype_int := {integer := 42}
128tsp_anytype_float := {float := 42.0}
129tsp_anytype_MyRec := {MyRec := {field1 := 1, field2 := 2}}
130
131// Component
a38c6d4c 132tsp_component_null := null
970ed795
EL
133
134// Default
a38c6d4c 135tsp_default := null
970ed795
EL
136
137// Nested array, record of & set of
138tsp_nested.roi := { 4, 5 };
139tsp_nested.soi := { 6, 7, 8 };
140tsp_nested.roi[2] := 9;
141
142tsp_ro_nested[0].roi := { 4, 5 };
143tsp_ro_nested[0].soi := { 6, 7, 8 };
144tsp_ro_nested[1].roi := { 14, 15 };
145tsp_ro_nested[1].soi := { 16, 17, 18 };
146tsp_ro_nested[2].roi := { 24, 25 };
147tsp_ro_nested[2].soi := { 26, 27, 28 };
148tsp_ro_nested[2].roi[2] := 29;
149
150tsp_has_nested.recs[0].roi := { 3, 2, 1 };
151tsp_has_nested.recs[0].soi := { 9, 6, 3 };
152tsp_has_nested.recs[1] := { { 2, 4, 6, 8 }, { 1, 3, 5, 7, 9 } };
153
154tsp_nested_arr[2].soi := { 29, 28, 27 };
155tsp_nested_arr[1].roi := { 19, 18, 17 };
156
157// Nested array, record of & set of template
158tsp_templ_nested.roi := { 4, 5 };
159tsp_templ_nested.soi := { 6, 7, 8 };
160tsp_templ_nested.roi[2] := 9;
161
162tsp_templ_ro_nested[0].roi := { 4, 5 };
163tsp_templ_ro_nested[0].soi := { 6, 7, 8 };
164tsp_templ_ro_nested[1].roi := { 14, 15 };
165tsp_templ_ro_nested[1].soi := { 16, 17, 18 };
166tsp_templ_ro_nested[2].roi := { 24, 25 };
167tsp_templ_ro_nested[2].soi := { 26, 27, 28 };
168tsp_templ_ro_nested[2].roi[2] := 29;
169
170tsp_templ_has_nested.recs[0].roi := { 3, 2, 1 };
171tsp_templ_has_nested.recs[0].soi := { 9, 6, 3 };
172tsp_templ_has_nested.recs[1] := { { 2, 4, 6, 8 }, { 1, 3, 5, 7, 9 } };
173
174tsp_templ_nested_arr[2].soi := { 29, 28, 27 };
175tsp_templ_nested_arr[1].roi := { 19, 18, 17 };
176
177[EXECUTE]
178assignment.control
This page took 0.034028 seconds and 5 git commands to generate.