mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
[CLI] On Unix, copy to clipboard using wl-clipboard if xclip is not available.
This commit is contained in:
parent
ef668f552e
commit
6128e5d582
2 changed files with 43 additions and 24 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue