forked from mirror/waf
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
602 B
Python
30 lines
602 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
if bld.env['PYTHON']:
|
|
bld(
|
|
features = 'subst',
|
|
source = 'test.py.in',
|
|
target = 'test.1.py',
|
|
NAME = 'first test3',
|
|
EXIT_STATUS = '0',
|
|
)
|
|
bld(
|
|
features = 'subst',
|
|
source = 'test.py.in',
|
|
target = 'test.2.py',
|
|
NAME = 'second test3',
|
|
EXIT_STATUS = '0',
|
|
)
|
|
paths = {
|
|
'PYTHONPATH': bld.path.abspath()
|
|
}
|
|
bld(
|
|
features = 'test_scripts',
|
|
test_scripts_source = 'test.1.py test.2.py',
|
|
test_scripts_template = '${PYTHON} ${SCRIPT}',
|
|
test_scripts_paths = paths
|
|
)
|
|
|
|
|