Lines Matching +full:avocado +full:- +full:cache
5 # Original Author (Avocado-based tests):
12 # later. See the COPYING file in the top-level directory.
38 @params compressed: filename, Asset, or file-like object to uncompress
44 from the filename or Asset URL. @format must be non-None if @uncompressed
45 is a file-like object.
62 @params archive: filename, Asset, or file-like object to extract
64 @params sub_dir: optional sub-directory to extract into
72 from the filename or Asset URL. @format must be non-None if @archive
73 is a file-like object.
75 If @member is non-None, returns the fully qualified path to @member
202 self.arch = self.qemu_bin.split('-')[-1]
211 self.log = logging.getLogger('qemu-test')
216 '%(asctime)s - %(levelname)s: %(message)s')
242 path = os.path.basename(sys.argv[0])[:-3]
244 cache = os.environ.get("QEMU_TEST_PRECACHE", None)
245 if cache is not None:
246 Asset.precache_suites(path, cache)
274 + ["-L %s" % ldpath for ldpath in self._ldpath]
305 [self.qemu_bin, '-M', 'help'],
337 '-M', 'none', '-netdev', 'help'],
344 '-M', 'none', '-device', 'help'],
359 vm.add_args("-chardev",
361 "-mon", "chardev=backdoor,mode=control")
377 self._vms[name].add_args('-cpu', self.cpu)
387 :param arg: the QEMU argument, such as "-cpu" in "-cpu host"
389 :param value: the argument value, such as "host" in "-cpu host"