Home | History | Annotate | Download | only in tools

Lines Matching refs:simulator

1217   result.add_option("--simulator", help="Run tests with architecture simulator",
1271 if options.simulator != 'none':
1272 # Simulator argument was set. Make sure arch and simulator agree.
1273 if options.simulator != options.arch:
1275 options.arch = options.simulator
1277 print "Architecture %s does not match sim %s" %(options.arch, options.simulator)
1279 # Ensure that the simulator argument is handed down to scons.
1280 options.scons_flags.append("simulator=" + options.simulator)
1282 # If options.arch is not set by the command line and no simulator setting
1495 'simulator': options.simulator,