Home
last modified time | relevance | path

Searched full:general (Results 1 – 25 of 160) sorted by relevance

1234567

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
Doptions_general.py63 @value(yaml_path="general.generate-config", cli_name="generate_config", cast_to_type=_to_path)
68 @value(yaml_path="general.processes", cli_name="processes", cast_to_type=_to_processes)
73 @value(yaml_path="general.build", cli_name="build_dir", cast_to_type=_to_path, required=True)
78 @value(yaml_path="general.test-root", cli_name="test_root", cast_to_type=_to_path)
83 @value(yaml_path="general.list-root", cli_name="list_root", cast_to_type=_to_path)
88 @value(yaml_path="general.work-dir", cli_name="work_dir", cast_to_type=_to_path)
93 @value(yaml_path="general.ets-stdlib-root", cli_name="ets_stdlib_root", cast_to_type=_to_path)
98 @value(yaml_path="general.show-progress", cli_name="progress", cast_to_type=_to_bool)
103 @value(yaml_path="general.gc_type", cli_name="gc_type")
108 …@value(yaml_path="general.full-gc-bombing-frequency", cli_name="full_gc_bombing_frequency", cast_t…
[all …]
Dconfig.py64 general = GeneralOptions() variable in Config
77 if self.general.generate_config is None:
80 ConfigKeeper.get().save(self.general.generate_config, data)
86 self.general.get_command_line(),
105 "general": self.general.to_dict(),
Doptions_coverage.py37 yaml_path="general.coverage.use-llvm-cov",
46 yaml_path="general.coverage.llvm-cov-profdata-out-path",
55 yaml_path="general.coverage.llvm-cov-html-out-path",
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/
Dmain.py39 logger = Log.setup(config.general.verbose, config.general.work_dir)
47 if config.general.processes == 1:
62 if not config.general.generate_only:
69 if config.general.coverage.use_llvm_cov:
Dreadme.md143 - `--build-dir`/`general.build` - the path to the compiled project. Referenced as $BUILD in this …
144 - `--test-root`/`general.test-root` - the folder where test suite is located. It must exist befor…
145 - `--list-root`/`general.list-root` - the folder where test lists are located. It must exist befo…
146 - `--work-dir`/`general.work-dir` - path to the working temp folder with gen, intermediate and re…
204 - `--show-progress`/`general.show-progress: True` - show progress bar during test execution
227 - in config file use `general.verbose` property with the save values.
233 - in config file use `general.verbose-filter` property with the same values.
237 - `--generate-only`/`general.generate-only` - only generate tests without running them. Tests are…
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
Dets_test_suite.py46 self._list_root = config.general.list_root
109 …lf.__default_test_dir = RuntimeDefaultEtsTestDir(config.general.static_core_root, config.general.t…
134 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
186 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
207 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
233 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/parser/
Drunner_js_parser.py36 … symlink_es2panda_test = Path(config.general.static_core_root) / "tools" / "es2panda" / "test"
40 …es2panda_test = Path(config.general.static_core_root).parent.parent / 'ets_frontend' / 'ets2panda'…
60 if self.config.general.with_js:
63 if self.config.general.with_js:
72 if self.config.general.with_js:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Drunner_file_based.py159 if config.general.qemu == QemuKind.ARM64:
162 if config.general.qemu == QemuKind.ARM32:
180 return WorkDir(self.config.general, self.default_work_dir_root)
375 f'--gc-type={self.config.general.gc_type}',
376 f'--heap-verifier={self.config.general.heap_verifier}',
377 f'--full-gc-bombing-frequency={self.config.general.full_gc_bombing_frequency}',
380 if self.config.general.run_gc_in_place:
392 f'--gc-type={self.config.general.gc_type}',
393 f'--heap-verifier={self.config.general.heap_verifier}',
394 f'--full-gc-bombing-frequency={self.config.general.full_gc_bombing_frequency}',
[all …]
Drunner_base.py97 config.general.build,
102 config.general.build,
110 self.test_root = config.general.test_root
116 …self.default_list_root = Path(config.general.static_core_root) / 'tests' / 'tests-u-runner' / 'tes…
117 self.list_root = config.general.list_root
124 self.build_dir = config.general.build
217 with multiprocessing.Pool(processes=self.config.general.processes,
219 … results = pool.imap_unordered(run_test, self.tests, chunksize=self.config.general.chunksize)
220 if self.config.general.show_progress:
Dtest_base.py117 f'{self.test_env.config.general.static_core_root}/tests/tests-u-runner/runner.sh',
133 verbose_filter = self.test_env.config.general.verbose_filter
134 verbose = self.test_env.config.general.verbose
155 verbose = self.test_env.config.general.verbose
156 verbose_filter = self.test_env.config.general.verbose_filter
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/
Drunner_astchecker.py37 … symlink_es2panda_test = Path(config.general.static_core_root) / 'tools' / 'es2panda' / 'test'
41 …es2panda_test = Path(config.general.static_core_root).parent.parent / 'ets_frontend' / 'ets2panda'…
58 if self.config.general.with_js:
67 if self.config.general.with_js:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/test/multiple_config_test/
Dmultiple_config_test.py53 'general': {
86 'general': {
123 'general': {
158 'general': {
193 'general': {
229 'general': {
270 'general': {
Dconfig-1.yaml18 general:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/
Dwork_dir.py25 def __init__(self, general: GeneralOptions, default_work_dir: Path):
26 self.__general = general
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/code_coverage/
Dcoverage_dir.py24 def __init__(self, general: GeneralOptions, work_dir: Path):
25 self.__general = general
/arkcompiler/runtime_core/libpandabase/utils/
Dutils.h24 // General helper functions
46 // General helper class
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/declgenparser/
Drunner_declgenparser.py38 static_core_root = Path(config.general.static_core_root)
43 …es2panda_test = Path(config.general.static_core_root).parent.parent / 'ets_frontend' / 'ets2panda'…
/arkcompiler/runtime_core/docs/
Dglossary.md44 * **Card table** used for marking cards. In general, it has one bit or byte (a byte used to
58 * **Minor GC** in general it is garbage collection worked over Young generation space
60 * **Major GC** in general it is garbage collection worked over Tenured/Old generation space.
/arkcompiler/runtime_core/static_core/docs/
Dglossary.md44 * **Card table** used for marking cards. In general, it has one bit or byte (a byte used to
58 * **Minor GC** in general it is garbage collection worked over Young generation space
60 * **Major GC** in general it is garbage collection worked over Tenured/Old generation space.
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/cfg/
Dsystem.yaml16 general:
Dparser.yaml16 general:
Dhermes-int.yaml16 general:
Dtest262-int.yaml16 general:
Dhermes-jit.yaml16 general:
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/08.reference_types/11.union_types/union_types_normalization/
Dnorm.sts21 can also be replaced for more general types.

1234567