File: tst_shell_win32.cpp

package info (click to toggle)
neovim-qt 0.2.19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,808 kB
  • sloc: cpp: 45,441; python: 234; makefile: 24; sh: 19; xml: 5
file content (31 lines) | stat: -rw-r--r-- 692 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "tst_shell.h"

#include <QTest>

namespace NeovimQt {

QClipboard::Mode GetClipboardMode(char /*reg*/) noexcept
{
	return QClipboard::Clipboard;
}

QString GetPlatformTestFont() noexcept
{
	return QStringLiteral("Consolas");
}

QStringList BinaryAndArgumentsNoForkWithCommand(const QString& command) noexcept
{
	return { NVIM_QT_BINARY, "--",  "-c", command };
}

void AddPlatformSpecificExitCodeCases() noexcept
{
	// Unlike UNIX-like operating systems, Windows represents the exit code as
	// a signed 32-bit integer. 256 doesn't overflows hence :256cq returns
	// 256.
	QTest::newRow("Exit with Code 256: 256cq")
		<< 256 << 256 << QByteArray("256cq");
}

} // namespace NeovimQt