X-Git-Url: https://ruderich.org/simon/gitweb/?p=coloredstderr%2Fcoloredstderr.git;a=blobdiff_plain;f=tests%2Ftest_environment.sh;h=d40247269072fa1157059cb4c3870659bc7c5674;hp=47a02a25f71960e369aed28949102f9e1be3ae94;hb=b950cdb79209e092d20d629bd1b0e9211647bd1e;hpb=9ff0ffbd28416538a4ccc2445875339c7eb20dfe diff --git a/tests/test_environment.sh b/tests/test_environment.sh index 47a02a2..d402472 100755 --- a/tests/test_environment.sh +++ b/tests/test_environment.sh @@ -59,3 +59,20 @@ COLORED_STDERR_FDS= export COLORED_STDERR_FDS test_program example example_environment_empty test_program_subshell example example_environment_empty + +unset COLORED_STDERR_FDS + + +# Test COLORED_STDERR_IGNORED_BINARIES. + +if test -x /proc/self/exe; then + COLORED_STDERR_IGNORED_BINARIES="$abs_builddir/example" + export COLORED_STDERR_IGNORED_BINARIES + test_program example example_environment_empty + test_program_subshell example example_environment_empty + + COLORED_STDERR_IGNORED_BINARIES=",some,other,path,," + export COLORED_STDERR_IGNORED_BINARIES + test_program example example_environment + test_program_subshell example example_environment +fi