+ Intro to C test suite.
This commit is contained in:
28
testsuites/__init__.py
Normal file
28
testsuites/__init__.py
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
Reference in New Issue
Block a user