Home | History | Annotate | Download | only in misc

Lines Matching full:configuration

10     Then, create your configuration file(s). You can have a global configuration
11 file (specified with the -c option), and per-sheet configuration files, which
13 The settings in the per-sheet configuration file will override those in the
14 global configuration file, if both are present.
16 A configuration file must consist of a Python dictionary. The following keys
21 the sheet will have a column showing speedup from configuration named
22 'from' to configuration named "to".
25 Instructions for matching test run property sets to configuration names.
43 of the configuration the XML file corresponds to. A warning is printed if
44 two different property sets match to the same configuration name.
47 configuration name is assumed to be the relative path from the sheet's
49 directly inside the sheet's directory, the configuration name is instead
142 configuration = self.__config_cache[props_key]
144 configuration = self.config_match_func(properties)
146 if configuration is None:
149 configuration = default_configuration
151 configuration = Collector.__format_config_cache_key(props_key, multiline=True)
153 self.extra_configurations.add(configuration)
155 logging.warning('failed to match properties to a configuration: %s',
159 same_config_props = [it[0] for it in self.__config_cache.iteritems() if it[1] == configuration]
161 logging.warning('property set %s matches the same configuration %r as property set %s',
163 configuration,
166 self.__config_cache[props_key] = configuration
168 if configuration is None: return
175 test_results[configuration] = min(
176 test_results.get(configuration), new_result,
197 arg_parser.add_argument('-c', '--config', metavar='CONF', help='global configuration file')
199 help='include results from XML files that were not recognized by configuration matchers')