diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-07-08 13:17:21 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-07-08 13:19:32 (GMT) |
commit | 4c757fa3c8a8d5bc32b8d169b2ebfb7781f3ea0c (patch) | |
tree | 5503f58e8b3e00fbdf273a2f4d0207d451d457d4 /Help/prop_test | |
parent | 373608831099bf96f568d9db5cb12a3f9092edf4 (diff) | |
download | CMake-4c757fa3c8a8d5bc32b8d169b2ebfb7781f3ea0c.zip CMake-4c757fa3c8a8d5bc32b8d169b2ebfb7781f3ea0c.tar.gz CMake-4c757fa3c8a8d5bc32b8d169b2ebfb7781f3ea0c.tar.bz2 |
Help/prop_test/ENVIRONMENT: clarify the scope of the changes
The "restored" bit is an implementation detail as it could also be
implemented by passing a crafted environment to `execve` or
`CreateProcess` arguments. Instead, state that the environment changes
only affects the test with the property set.
Diffstat (limited to 'Help/prop_test')
-rw-r--r-- | Help/prop_test/ENVIRONMENT.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/prop_test/ENVIRONMENT.rst b/Help/prop_test/ENVIRONMENT.rst index 102c792..43bcdbe 100644 --- a/Help/prop_test/ENVIRONMENT.rst +++ b/Help/prop_test/ENVIRONMENT.rst @@ -5,5 +5,5 @@ Specify environment variables that should be defined for running a test. If set to a list of environment variables and values of the form ``MYVAR=value`` those environment variables will be defined while running -the test. The environment is restored to its previous state after the -test is done. +the test. The environment changes from this property do not affect other +tests. |