From d5628f1ee6dfc59eae92cf4d0c20baac5e233599 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Sat, 8 Oct 2016 23:30:27 +0200 Subject: [PATCH] Enable chosen groups in the install_group test --- tests/install_group/wscript | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/install_group/wscript b/tests/install_group/wscript index 7ca72e3b..0b26a899 100644 --- a/tests/install_group/wscript +++ b/tests/install_group/wscript @@ -3,7 +3,7 @@ from waflib import Utils, Build, Logs import os -GRP = 'adm' +GRP = os.environ.get('WAF_TEST_GROUP', 'adm') def test_chown(bld): def create_and_chown(tsk): @@ -62,7 +62,6 @@ def configure(conf): if not conf.env.CAN_CHOWN: return - Logs.info = Utils.nada conf.test(build_fun=test_chown_install, msg='Testing install_group="adm"', okmsg='ok',