Enable chosen groups in the install_group test

This commit is contained in:
Thomas Nagy 2016-10-08 23:30:27 +02:00
parent 4ed44b2e99
commit d5628f1ee6
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 1 additions and 2 deletions

View File

@ -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',