2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00

Updated the Boost Build collect_debug_info.py test to avoid an assertion failure reported by some Boost library testers (e.g. Sandia-darwin-4.4) and see more information on what caused them.

[SVN r79132]
This commit is contained in:
Jurko Gospodnetić
2012-06-27 09:56:49 +00:00
parent b8299123b0
commit a309f74b76

View File

@@ -239,14 +239,12 @@ def _getJamVersionInfo(t):
re.MULTILINE):
name = m.group(1)
value = m.group(2)
if value:
assert len(value) > 2
assert value[0] == "'"
assert value[-2] == "'"
assert value[-1] == " "
if not value:
value = []
elif len(value) > 2 and value[0] == "'" and value[-2:] == "' ":
value = value[1:-2].split("' '")
else:
value = []
value = "RAW:/%s/ (%d)" % (value, len(value))
result.append("%s = %s" % (name, value))
result.append("")