29 lines
569 B
Python
29 lines
569 B
Python
from .suite import *
|
|
|
|
# Categories prefix environment name.
|
|
PREFIX_ENVIRONMENT_NAME = "AI360_CPP"
|
|
|
|
# The operation completed successfully.
|
|
ERROR_SUCCESS = 0
|
|
|
|
# File can't be opened.
|
|
ERROR_CANNOT_OPEN_FILE = 1
|
|
|
|
# Not enough memory, memory allocation failed.
|
|
ERROR_NOT_ENOUGH_MEMORY = 2
|
|
|
|
# The data is invalid.
|
|
ERROR_DATA_INVALID = 3
|
|
|
|
# The cmd line's args or number of parameters (argv) is incorrect.
|
|
ERROR_ARGUMENTS_INVALID = 4
|
|
|
|
# Incorrect file format.
|
|
ERROR_FORMAT_INVALID = 5
|
|
|
|
# Unsupported functionality.
|
|
ERROR_UNSUPPORTED = 20
|
|
|
|
# Other errors.
|
|
ERROR_UNKNOWN = 250
|