| 114 | #endif |
| 115 | |
| 116 | void PrintInstanceInfo::executeTask() |
| 117 | { |
| 118 | auto instance = m_parent->instance(); |
| 119 | QStringList log; |
| 120 | |
| 121 | #if defined(Q_OS_LINUX) |
| 122 | ::probeProcCpuinfo(log); |
| 123 | ::runLspci(log); |
| 124 | ::runGlxinfo(log); |
| 125 | #elif defined(Q_OS_FREEBSD) |
| 126 | ::runSysctlHwModel(log); |
| 127 | ::runPciconf(log); |
| 128 | ::runGlxinfo(log); |
| 129 | #endif |
| 130 | |
| 131 | logLines(log, MessageLevel::Launcher); |
| 132 | logLines(instance->verboseDescription(m_session, m_targetToJoin), MessageLevel::Launcher); |
| 133 | emitSucceeded(); |
| 134 | } |
nothing calls this directly
no test coverage detected