summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/common/trex_status.py
blob: 8f2859d1b8406ea34b65313d9e891282d4b1edaa (plain)
1
2
3
4
5
6
7
8
#!/router/bin/python

# define the states in which a TRex can hold during its lifetime
# TRexStatus = Enum('TRexStatus', 'Idle Starting Running')

IDLE = 1
STARTING = 2
RUNNING = 3