Searched full:general (Results 1 – 25 of 160) sorted by relevance
1234567
63 @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 …]
64 general = GeneralOptions() variable in Config77 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(),
37 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",
39 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:
143 - `--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 execution227 - 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…
46 self._list_root = config.general.list_root109 …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)
36 … 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:
159 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 …]
97 config.general.build,102 config.general.build,110 self.test_root = config.general.test_root116 …self.default_list_root = Path(config.general.static_core_root) / 'tests' / 'tests-u-runner' / 'tes…117 self.list_root = config.general.list_root124 self.build_dir = config.general.build217 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:
117 f'{self.test_env.config.general.static_core_root}/tests/tests-u-runner/runner.sh',133 verbose_filter = self.test_env.config.general.verbose_filter134 verbose = self.test_env.config.general.verbose155 verbose = self.test_env.config.general.verbose156 verbose_filter = self.test_env.config.general.verbose_filter
37 … 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:
53 'general': {86 'general': {123 'general': {158 'general': {193 'general': {229 'general': {270 'general': {
18 general:
25 def __init__(self, general: GeneralOptions, default_work_dir: Path):26 self.__general = general
24 def __init__(self, general: GeneralOptions, work_dir: Path):25 self.__general = general
24 // General helper functions46 // General helper class
38 static_core_root = Path(config.general.static_core_root)43 …es2panda_test = Path(config.general.static_core_root).parent.parent / 'ets_frontend' / 'ets2panda'…
44 * **Card table** used for marking cards. In general, it has one bit or byte (a byte used to58 * **Minor GC** in general it is garbage collection worked over Young generation space60 * **Major GC** in general it is garbage collection worked over Tenured/Old generation space.
16 general:
21 can also be replaced for more general types.