Home | History | Annotate | Download | only in tools

Lines Matching full:arch

85   result.add_option("--arch",
89 result.add_option("--arch-and-mode",
90 help="Architecture and mode in the format 'arch.mode'",
168 options.arch = tokens[0]
175 if options.arch in ["auto", "native"]:
176 options.arch = ARCH_GUESS
177 options.arch = options.arch.split(",")
178 for arch in options.arch:
179 if not arch in SUPPORTED_ARCHS:
180 print "Unknown architecture %s" % arch
271 for arch in options.arch:
272 code = Execute(arch, mode, args, options, suites, workspace)
277 def Execute(arch, mode, args, options, suites, workspace):
278 print(">>> Running tests for %s.%s" % (arch, mode))
287 "%s.%s" % (arch, mode))
295 if arch in SLOW_ARCHS:
301 ctx = context.Context(arch, mode, shell_dir,
310 "arch": arch,