python_tests/_config/cmake/config.system.vars.in
#%% version: 1
# CAUTION:
# This configuration file is designed to be portable between 3 interpreters: cmake, unix shell scripts, windows (cmd.exe) batch scripts,
# so it is made up to be simple as possible but not simplier as to support a single value or a values list
# together with an escape sequence, where the character `\` is not an escape sequence character.
# Use `$/<char>` to escape a `<char>` character which is a part of a configuration file format:
# `"` -> `$/"` or `(` -> `$/(` or `$/` -> `$/$/`
# Use `$/{` as a start sequence for a variable's value substitution: `$/{<variable>}`, where `<variable>`
# is already parsed variable from configuration file WITHOUT condition(s) or `:` characters. Otherwise a not yet parsed variable or
# invalid one will be replaced by the `*:$/{<variable>}` sequence to fail the most usage cases in a file path,
# where `*:` - is not valid character sequence in a windows path (`:` character additionally can block a relative path *after* the variable)
# and `/` is a character to block a file or directory creation with such a name on a Linux system (but not a block for `mkdir -p`!).
# In all other cases the `$/` sequence prints as is in all contexts: in a cmake script, in a unix shell script and in a
# windows batch script.
# CAUTION:
# DO NOT USE `@` character pairs unescaped as a plain value as long as it is used as a placehoder in a replacement of `@<variable>@` sequence,
# where the `<variable>` is a cmake variable. For that case do replace all `@` characters by this escape sequence: `$/@`.
# It will avoid the substitution in case of an accidental match.
# NOTE:
# In a unix shell script a variable name with `:` character is not permitted, so variables with not allowed characters
# won't be visible in a windows batch script too.
# FORMAT:
# [<attributes>] <variable>[:[<os_name>][:[<compiler_name>][:[<config_name>][:[<arch_name>]]]]][=<value>]
# [<attributes>] <variable>[:[<os_name>][:[<compiler_name>][:[<config_name>][:[<arch_name>]]]]][=(<value0> [<value1> [... <valueN>]])]
#
# <attributes>: Variable space separated attributes: global | top | local | bool | path | exist | canonical | uncache | cache_only | cache | env_only | env | force_cache | force | override | unset | (un)hide | package | final
# <variable>: Variable name corresponding to the regex: [_a-zA-Z][_a-zA-Z0-9]*
# <os_name>: OS variant name: WIN | UNIX | ...
# <compiler_name>: Compiler variant name with version support: <compiler_token_name>[.<compiler_version>]
# <compiler_token_name>: MSVC | GCC | CLANG | ...
# <compiler_version>: <major_version>[*+] | <major_version>.<minor_version>[*+]
# <major_version>: an integral value corresponding to the regex: [0-9]*
# <minor_version>: an integral value corresponding to the regex: [0-9]*
# <config_name>: Configuration name: RELEASE | DEBUG | RELWITHDEBINFO | MINSIZEREL | ...
# <arch_name>: Architecture variant name: X86 | X64 | ...
#
# <value>: Value with escaping and substitution support: `$/<escape_char>`, `$/{<variable>}`
#
PYTESTS_LIST=(
"00_empty"
"01_import_module/01_basic_import"
"01_import_module/02_mixed_import"
"01_import_module/03_mixed_import_all"
"01_import_module/04_basic_import_class"
"01_import_module/05_base_class_in_second_module"
"01_import_module/06_merge_2_lvl2_modules_in_1_lvl1"
"01_import_module/07_merge_2_lvl3_modules_in_1_lvl2"
"01_import_module/08_specific_import_importlib_util"
"01_import_module/09_reimport_being_imported"
"01_import_module/10_reimport_being_imported_from_default_lambda_arg"
"02_declare_global/01_builtin_global"
"02_declare_global/02_basic_declare_before"
"02_declare_global/03_basic_declare_after"
"02_declare_global/04_basic_declare_in_first_lvl2_module"
"02_declare_global/05_basic_declare_in_first_lvl2_module_check_in_second"
"02_declare_global/06_import_from_global_check_in_lvl2_modules"
"02_declare_global/07_import_from_global_change_in_local"
)