()
| 767 | |
| 768 | |
| 769 | def get_compiler_version(): |
| 770 | if __make_cmd == 'msbuild.exe': |
| 771 | _, _, stderr, _ = __run_command('cl.exe', False) |
| 772 | return stderr.split('\n', maxsplit=1)[0] |
| 773 | |
| 774 | _, stdout, _, _ = __run_command('g++ --version', False) |
| 775 | return stdout.split('\n', maxsplit=1)[0] |
| 776 | |
| 777 | |
| 778 | def get_client_version(): |
nothing calls this directly
no test coverage detected