| 90 | #endif |
| 91 | |
| 92 | void PrintInstanceInfo::executeTask() |
| 93 | { |
| 94 | auto instance = m_parent->instance(); |
| 95 | QStringList log; |
| 96 | |
| 97 | #ifdef Q_OS_LINUX |
| 98 | ::probeProcCpuinfo(log); |
| 99 | ::runLspci(log); |
| 100 | ::runGlxinfo(log); |
| 101 | #endif |
| 102 | |
| 103 | logLines(log, MessageLevel::Launcher); |
| 104 | logLines(instance->verboseDescription(m_session, m_serverToJoin), MessageLevel::Launcher); |
| 105 | emitSucceeded(); |
| 106 | } |
nothing calls this directly
no test coverage detected