X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=tests%2Ftest_environment.sh;fp=tests%2Ftest_environment.sh;h=a530718735dd20358569192282ecf4691a3f22c1;hb=59375c2b7949791d8cad8e5cebde2649bac83ec8;hp=0000000000000000000000000000000000000000;hpb=f30dbbd26d18e3014762ccc37b8e5ab65b596b35;p=coloredstderr%2Fcoloredstderr.git diff --git a/tests/test_environment.sh b/tests/test_environment.sh new file mode 100755 index 0000000..a530718 --- /dev/null +++ b/tests/test_environment.sh @@ -0,0 +1,46 @@ +#!/bin/sh + +# Copyright (C) 2013 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 +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +test "x$srcdir" = x && srcdir=. +. "$srcdir/lib.sh" + +# Test unexpected values for COLORED_STDERR_FDS environment variable. + +# Empty fields. +fds= +test_program example example_environment_empty +test_program_subshell example example_environment_empty +fds=,,, +test_program example example_environment_empty +test_program_subshell example example_environment_empty +fds=,,,2 +test_program example example_environment_empty +test_program_subshell example example_environment_empty +fds=2,,, +test_program example example_environment +test_program_subshell example example_environment + +# Invalid fds. +fds=-20,-30 +test_program example example_environment_empty +test_program_subshell example example_environment_empty +fds=-20,-30,2, +test_program example example_environment +test_program_subshell example example_environment +fds=-20,-30,2,-1, +test_program example example_environment +test_program_subshell example example_environment