| 127 | #endif |
| 128 | |
| 129 | void PrintInstanceInfo::executeTask() |
| 130 | { |
| 131 | auto instance = m_parent->instance(); |
| 132 | QStringList log; |
| 133 | |
| 134 | #if defined(Q_OS_LINUX) |
| 135 | ::probeProcCpuinfo(log); |
| 136 | ::runLspci(log); |
| 137 | ::runGlxinfo(log); |
| 138 | #elif defined(Q_OS_FREEBSD) |
| 139 | ::runSysctlHwModel(log); |
| 140 | ::runPciconf(log); |
| 141 | ::runGlxinfo(log); |
| 142 | #endif |
| 143 | |
| 144 | logLines(log, MessageLevel::Launcher); |
| 145 | logLines(instance->verboseDescription(m_session, m_serverToJoin), MessageLevel::Launcher); |
| 146 | emitSucceeded(); |
| 147 | } |
nothing calls this directly
no test coverage detected