OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
share
/
cmake-3.26
/
Help
/
prop_test
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
04/04/2023 07:10:49 PM
rwxr-xr-x
📄
ATTACHED_FILES.rst
206 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
ATTACHED_FILES_ON_FAIL.rst
218 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
COST.rst
621 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
DEPENDS.rst
759 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
DISABLED.rst
735 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
ENVIRONMENT.rst
371 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
ENVIRONMENT_MODIFICATION.rst
2 KB
04/04/2023 07:07:49 PM
rw-r--r--
📄
FAIL_REGULAR_EXPRESSION.rst
552 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
FIXTURES_CLEANUP.rst
1.86 KB
04/04/2023 07:07:49 PM
rw-r--r--
📄
FIXTURES_REQUIRED.rst
4.9 KB
04/04/2023 07:07:49 PM
rw-r--r--
📄
FIXTURES_SETUP.rst
1.91 KB
04/04/2023 07:07:49 PM
rw-r--r--
📄
LABELS.rst
387 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
MEASUREMENT.rst
286 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
PASS_REGULAR_EXPRESSION.rst
626 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
PROCESSORS.rst
679 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
PROCESSOR_AFFINITY.rst
667 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
REQUIRED_FILES.rst
1.17 KB
04/04/2023 07:07:49 PM
rw-r--r--
📄
RESOURCE_GROUPS.rst
3.48 KB
04/04/2023 07:07:49 PM
rw-r--r--
📄
RESOURCE_LOCK.rst
805 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
RUN_SERIAL.rst
233 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
SKIP_REGULAR_EXPRESSION.rst
601 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
SKIP_RETURN_CODE.rst
442 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
TIMEOUT.rst
318 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
TIMEOUT_AFTER_MATCH.rst
1.38 KB
04/04/2023 07:07:49 PM
rw-r--r--
📄
WILL_FAIL.rst
184 bytes
04/04/2023 07:07:49 PM
rw-r--r--
📄
WORKING_DIRECTORY.rst
328 bytes
04/04/2023 07:07:49 PM
rw-r--r--
Editing: ENVIRONMENT_MODIFICATION.rst
Close
ENVIRONMENT_MODIFICATION ------------------------ .. versionadded:: 3.22 Specify environment variables that should be modified for running a test. Note that the operations performed by this property are performed after the :prop_test:`ENVIRONMENT` property is already applied. Set to a :ref:`semicolon-separated list <CMake Language Lists>` of environment variables and values of the form ``MYVAR=OP:VALUE``, where ``MYVAR`` is the case-sensitive name of an environment variable to be modified. Entries are considered in the order specified in the property's value. The ``OP`` may be one of: - ``reset``: Reset to the unmodified value, ignoring all modifications to ``MYVAR`` prior to this entry. Note that this will reset the variable to the value set by :prop_test:`ENVIRONMENT`, if it was set, and otherwise to its state from the rest of the CTest execution. - ``set``: Replaces the current value of ``MYVAR`` with ``VALUE``. - ``unset``: Unsets the current value of ``MYVAR``. - ``string_append``: Appends singular ``VALUE`` to the current value of ``MYVAR``. - ``string_prepend``: Prepends singular ``VALUE`` to the current value of ``MYVAR``. - ``path_list_append``: Appends singular ``VALUE`` to the current value of ``MYVAR`` using the host platform's path list separator (``;`` on Windows and ``:`` elsewhere). - ``path_list_prepend``: Prepends singular ``VALUE`` to the current value of ``MYVAR`` using the host platform's path list separator (``;`` on Windows and ``:`` elsewhere). - ``cmake_list_append``: Appends singular ``VALUE`` to the current value of ``MYVAR`` using ``;`` as the separator. - ``cmake_list_prepend``: Prepends singular ``VALUE`` to the current value of ``MYVAR`` using ``;`` as the separator. Unrecognized ``OP`` values will result in the test failing before it is executed. This is so that future operations may be added without changing valid behavior of existing tests. The environment changes from this property do not affect other tests.