Searched full:general (Results 1 – 25 of 167) sorted by relevance
1234567
78 @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 …]
68 general = GeneralOptions() variable in Config81 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(),
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",
53 self._list_root = config.general.list_root119 …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)
41 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 }]);
40 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:
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…205 - `--show-progress`/`general.show-progress: True` - show progress bar during test execution228 - 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…
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)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 …]
66 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,
121 f'{self.test_env.config.general.static_core_root}/tests/tests-u-runner/runner.sh',137 verbose_filter = self.test_env.config.general.verbose_filter138 verbose = self.test_env.config.general.verbose159 verbose = self.test_env.config.general.verbose160 verbose_filter = self.test_env.config.general.verbose_filter
111 config.general.build,116 config.general.build,124 self.test_root = config.general.test_root130 …self.default_list_root = Path(config.general.static_core_root) / 'plugins' / 'ets' / 'tests' / 'te…131 self.list_root = config.general.list_root138 self.build_dir = config.general.build234 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:
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
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'…79 if self.config.general.with_js:
38 … 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:
24 def __init__(self, general: GeneralOptions, work_dir: Path):25 self.__general = general
24 // General helper functions46 // General helper class
39 self.default_list_root = Path(config.general.static_core_root) / 'tests' / 'test-lists'55 if self.config.general.bco:
39 static_core_root = Path(config.general.static_core_root)42 … Path(config.general.static_core_root).parent.parent / 'ets_frontend' / 'ets2panda' / 'test'
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.
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'…
16 general: