diff options
author | Fabian Groffen <grobian@gentoo.org> | 2012-12-30 16:46:09 +0100 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-12-30 18:25:07 -0500 |
commit | fbfb0cc589e7ef8e3d61d4ccf8038356c2b5f2bc (patch) | |
tree | f610abe5e21eac1cf35ff50da7f5bb95064ce7c4 /tests | |
parent | try_real_hard_to_find_CHOST: use probed GNU sed (diff) | |
download | gcc-config-fbfb0cc589e7ef8e3d61d4ccf8038356c2b5f2bc.tar.gz gcc-config-fbfb0cc589e7ef8e3d61d4ccf8038356c2b5f2bc.tar.bz2 gcc-config-fbfb0cc589e7ef8e3d61d4ccf8038356c2b5f2bc.zip |
run_test: set RC_NOCOLOR to suppress colours
NOCOLOR appears not to work with functions.sh from baselayout-prefix,
which is an old copy, prior to 2.0. Not sure if this patch is really
worth it, since the output of functions.sh also differs enough to make
tests fail.
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/run_tests | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/run_tests b/tests/run_tests index 1d35d9f..caca986 100755 --- a/tests/run_tests +++ b/tests/run_tests @@ -18,7 +18,7 @@ if ! . /etc/init.d/functions.sh 2>/dev/null ; then die() { echo "$*"; exit 1; } fi -vars=( CHOST GCC_CONFIG ROOT TROOT NOCOLOR ) +vars=( CHOST GCC_CONFIG ROOT TROOT NOCOLOR RC_NOCOLOR ) unset ${vars[@]} TROOT=${PWD} @@ -29,6 +29,7 @@ fi PATH="${TROOT}/..:${PATH}" NOCOLOR="true" +RC_NOCOLOR="yes" # Older baselayout/openrc versions. # This CHOST value doesn't matter. It could be anything. # As long as all the configs we test are based on this being # the CHOST value. |