2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-09 11:02:28 +00:00

Clear environment before testing

[SVN r13696]
This commit is contained in:
Dave Abrahams
2002-05-06 21:09:03 +00:00
parent 3605d8dc91
commit ca39cf30da

View File

@@ -1,4 +1,18 @@
#!/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