X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=tests%2Ftest_environment.sh;h=eb1c8e4c0518d6d9606e6b48334b8666f5dcb4a7;hb=5c0b209f23b1d8995fc1308e570deb9cfb72926b;hp=47a02a25f71960e369aed28949102f9e1be3ae94;hpb=0d7f3068981f2b08e583cec21d9069e97c73addd;p=coloredstderr%2Fcoloredstderr.git diff --git a/tests/test_environment.sh b/tests/test_environment.sh index 47a02a2..eb1c8e4 100755 --- a/tests/test_environment.sh +++ b/tests/test_environment.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (C) 2013 Simon Ruderich +# Copyright (C) 2013-2014 Simon Ruderich # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -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