| 175 | } |
| 176 | |
| 177 | void tst_executor::executeBlockingGpgVersion() { |
| 178 | QString output; |
| 179 | QString err; |
| 180 | int result = |
| 181 | Executor::executeBlocking("gpg", {"--version"}, QString(), &output, &err); |
| 182 | if (result != 0) { |
| 183 | QSKIP("gpg not available"); |
| 184 | } |
| 185 | QVERIFY2(output.contains("gpg"), "output should contain gpg"); |
| 186 | } |
| 187 | |
| 188 | void tst_executor::gpgSupportsEd25519() { |
| 189 | QString output; |
nothing calls this directly
no outgoing calls
no test coverage detected