aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/ssh/remoteprocess/remoteprocesstest.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-05-18 10:49:35 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2012-05-22 10:51:53 +0200
commit53a1087d1321758ab1dc0a6ad737c135249bd5e6 (patch)
treeab0f9596da64a1907690b324bd05416c585eaf8c /tests/manual/ssh/remoteprocess/remoteprocesstest.h
parentb9d9bb7ba85e3b3ea0e06f0876272c0e3bebd144 (diff)
Move SSH support into a dedicated library.
It does not belong into libUtils, which is a collection of small unrelated utility classes. Task-number: QTCREATORBUG-7218 Change-Id: Id92b9f28678afec93e6f07166adfde6550f38072 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'tests/manual/ssh/remoteprocess/remoteprocesstest.h')
-rw-r--r--tests/manual/ssh/remoteprocess/remoteprocesstest.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/manual/ssh/remoteprocess/remoteprocesstest.h b/tests/manual/ssh/remoteprocess/remoteprocesstest.h
index e203eaea637..0eb59ab0f60 100644
--- a/tests/manual/ssh/remoteprocess/remoteprocesstest.h
+++ b/tests/manual/ssh/remoteprocess/remoteprocesstest.h
@@ -33,7 +33,7 @@
#ifndef REMOTEPROCESSTEST_H
#define REMOTEPROCESSTEST_H
-#include <utils/ssh/sshremoteprocessrunner.h>
+#include <ssh/sshremoteprocessrunner.h>
#include <QObject>
@@ -44,7 +44,7 @@ class RemoteProcessTest : public QObject
{
Q_OBJECT
public:
- RemoteProcessTest(const Utils::SshConnectionParameters &params);
+ RemoteProcessTest(const QSsh::SshConnectionParameters &params);
~RemoteProcessTest();
void run();
@@ -70,13 +70,13 @@ private:
void handleSuccessfulCrashTest();
void handleSuccessfulIoTest();
- const Utils::SshConnectionParameters m_sshParams;
+ const QSsh::SshConnectionParameters m_sshParams;
QTimer * const m_timeoutTimer;
QTextStream *m_textStream;
- Utils::SshRemoteProcessRunner * const m_remoteRunner;
- Utils::SshRemoteProcess::Ptr m_catProcess;
- Utils::SshRemoteProcess::Ptr m_echoProcess;
- Utils::SshConnection::Ptr m_sshConnection;
+ QSsh::SshRemoteProcessRunner * const m_remoteRunner;
+ QSsh::SshRemoteProcess::Ptr m_catProcess;
+ QSsh::SshRemoteProcess::Ptr m_echoProcess;
+ QSsh::SshConnection::Ptr m_sshConnection;
QByteArray m_remoteStdout;
QByteArray m_remoteStderr;
QByteArray m_remoteData;