Home
last modified time | relevance | path

Searched full:tags (Results 1 – 25 of 3380) sorted by relevance

12345678910>>...136

/arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/test/metadata_test/
Dmetadata_test.py31 self.assertEqual(str(metadata.tags), '[]')
38 'tags': [],
43 self.assertFalse(metadata.tags.compile_only)
44 self.assertFalse(metadata.tags.negative)
45 self.assertFalse(metadata.tags.not_a_test)
46 self.assertFalse(metadata.tags.no_warmup)
53 'tags': ['compile-only'],
57 self.assertTrue(metadata.tags.compile_only)
58 self.assertFalse(metadata.tags.negative)
59 self.assertFalse(metadata.tags.not_a_test)
[all …]
/arkcompiler/runtime_core/compiler/
Dcompiler.yaml23 tags: [perf]
29 tags: [perf]
35 tags: [debug]
39 tags: [debug]
68 tags: [debug]
95 tags: [debug]
101 tags: [debug]
107 tags: [debug]
113 tags: [test]
151 tags: [debug]
[all …]
/arkcompiler/runtime_core/static_core/compiler/
Dcompiler.yaml23 tags: [perf]
30 tags: [perf]
38 tags: [perf]
45 tags: [debug]
49 tags: [debug]
86 tags: [debug]
113 tags: [debug]
119 tags: [debug]
125 tags: [debug]
131 tags: [test]
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner-2/runner/suites/
Dtest_metadata.py37 class Tags: class
44 def __init__(self, tags: list[str] | None = None) -> None:
45 self.__values: dict[Tags.EtsTag, bool] = {
46 Tags.EtsTag.COMPILE_ONLY: Tags.__contains(Tags.EtsTag.COMPILE_ONLY.value, tags),
47 Tags.EtsTag.NEGATIVE: Tags.__contains(Tags.EtsTag.NEGATIVE.value, tags),
48 Tags.EtsTag.NOT_A_TEST: Tags.__contains(Tags.EtsTag.NOT_A_TEST.value, tags),
49 Tags.EtsTag.NO_WARMUP: Tags.__contains(Tags.EtsTag.NO_WARMUP.value, tags),
58 return self.__values.get(Tags.EtsTag.COMPILE_ONLY, False)
62 return self.__values.get(Tags.EtsTag.NEGATIVE, False)
66 return self.__values.get(Tags.EtsTag.NOT_A_TEST, False)
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.generics/01.type_parameters/01.type_parameter_constraint/generic_methods/
Dgeneric_method_abstr_constraint.params.yaml24 tags: negative
26 tags: negative
28 tags: negative
30 tags: negative
32 tags: negative
34 tags: negative
36 tags: negative
38 tags: negative
40 tags: negative
42 tags: negative
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ets_templates/
Dtest_metadata.py34 class Tags: class
41 def __init__(self, tags: Optional[List[str]] = None) -> None:
42 self.__compile_only = Tags.__contains(Tags.EtsTag.COMPILE_ONLY.value, tags)
43 self.__negative = Tags.__contains(Tags.EtsTag.NEGATIVE.value, tags)
44 self.__not_a_test = Tags.__contains(Tags.EtsTag.NOT_A_TEST.value, tags)
45 self.__no_warmup = Tags.__contains(Tags.EtsTag.NO_WARMUP.value, tags)
64 def __contains(tag: str, tags: Optional[List[str]]) -> bool:
65 return tag in tags if tags is not None else False
70 tags: Tags
100 metadata['tags'] = Tags(metadata.get('tags'))
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.generics/01.type_parameters/01.type_parameter_constraint/generic_interfaces/
Dgeneric_interface_constraint.params.yaml18 tags: negative
21 tags: negative
24 tags: negative
27 tags: negative
30 tags: negative
33 tags: negative
36 tags: negative
39 tags: negative
42 tags: negative
45 tags: negative
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.generics/01.type_parameters/01.type_parameter_constraint/generic_functions/
Dgeneric_function_constraint.params.yaml18 tags: negative
21 tags: negative
24 tags: negative
27 tags: negative
30 tags: negative
33 tags: negative
36 tags: negative
39 tags: negative
42 tags: negative
45 tags: negative
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates_deprecated/05.generics/01.type_parameters/01.type_parameter_constraint/generic_classes/
Dgeneric_class_constraint.params.yaml24 tags: negative
28 tags: negative
32 tags: negative
36 tags: negative
40 tags: negative
44 tags: negative
48 tags: negative
52 tags: negative
56 tags: negative
60 tags: negative
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/05.object_literal/03.object_literal_of_record_type/
Dre_n.params.yaml15 - tags: ['compile-only', 'negative']
26 - tags: ['compile-only', 'negative']
35 - tags: ['compile-only', 'negative']
43 - tags: ['compile-only', 'negative']
51 - tags: ['compile-only', 'negative']
58 - tags: ['compile-only', 'negative']
65 - tags: ['compile-only', 'negative']
72 - tags: ['compile-only', 'negative']
76 - tags: ['compile-only', 'negative']
83 - tags: ['compile-only', 'negative']
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/01.assignment-like_contexts/
Dwidening_refs_call.params.yaml25 - { totype: "B[]", fromtype: "C[]", fromval: "new C[1]", tags: 'compile-only, negative' }
26 - { totype: "A[]", fromtype: "B[]", fromval: "new B[2]", tags: 'compile-only, negative' }
27 - { totype: "A[][]", fromtype: "C[][]", fromval: "new C[3][3]", tags: 'compile-only, negative' }
28 - { totype: "J[]", fromtype: "B[]", fromval: "new B[4]", tags: 'compile-only, negative' }
29 …- { totype: "J[][][][]", fromtype: "C[][][][]", fromval: "new C[5][5][5][5]", tags: 'compile-only,…
30 - { totype: "I[]", fromtype: "A[]", fromval: "new A[6]", tags: 'compile-only, negative' }
31 - { totype: "I[]", fromtype: "B[]", fromval: "new B[7]", tags: 'compile-only, negative' }
32 - { totype: "I[]", fromtype: "C[]", fromval: "new C[8]", tags: 'compile-only, negative' }
34 - { totype: "Object[]", fromtype: "C[]", fromval: "new C[0]", tags: 'compile-only, negative' }
35 - { totype: "Object[]", fromtype: "B[]", fromval: "new B[0]", tags: 'compile-only, negative' }
[all …]
Dwidening_refs_unbox_call.params.yaml16 …- { tags: "compile-only, negative", ptype: [short, int, long, float, double], type: Short, val: "4…
18 …- { tags: "compile-only, negative", ptype: [int, long, float, double], type: Int, val: "0x5A as by…
19 …- { tags: "compile-only, negative", ptype: [int, long, float, double], type: Int, val: "-128 as sh…
21 …- { tags: "compile-only, negative", ptype: [long, float, double], type: Long, val: "0o177 as byte"…
22 …- { tags: "compile-only, negative", ptype: [long, float, double], type: Long, val: "0x0000 as shor…
23 - { tags: "compile-only, negative", ptype: [long, float, double], type: Long, val: "0x7AFAFBFB" }
25 - { tags: "compile-only, negative", ptype: [float, double], type: Float, val: "127 as byte" }
26 - { tags: "compile-only, negative", ptype: [float, double], type: Float, val: "128 as short" }
27 - { tags: "compile-only, negative", ptype: [float, double], type: Float, val: "Long.MAX_VALUE" }
/arkcompiler/ets_frontend/ets2panda/bindings/test/expected/
DgetSuggestionDiagnostics.json17 "tags": [], array
39 "tags": [], array
61 "tags": [], array
83 "tags": [], array
105 "tags": [], array
127 "tags": [], array
149 "tags": [], array
171 "tags": [], array
193 "tags": [], array
215 "tags": [], array
[all …]
DgetSyntacticDiagnostics.json20 "tags": [], array
42 "tags": [], array
64 "tags": [], array
86 "tags": [], array
108 "tags": [], array
130 "tags": [], array
152 "tags": [], array
174 "tags": [], array
196 "tags": [], array
218 "tags": [], array
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/16.array_types/01.resizable_array_types/
Dresizable_array.params.yaml16 - tags:
18 - tags:
20 - tags:
22 - tags:
24 - tags:
26 - tags:
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/01.overload-equivalent_signatures/
Dpos.params.yaml20 tags: [compile-only]
25 tags: [compile-only]
35 tags: [compile-only]
41 tags: [compile-only]
47 tags: [compile-only]
52 tags: [compile-only]
59 tags: [compile-only]
69 tags: [compile-only]
78 tags: [compile-only]
87 tags: [compile-only]
[all …]
/arkcompiler/runtime_core/static_core/verification/util/
Dtagged_index.h101 …static constexpr void SetTags(const typename T::Type &tag, const typename Tag::Type &...tags, Int … in SetTags() argument
112 Base::template SetTags<Int, SHIFT>(std::forward<const typename Tag::Type>(tags)..., val); in SetTags()
119 template <typename... Tags, typename Int>
120 class TaggedIndexHelper0<Int, TagPack<Tags...>> {
121 using AllTags = TagPack<Tags...>;
160 explicit TaggedIndexHelper0(typename Tags::Type... tags, Int idx) in TaggedIndexHelper0() argument
162 … AllTags::template SetTags<UInt, INT_BITS>(std::forward<typename Tags::Type>(tags)..., value_); in TaggedIndexHelper0()
296 template <typename Int, typename... Tags>
298 …lass TaggedIndexSelectorH<First, Int, std::tuple<Tags...>> : public TaggedIndexHelper0<Int, TagPac…
299 using Base = TaggedIndexHelper0<Int, TagPack<Tags...>>;
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/06.overriding_methods/
Ddifferent_access_modifiers.params.yaml15 - tags: |-
23 - tags: |-
31 - tags: |-
39 - tags: |-
47 - tags: |-
55 - tags: |-
64 - tags: |-
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/06.overriding_methods/requirements_in_overriding_and_hiding/
Dhiding_methods_with_different_access_modifiers.params.yaml16 - {m1: "public", m2: "public", tags: "[]"}
17 - {m1: "protected", m2: "protected", tags: "[]"}
18 - {m1: "protected", m2: "public", tags: "[]"}
19 - {m1: "internal", m2: "internal", tags: "[]"}
20 - {m1: "internal", m2: "private", tags: "[negative, compile-only]"}
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/10.final_classes_and_methods/02.final_methods/
Dfm.params.yaml33 - tags: 'compile-only, negative'
44 - tags: 'compile-only, negative'
75 - tags: 'compile-only, negative'
91 - tags: 'compile-only, negative'
107 - tags: 'compile-only, negative'
125 - tags: 'compile-only, negative'
134 - tags: 'compile-only, negative'
143 - tags: 'compile-only, negative'
155 - tags: 'compile-only, negative'
166 - tags: 'compile-only, negative'
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/01.type_parameters/01.type_parameter_constraint/generic_classes/
Dgeneric_class_object_compatibility.params.yaml16 - tags: compile-only, negative
23 - tags: compile-only, negative
30 - tags: compile-only, negative
37 - tags: compile-only
45 - tags:
61 - tags: compile-only, negative
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/04.casting_contexts_and_conversions/06.casting_conversions_from_union/
Dimpl.params.yaml29 tags: 'compile-only, negative'
39 tags: 'compile-only, negative'
82 tags: 'compile-only, negative'
94 tags: 'compile-only, negative'
113 tags: 'compile-only, negative'
118 tags: 'compile-only, negative'
129 tags: 'compile-only, negative'
134 tags: 'compile-only, negative'
140 tags: 'compile-only, negative'
152 tags: 'compile-only, negative'
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/03.assignability/
Dfunctions_compatibility.params.yaml17 - { assign: bars, call: 1, res: -1, tags: "compile-only, negative" }
18 - { assign: bars, call: "1, \"some str\"", res: -1, tags: "compile-only, negative" }
19 - { assign: barf, call: 1, res: -1, tags: "compile-only, negative" }
20 - { assign: barl, call: 1, res: -1, tags: "compile-only, negative" }
21 - { assign: barretstr, call: 1, res: "\"str\"", tags: "compile-only, negative" }
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/06.callable_types/
Dct.params.yaml15 - tags: 'compile-only, negative'
25 - tags: 'compile-only, negative'
38 - tags: 'compile-only, negative'
51 - tags: 'compile-only, negative'
64 - tags: 'compile-only, negative'
75 - tags: 'compile-only, negative'
86 - tags: 'compile-only, negative'
97 - tags: 'compile-only, negative'
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/06.type_declarations/01.type_alias_declaration/
Dscope.params.yaml18 tags: 'compile-only, negative'
26 tags: 'compile-only, negative'
34 tags: 'compile-only, negative'
51 tags: 'compile-only, negative'
75 tags: 'compile-only, negative'
99 tags: 'compile-only, negative'
116 tags: 'compile-only, negative'
124 tags: 'compile-only, negative'
132 tags: 'compile-only, negative'
142 tags: 'compile-only, negative'
[all …]

12345678910>>...136