Commit 61e0ee17 authored by Sebastien Robin's avatar Sebastien Robin

this file was missing in commit 45591

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@45593 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 53f60e29
import os
import sys
def runTestSuite(args):
env = os.environ.copy()
d = args[0]
env['OPENSSL_BINARY'] = d['openssl_binary']
env['TEST_CA_PATH'] = d['test_ca_path']
env['PATH'] = ':'.join([d['prepend_path']] + os.environ['PATH'].split(':'))
env['INSTANCE_HOME'] = d['instance_home']
env['REAL_INSTANCE_HOME'] = d['instance_home']
os.execve(d['call_list'][0], d['call_list'] + sys.argv[1:], env)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment