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

Minor stylistic configuration.py Boost Build test changes.

[SVN r78864]
This commit is contained in:
Jurko Gospodnetić
2012-06-09 22:58:35 +00:00
parent 184ac58165
commit b233fd743c

View File

@@ -43,14 +43,14 @@ def test_user_configuration():
# Prepare a dummy toolset so we do not get errors in case the default one is
# not found.
t.write(toolsetName + ".jam", """
t.write(toolsetName + ".jam", """\
import feature ;
feature.extend toolset : %s ;
rule init ( ) { }
""" % toolsetName )
# Python version of the same dummy toolset.
t.write(toolsetName + ".py", """
t.write(toolsetName + ".py", """\
from b2.build import feature
feature.extend('toolset', ['%s'])
def init(): pass