Skip to content

Commit a053f1a

Browse files
nashifcarlescufi
authored andcommitted
twister: add simics as supported simulator
Enable simics as a support simulation platform. Signed-off-by: Anas Nashif <[email protected]>
1 parent e31a090 commit a053f1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/pylib/twister/twisterlib/handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
logger = logging.getLogger('twister')
4949
logger.setLevel(logging.DEBUG)
5050

51-
SUPPORTED_SIMS = ["mdb-nsim", "nsim", "renode", "qemu", "tsim", "armfvp", "xt-sim", "native", "custom"]
51+
SUPPORTED_SIMS = ["mdb-nsim", "nsim", "renode", "qemu", "tsim", "armfvp", "xt-sim", "native", "custom", "simics"]
5252
SUPPORTED_SIMS_IN_PYTEST = ['native', 'qemu']
5353

5454

scripts/pylib/twister/twisterlib/testinstance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def check_runnable(self, enable_slow=False, filter='buildable', fixtures=[], har
271271
if self.testsuite.harness == 'pytest':
272272
target_ready = bool(filter == 'runnable' or self.platform.simulation in SUPPORTED_SIMS_IN_PYTEST)
273273

274-
SUPPORTED_SIMS_WITH_EXEC = ['nsim', 'mdb-nsim', 'renode', 'tsim', 'native']
274+
SUPPORTED_SIMS_WITH_EXEC = ['nsim', 'mdb-nsim', 'renode', 'tsim', 'native', 'simics']
275275
if filter != 'runnable' and \
276276
self.platform.simulation in SUPPORTED_SIMS_WITH_EXEC and \
277277
self.platform.simulation_exec:

0 commit comments

Comments
 (0)