Home
last modified time | relevance | path

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

1234567

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
Doptions_general.py78 @value(yaml_path="general.generate-config", cli_name="generate_config", cast_to_type=_to_path)
83 @value(yaml_path="general.processes", cli_name="processes", cast_to_type=_to_processes)
88 @value(yaml_path="general.build", cli_name="build_dir", cast_to_type=_to_path, required=True)
93 @value(yaml_path="general.test-root", cli_name="test_root", cast_to_type=_to_path)
98 @value(yaml_path="general.list-root", cli_name="list_root", cast_to_type=_to_path)
103 @value(yaml_path="general.work-dir", cli_name="work_dir", cast_to_type=_to_path)
108 @value(yaml_path="general.ets-stdlib-root", cli_name="ets_stdlib_root", cast_to_type=_to_path)
113 @value(yaml_path="general.show-progress", cli_name="progress", cast_to_type=_to_bool)
118 @value(yaml_path="general.gc_type", cli_name="gc_type")
123 …@value(yaml_path="general.full-gc-bombing-frequency", cli_name="full_gc_bombing_frequency", cast_t…
[all …]
Dconfig.py68 general = GeneralOptions() variable in Config
81 if self.general.generate_config is None:
84 ConfigKeeper.get().save(self.general.generate_config, data)
90 self.general.get_command_line(),
109 "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/runner/plugins/ets/
Dets_test_suite.py53 self._list_root = config.general.list_root
119 …lf.__default_test_dir = RuntimeDefaultEtsTestDir(config.general.static_core_root, config.general.t…
144 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
165 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
217 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
238 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
269 self._ets_test_dir = EtsTestDir(config.general.static_core_root, config.general.test_root)
/arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/store/selectors/
Dlogs.test.ts41 out: [{ message: 'general output log', isRead: true }],
42 err: [{ message: 'general error log', isRead: false }],
77 it('should select general output logs', () => {
79 .toEqual([{ message: 'general output log', isRead: true }]);
82 it('should select general error logs', () => {
84 .toEqual([{ message: 'general error log', isRead: false }]);
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/
Dmain.py40 logger = Log.setup(config.general.verbose, config.general.work_dir)
49 if config.general.processes == 1:
64 if not config.general.generate_only:
71 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…
205 - `--show-progress`/`general.show-progress: True` - show progress bar during test execution
228 - in config file use `general.verbose` property with the save values.
234 - in config file use `general.verbose-filter` property with the same values.
238 - `--generate-only`/`general.generate-only` - only generate tests without running them. Tests are…
/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)
370 f'--gc-type={self.config.general.gc_type}',
371 f'--heap-verifier={self.config.general.heap_verifier}',
372 f'--full-gc-bombing-frequency={self.config.general.full_gc_bombing_frequency}',
375 if self.config.general.run_gc_in_place:
387 f'--gc-type={self.config.general.gc_type}',
388 f'--heap-verifier={self.config.general.heap_verifier}',
389 f'--full-gc-bombing-frequency={self.config.general.full_gc_bombing_frequency}',
[all …]
Dtest_file_based.py66 if not self.test_env.config.general.handle_timeout:
102 if self.test_env.config.general.coverage.use_llvm_cov:
143 if self.test_env.config.general.coverage.use_llvm_cov and profdata_file and profraw_file:
167 gdb_timeout=self.test_env.config.general.gdb_timeout,
202 gdb_timeout=self.test_env.config.general.gdb_timeout,
228 gdb_timeout=self.test_env.config.general.gdb_timeout,
252 gdb_timeout=self.test_env.config.general.gdb_timeout,
Dtest_base.py121 f'{self.test_env.config.general.static_core_root}/tests/tests-u-runner/runner.sh',
137 verbose_filter = self.test_env.config.general.verbose_filter
138 verbose = self.test_env.config.general.verbose
159 verbose = self.test_env.config.general.verbose
160 verbose_filter = self.test_env.config.general.verbose_filter
Drunner_base.py111 config.general.build,
116 config.general.build,
124 self.test_root = config.general.test_root
130 …self.default_list_root = Path(config.general.static_core_root) / 'plugins' / 'ets' / 'tests' / 'te…
131 self.list_root = config.general.list_root
138 self.build_dir = config.general.build
234 with multiprocessing.Pool(processes=self.config.general.processes,
236 … results = pool.imap_unordered(run_test, self.tests, chunksize=self.config.general.chunksize)
237 if self.config.general.show_progress:
/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/plugins/parser/
Drunner_js_parser.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'…
79 if self.config.general.with_js:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/
Drunner_astchecker.py38 … symlink_es2panda_test = Path(config.general.static_core_root) / 'tools' / 'es2panda' / 'test'
42 …es2panda_test = Path(config.general.static_core_root).parent.parent / 'ets_frontend' / 'ets2panda'…
77 if self.config.general.with_js:
/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/test262/
Drunner_js_test262.py39 self.default_list_root = Path(config.general.static_core_root) / 'tests' / 'test-lists'
55 if self.config.general.bco:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/declgenparser/
Drunner_declgenparser.py39 static_core_root = Path(config.general.static_core_root)
42 … Path(config.general.static_core_root).parent.parent / 'ets_frontend' / 'ets2panda' / 'test'
/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/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/runner/plugins/srcdumper/
Drunner_srcdumper.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'…
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/cfg/
Dsystem.yaml16 general:
Dparser.yaml16 general:

1234567