4
0

+ Intro to C test suite.

This commit is contained in:
SAVELIY BAKTURIN
2026-02-10 13:40:02 +00:00
commit ca1c008cce
8 changed files with 802 additions and 0 deletions

28
testsuites/__init__.py Normal file
View 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