[CLI] On Unix, copy to clipboard using wl-clipboard if xclip is not available.

This commit is contained in:
Tezkerek 2020-04-09 15:02:13 +03:00 committed by Janek Bevendorff
parent ef668f552e
commit 6128e5d582
2 changed files with 43 additions and 24 deletions

View file

@ -473,6 +473,10 @@ void TestCli::testClip()
m_stdoutFile->reset();
QString errorOutput(m_stderrFile->readAll());
if (QProcessEnvironment::systemEnvironment().contains("WAYLAND_DISPLAY")) {
QSKIP("Clip test skipped due to QClipboard and Wayland issues");
}
if (errorOutput.contains("Unable to start program")
|| errorOutput.contains("No program defined for clipboard manipulation")) {
QSKIP("Clip test skipped due to missing clipboard tool");