Lines Matching full:simulator
229 simulator = self.platform.simulator_by_name(options.sim_name)
234 elif simulator:
235 if simulator.name == "qemu":
243 handler = SimulationHandler(self, simulator.name, *common_args)
244 handler.ready = simulator.is_runnable()
269 simulator = self.platform.simulator_by_name(simulation)
270 if os.name == 'nt' and simulator:
272 if simulator.name not in ('na', 'qemu'):
276 if simulator.name == 'qemu' and 'QEMU_BIN_PATH' not in os.environ:
290 (simulator and simulator.name in SUPPORTED_SIMS and \
291 simulator.name not in self.testsuite.simulation_exclude) or \
297 filter == 'runnable' or simulator and simulator.name in SUPPORTED_SIMS_IN_PYTEST
301 simulator and \
302 simulator.name in SUPPORTED_SIMS_WITH_EXEC and \
303 not simulator.is_runnable():