1#!/usr/bin/env python3 2# 3# Copyright (c) 2024 Arm Limited (or its affiliates). All rights reserved. 4# 5# SPDX-License-Identifier: Apache-2.0 6 7SUPPORTED_SIMS = [ 8 "mdb-nsim", 9 "nsim", 10 "renode", 11 "qemu", 12 "tsim", 13 "armfvp", 14 "xt-sim", 15 "native", 16 "custom", 17 "simics", 18] 19SUPPORTED_SIMS_IN_PYTEST = ['native', 'qemu'] 20SUPPORTED_SIMS_WITH_EXEC = ['nsim', 'mdb-nsim', 'renode', 'tsim', 'native', 'simics', 'custom'] 21