MCPcopy Create free account
hub / github.com/boostorg/build / print_annotation

Function print_annotation

test/BoostBuild.py:37–46  ·  view source on GitHub ↗

Writes some named bits of information about the current test run.

(name, value, xml)

Source from the content-addressed store, hash-verified

35
36
37def print_annotation(name, value, xml):
38 """Writes some named bits of information about the current test run."""
39 if xml:
40 print escape(name) + " {{{"
41 print escape(value)
42 print "}}}"
43 else:
44 print name + " {{{"
45 print value
46 print "}}}"
47
48
49def flush_annotations(xml=0):

Callers 1

flush_annotationsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected