Home
last modified time | relevance | path

Searched full:chapters (Results 1 – 25 of 29) sorted by relevance

12

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/test/chapters_test/
Dchapters_neg_test.py20 from runner.chapters import Chapters, IncorrectFileFormatChapterException
28 Chapters('does-not-exist.yaml')
32 Chapters(os.path.join(self.current_folder, 'chapters_neg_1_test.yaml'))
36 Chapters(os.path.join(self.current_folder, 'chapters_neg_2_test.yaml'))
40 Chapters(os.path.join(self.current_folder, 'chapters_neg_3_test.yaml'))
47 chapters = Chapters(test_file)
48 ch1 = chapters.chapters.get(test_chapter)
Dchapters_test.py21 from runner.chapters import Chapters
26 chapters: Chapters
46 cls.chapters = Chapters(os.path.join(cls.current_folder, 'chapters_test.yaml'))
49 actual = ChapterTest.chapters.filter_by_chapter(
66 actual = ChapterTest.chapters.filter_by_chapter(
83 actual = ChapterTest.chapters.filter_by_chapter(
99 actual = ChapterTest.chapters.filter_by_chapter(
111 actual = ChapterTest.chapters.filter_by_chapter(
124 actual = ChapterTest.chapters.filter_by_chapter(
137 actual = ChapterTest.chapters.filter_by_chapter(
[all …]
Dchapters_neg_2_test.yaml16 chapters:
Dchapters_neg_4_test.yaml16 chapters:
Dchapters_neg_3_test.yaml16 chapters:
Dchapters_test.yaml16 chapters:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
Doptions_groups.py35 "chapters": self.chapters,
36 "chapters-file": self.chapters_file
57 @value(yaml_path="test-lists.groups.chapters", cli_name="chapters")
58 def chapters(self) -> List[str]: member in GroupsOptions
62 @value(yaml_path="test-lists.groups.chapters-file", cli_name="chapters_file")
64 return "chapters.yaml"
Dcli_options.py186 '--chapter', action='append', dest='chapters',
191 '--chapters-file', action='store', dest='chapters_file',
195 'By default chapters.yaml file located along with test lists.')
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Dchapters.py47 _LOGGER = logging.getLogger("runner.chapters")
50 class Chapters: class
52 self.chapters = self.__parse(chapters_file)
61 yaml_chapters: Optional[List[Any]] = yaml_header.get('chapters')
68 chapter = Chapters.__parse_chapter(yaml_name, yaml_items, chapters_file)
102 Chapters.__parse_item(includes, excludes, yaml_item)
122 if chapter_name not in self.chapters:
124 chapter = self.chapters[chapter_name]
127 if inc in self.chapters:
131 filtered.update(Chapters.__filter_by_mask(mask, files, extension))
[all …]
Drunner_base.py35 from runner.chapters import Chapters
328 if self.config.test_lists.filter != "*" and self.config.test_lists.groups.chapters:
340 if self.config.test_lists.groups.chapters:
349 chapters: Chapters = self.__parse_chapters()
350 for chapter in self.config.test_lists.groups.chapters:
351 test_files.update(chapters.filter_by_chapter(chapter, base_folder, files, extension))
354 def __parse_chapters(self) -> Chapters:
355 chapters: Optional[Chapters] = None
357 chapters = Chapters(self.config.test_lists.groups.chapters_file)
361 chapters = Chapters(corrected_chapters_file)
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/test-lists/ets-gc-stress/
Dchapters.yaml14 chapters:
19 # chapters by tests
/arkcompiler/runtime_core/static_core/plugins/ets/doc/
Dmerge_markdown.py79 def merge_chapters(chapters, dest_path): argument
81 for chapter in chapters:
96 chapters = get_chapters(source_dir, target, build_dir)
99 merge_chapters(chapters, dest_file)
/arkcompiler/runtime_core/static_core/plugins/ets/tests/test-lists/ets-cts/
Dchapters.yaml16 chapters:
63 # chapters by several folders
/arkcompiler/runtime_core/static_core/plugins/ets/tests/test-lists/ets-func-tests/
Dchapters.yaml14 chapters:
61 # chapters by several folders
/arkcompiler/runtime_core/static_core/plugins/ets/doc/system_arkts/
Dintro.rst22 The chapters that follow will help you learn how to easily boost the
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/06.type_declarations/
Ddecl.sts20 enum declaration. See corresponding chapters.
/arkcompiler/runtime_core/isa/templates/
Disa.md.erb18 % Panda::chapters.each do |c|
/arkcompiler/runtime_core/static_core/isa/templates/
Disa.md.erb18 % Panda::chapters.each do |c|
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/templates/
Dfull_md.erb16 <% full['chapters']&.each do |c| %>
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/templates/
Dfull_md.erb16 <% full['chapters']&.each do |c| %>
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/
Dreadme.md48 Chapters:
68 Chapters:
/arkcompiler/runtime_core/static_core/plugins/ets/doc/cookbook/
Dwhy.rst46 The following chapters explain how |LANG| can help you improve program
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/
Dspec.rb61 … %w[prefixes groups properties exceptions verification version min_version chapters].each do |attr|
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dspec.rb61 … %w[prefixes groups properties exceptions verification version min_version chapters].each do |attr|
/arkcompiler/runtime_core/isa/
Disa.yaml16 chapters:

12