mirror of
https://github.com/boostorg/build.git
synced 2026-02-13 00:12:11 +00:00
* new/targets.jam (basic-target.generate-source): Fix regex.
* test/project_test4.py: New test.
[SVN r14374]
22 lines
375 B
Python
22 lines
375 B
Python
#!/usr/bin/python
|
|
import os
|
|
|
|
# clear environment for testing
|
|
#
|
|
for s in (
|
|
'BOOST_ROOT','BOOST_BUILD_PATH','JAM_TOOLSET','BCCROOT',
|
|
'MSVCDir','MSVC','MSVCNT','MINGW','watcom'
|
|
):
|
|
|
|
try:
|
|
del os.environ[s]
|
|
except:
|
|
pass
|
|
|
|
import startup_v1
|
|
import startup_v2
|
|
import project_test1
|
|
import project_test2
|
|
import project_test3
|
|
import project_test4
|