()
| 21 | ############################################################################### |
| 22 | |
| 23 | def collectDebugInfo(): |
| 24 | t = _init() |
| 25 | |
| 26 | global tag |
| 27 | |
| 28 | tag = "Python version" |
| 29 | try: |
| 30 | _info(sys.version) |
| 31 | except: |
| 32 | _info_exc() |
| 33 | |
| 34 | tag = "Python platform" |
| 35 | try: |
| 36 | _info(sys.platform) |
| 37 | except: |
| 38 | _info_exc() |
| 39 | |
| 40 | tag = "Boost Jam/Build version" |
| 41 | try: |
| 42 | _infoX(_getJamVersionInfo(t)) |
| 43 | except: |
| 44 | _info_exc() |
| 45 | |
| 46 | #_collectDebugInfo_environ() |
| 47 | |
| 48 | # Report prepared annotations. |
| 49 | t.fail_test(1, dump_difference=False, dump_stdio=False, dump_stack=False) |
| 50 | |
| 51 | |
| 52 | ############################################################################### |
no test coverage detected