X-Git-Url: https://ruderich.org/simon/gitweb/?p=coloredstderr%2Fcoloredstderr.git;a=blobdiff_plain;f=tests%2Ftest_environment.sh;h=47a02a25f71960e369aed28949102f9e1be3ae94;hp=a530718735dd20358569192282ecf4691a3f22c1;hb=0d7f3068981f2b08e583cec21d9069e97c73addd;hpb=045ca46e7929c27c3c408324aaae02499b1eae81 diff --git a/tests/test_environment.sh b/tests/test_environment.sh index a530718..47a02a2 100755 --- a/tests/test_environment.sh +++ b/tests/test_environment.sh @@ -18,7 +18,7 @@ test "x$srcdir" = x && srcdir=. . "$srcdir/lib.sh" -# Test unexpected values for COLORED_STDERR_FDS environment variable. +# Test unexpected values for COLORED_STDERR_PRIVATE_FDS environment variable. # Empty fields. fds= @@ -44,3 +44,18 @@ test_program_subshell example example_environment fds=-20,-30,2,-1, test_program example example_environment test_program_subshell example example_environment + +# Test COLORED_STDERR_FDS overwrites COLORED_STDERR_PRIVATE_FDS. Additional +# tests in example_exec. + +fds= +COLORED_STDERR_FDS=2, +export COLORED_STDERR_FDS +test_program example example_environment +test_program_subshell example example_environment + +fds=2, +COLORED_STDERR_FDS= +export COLORED_STDERR_FDS +test_program example example_environment_empty +test_program_subshell example example_environment_empty