Lines Matching full:arch
150 result.add_option("--arch",
154 result.add_option("--arch-and-mode",
155 help="Architecture and mode in the format 'arch.mode'",
222 options.arch = tokens[0]
229 if options.arch in ["auto", "native"]:
230 options.arch = ARCH_GUESS
231 options.arch = options.arch.split(",")
232 for arch in options.arch:
233 if not arch in SUPPORTED_ARCHS:
234 print "Unknown architecture %s" % arch
314 for arch in options.arch:
315 code = Execute(arch, mode, args, options, suites, workspace)
331 def Execute(arch, mode, args, options, suites, workspace):
332 print(">>> Running tests for %s.%s" % (arch, mode))
343 "%s.%s" % (arch, mode))
351 if arch in SLOW_ARCHS:
357 ctx = context.Context(arch, mode, shell_dir,
366 "arch": arch,